Opps. Forgot to commit last night's ChangeLog entry.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 Wed Jan 11 00:44:01 1995 Jeff Law (law@snake.cs.utah.edu)
2
3 * command.c (show_user_1): Use print_command_line to show a user
4 defined command (including control structures).
5
6 * top.c (init_main): Change documentation for user defined
7 commands to indicate they may accept up to ten arguments.
8
9 Tue Jan 10 16:22:41 1995 Jim Kingdon <kingdon@lioth.cygnus.com>
10
11 * mips-tdep.c (mips_skip_prologue): Accept or as well as addu for
12 `move $s8, $sp' instruction.
13
14 Sun Jan 8 12:45:34 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
15
16 * target.c, target.h (target_signal_from_command): New function.
17 * infrun.c (handle_command, signals_info), infcmd.c
18 (signal_command): Use it.
19 * infrun.c, infcmd.c: Update docstrings for these commands.
20
21 * target.h (enum target_signal), target.c (signals), target.c
22 (target_signal_from_host, target_signal_to_host): Add
23 TARGET_SIGNAL_REALTIME_* and TARGET_SIGNAL_PRIO for lynx.
24 * config/tm-lynx.h: Define signal numbers for realtime events.
25
26 Sat Jan 7 07:23:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
27
28 * dbxread.c (process_one_symbol): Handle N_FUN symbols
29 for Sun acc 3.0 under SunOS4.
30
31 Changes to improve handling of runtime common symbols
32 under SunOS4.
33 * minsyms.c (get_symbol_leading_char): New routine to determine
34 the leading symbol character for an objfile.
35 (prim_record_minimal_symbol_and_info, install_minimal_symbols):
36 Use it.
37 * objfiles.h (rt_common_objfile): New global, points to objfile
38 containing the runtime common minimal symbols.
39 * objfiles.c (free_objfile): Mark rt_common_objfile as
40 unallocated before freeing it.
41 * solib.c (allocate_rt_common_objfile): New routine to allocate
42 an objfile for the runtime common minimal symbols.
43 (solib_add_common_symbols): Allocate an objfile for the runtime
44 common symbols if necessary and put common symbols into it.
45 Clean up code and comments.
46 (solib_add, special_symbol_handling): Cleanup comments regarding
47 runtime common symbols.
48 * stabsread.c (scan_file_globals_1): New routine, contains
49 old scan_file_globals code. Checks if there are any unresolved
50 global symbols before starting the expensive minimal symbol table
51 search.
52 (scan_file_globals): Now calls scan_file_globals_1 for the passed
53 objfile and eventually for the runtime common objfile. Complains
54 about any unresolved global symbols and removes them from the
55 global symbol chain to avoid dangling pointers into the symbol
56 table if the symbol table is reread.
57
58 Thu Jan 5 17:38:29 1995 Stu Grossman (grossman@cygnus.com)
59
60 * Makefile.in (install_only uninstall): Indent for clarity.
61
62 * core.c (dis_asm_read_memory): Add call to
63 dis_asm_read_memory_hook to provide alternate way for disassembler
64 to read memory.
65
66 * defs.h: Protect from multiple inclusion. Add decl for
67 dis_asm_read_memory_hook.
68
69 * top.c: Make window startup be the default.
70 * Add dis_asm_read_memory_hook.
71
72 start-sanitize-gdbtk
73 * gdbtk.c (finish_saving_output): Don't do anything if not saving
74 output.
75 * (breakpoint_notify): Don't send null filename to tcl.
76 * (gdb_eval): New tcl command to eval an expression.
77 * (gdb_disassemble): New tcl command to do disassembly. This
78 allows tcl code to choose between exec file and target memeory,
79 and can also do mixed source and assembly.
80 * (gdbtk_init): Move reading of gdbtk.tcl to the end to make sure
81 that more of the environment is set up. Also, create link between
82 gdb and tcl vars disassemble{-_}from{-_}exec.
83
84 * gdbtk.tcl: New expression window support.
85 * Make assembly window be 80 columns wide.
86 * Use new disassembly method. Add menu items to select
87 disassembly from exec file or target.
88 * Change View menubar item to Options.
89
90 * Get rid of Stack, Breakpoints, Signals, and Variables Windows,
91 since they don't exist yet.
92
93 * Pop up a copyright window on startup.
94 end-sanitize-gdbtk
95
96 Thu Jan 5 01:16:40 1995 Jeff Law (law@snake.cs.utah.edu)
97
98 * stabsread.c (define_symbol): Handle `a' symbol type used for
99 reference parameter passed in a register.
100
101 start-sanitize-gdbtk
102 Wed Jan 4 19:49:10 1995 Stan Shebs <shebs@andros.cygnus.com>
103
104 * gdbtk.tcl (build_framework): Add standard commands menu, more
105 windows to standard windows menu.
106 (not_implemented_yet): Clarify message.
107 end-sanitize-gdbtk
108
109 Wed Jan 4 12:27:29 1995 Kung Hsu <kung@mexican.cygnus.com>
110
111 * defs.h: move include tm.h up, so that the type LONGEST can
112 also based on the target requirement to determine. In this case
113 target mips64.
114
115 * remote-os9k.c (rombug_open): catch exception e in rombug.
116 * remote-os9k.c (rombug_wait): print message before register display
117 from rombug.
118
119 Wed Jan 4 09:18:27 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
120
121 * top.c (locate_arg): Call strchr not index.
122
123 Tue Jan 3 16:52:03 1995 Per Bothner <bothner@kalessin.cygnus.com>
124
125 * ch-exp.y (literal): Recognize NULL.
126 (tuple): Parse simple unlabelled tuples.
127 * eval.c (evaluate_subexp case OP_ARRAY): Use expect_type to
128 evaluate brace-initializer-expressions depending on context.
129 (evaluate_subexp case UNOP_CAST): Pass the target type as
130 expected type when evaluating the expression.
131
132 * ch-typeprint.c (chill_type_print_base): Get names of PTR and
133 BOOL from TYPE_NAME.
134 * ch-valprint.c (chill_print_type_scalar): New function, to handle
135 TYPE_CODE_RANGE better than print_type_scalar does.
136 (chill_val_print_array_elements): Use above new function.
137
138 Mon Jan 2 15:02:51 1995 Stan Shebs <shebs@andros.cygnus.com>
139
140 * remote-udi.c (udi_load): Tell symbol_file_add that the
141 program being loaded is the main program.
142
143 For older changes see ChangeLog-94
144 \f
145 Local Variables:
146 mode: indented-text
147 left-margin: 8
148 fill-column: 74
149 version-control: never
150 End:
This page took 0.038092 seconds and 5 git commands to generate.