Skip to content

Commit feaee4b

Browse files
author
Andrew Cagney
committed
2002-11-21 Andrew Cagney <[email protected]>
* Makefile.in: Update copyright. IGEN contributed to the FSF. * filter.c, filter.h, filter_host.c, filter_host.h: Ditto. * gen-engine.c, gen-engine.h, gen-icache.c, gen-icache.h: Ditto. * gen-idecode.c, gen-idecode.h, gen-itable.c: Ditto. * gen-itable.h, gen-model.c, gen-model.h, gen-semantics.c: Ditto. * gen-semantics.h, gen-support.c, gen-support.h, gen.c: Ditto. * gen.h, igen.c, igen.h, ld-cache.c, ld-cache.h: Ditto. * ld-decode.c, ld-decode.h, ld-insn.c, ld-insn.h, lf.c: Ditto. * lf.h, misc.c, misc.h, table.c, table.h: Ditto.
1 parent d85fe7f commit feaee4b

36 files changed

Lines changed: 790 additions & 661 deletions

sim/igen/ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2002-11-21 Andrew Cagney <[email protected]>
2+
3+
* Makefile.in: Update copyright. IGEN contributed to the FSF.
4+
* filter.c, filter.h, filter_host.c, filter_host.h: Ditto.
5+
* gen-engine.c, gen-engine.h, gen-icache.c, gen-icache.h: Ditto.
6+
* gen-idecode.c, gen-idecode.h, gen-itable.c: Ditto.
7+
* gen-itable.h, gen-model.c, gen-model.h, gen-semantics.c: Ditto.
8+
* gen-semantics.h, gen-support.c, gen-support.h, gen.c: Ditto.
9+
* gen.h, igen.c, igen.h, ld-cache.c, ld-cache.h: Ditto.
10+
* ld-decode.c, ld-decode.h, ld-insn.c, ld-insn.h, lf.c: Ditto.
11+
* lf.h, misc.c, misc.h, table.c, table.h: Ditto.
12+
113
2002-11-06 Richard Sandiford <[email protected]>
214

315
* gen-engine.c (print_engine_issue_prefix_hook): Don't add the

sim/igen/Makefile.in

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1+
# The IGEN simulator generator for GDB, the GNU Debugger.
12
#
2-
# This file is part of the program psim.
3+
# Copyright 2002 Free Software Foundation, Inc.
34
#
4-
# Copyright (C) 1994-1997, Andrew Cagney <[email protected]>
5+
# Contributed by Andrew Cagney.
56
#
6-
# This program is free software; you can redistribute it and/or modify
7-
# it under the terms of the GNU General Public License as published by
8-
# the Free Software Foundation; either version 2 of the License, or
9-
# (at your option) any later version.
10-
#
11-
# This program is distributed in the hope that it will be useful,
12-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
# GNU General Public License for more details.
15-
#
16-
# You should have received a copy of the GNU General Public License
17-
# along with this program; if not, write to the Free Software
18-
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
7+
# This file is part of GDB.
198
#
9+
# This program is free software; you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation; either version 2 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# This program is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with this program; if not, write to the Free Software
21+
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2022

2123
default: all
2224

sim/igen/filter.c

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1996, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124

2225
#include <stdio.h>

sim/igen/filter.h

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1996, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124

2225
/* NB, an empty filter is NULL */

sim/igen/filter_host.c

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1996, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124
#include "config.h"
2225
#include "filter_host.h"

sim/igen/filter_host.h

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1997, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124
#ifndef _FILTER_HOST_H
2225
#define _FILTER_HOST_H

sim/igen/gen-engine.c

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1998, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124
#include "misc.h"
2225
#include "lf.h"

sim/igen/gen-engine.h

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1997, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124
extern void gen_engine_h
2225
(lf *file,

sim/igen/gen-icache.c

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
1-
/* This file is part of the program psim.
2-
3-
Copyright (C) 1994-1998, Andrew Cagney <[email protected]>
4-
5-
This program is free software; you can redistribute it and/or modify
6-
it under the terms of the GNU General Public License as published by
7-
the Free Software Foundation; either version 2 of the License, or
8-
(at your option) any later version.
9-
10-
This program is distributed in the hope that it will be useful,
11-
but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
GNU General Public License for more details.
14-
15-
You should have received a copy of the GNU General Public License
16-
along with this program; if not, write to the Free Software
17-
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18-
19-
*/
1+
/* The IGEN simulator generator for GDB, the GNU Debugger.
2+
3+
Copyright 2002 Free Software Foundation, Inc.
4+
5+
Contributed by Andrew Cagney.
6+
7+
This file is part of GDB.
8+
9+
This program is free software; you can redistribute it and/or modify
10+
it under the terms of the GNU General Public License as published by
11+
the Free Software Foundation; either version 2 of the License, or
12+
(at your option) any later version.
13+
14+
This program is distributed in the hope that it will be useful,
15+
but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
GNU General Public License for more details.
18+
19+
You should have received a copy of the GNU General Public License
20+
along with this program; if not, write to the Free Software
21+
Foundation, Inc., 59 Temple Place - Suite 330,
22+
Boston, MA 02111-1307, USA. */
2023

2124

2225
#include "misc.h"

0 commit comments

Comments
 (0)