* config/tc-xtensa.c (xtensa_leb128): New function.
[platform/upstream/binutils.git] / gas / ChangeLog
1 2008-01-18  Bob Wilson  <bob.wilson@acm.org>
2         
3         * config/tc-xtensa.c (xtensa_leb128): New function.
4         (md_pseudo_table): Use it for sleb128 and uleb128.
5         (is_leb128_expr): New internal flag.
6         (xtensa_symbol_new_hook): Check new flag.
7         
8 2008-01-16  Eric B. Weddington  <eric.weddington@atmel.com>
9
10         * config/tc-avr.c (mcu_types): Change opcode set for avr3,
11         at90usb82, at90usb162.
12         * doc/c-avr.texi: Change architecture grouping for at90usb82, 
13         at90usb162.
14         These changes support the new avr35 architecture group in gcc.
15
16 2008-01-15  H.J. Lu  <hongjiu.lu@intel.com>
17
18         * config/tc-i386.c (md_assemble): Also zap movzx and movsx
19         suffix for AT&T syntax.
20
21 2008-01-14  H.J. Lu  <hongjiu.lu@intel.com>
22
23         * config/tc-i386.c (match_reg_size): New.
24         (match_mem_size): Likewise.
25         (operand_size_match): Likewise.
26         (operand_type_match): Also clear all size fields.
27         (match_template): Skip Intel syntax when in AT&T syntax.
28         Call operand_size_match to check operand size.
29         (i386_att_operand): Set the mem field to 1 for memory
30         operand.
31         (i386_intel_operand): Likewise.
32
33 2008-01-12  H.J. Lu  <hongjiu.lu@intel.com>
34
35         PR gas/5534
36         * config/tc-i386.c (_i386_insn): Update comment.
37         (operand_type_match): Also clear unspecified.
38         (operand_type_register_match): Likewise.
39         (parse_operands): Initialize unspecified.
40         (i386_intel_operand): Likewise.
41         (match_template): Check memory and accumulator operand size.
42         (i386_att_operand): Clear unspecified on register operand.
43         (intel_e11): Likewise.
44         (intel_e09): Set operand size and clean unspecified for
45         "XXX PTR".
46
47 2008-01-11  Andreas Schwab  <schwab@suse.de>
48
49         * read.c (s_space): Declare `repeat' as offsetT.
50
51 2008-01-10  H.J. Lu  <hongjiu.lu@intel.com>
52
53         * config/tc-i386.c (match_template): Check processor support
54         first.
55
56 2008-01-10  H.J. Lu  <hongjiu.lu@intel.com>
57
58         * config/tc-i386.c (match_template): Continue if processor
59         doesn't match.
60
61 2008-01-09  Alexandre Oliva  <aoliva@redhat.com>
62
63         * config/tc-ia64.c (ia64_convert_frag): Zero-initialize room for
64         unwind personality function address.
65
66 2008-01-09  Bob Wilson  <bob.wilson@acm.org>
67         
68         * dwarf2dbg.c (out_sleb128): Delete.
69         (size_fixed_inc_line_addr, emit_fixed_inc_line_addr): New.
70         (out_fixed_inc_line_addr): Delete.
71         (relax_inc_line_addr, dwarf2dbg_estimate_size_before_relax): Call new
72         size_fixed_inc_line_addr if DWARF2_USE_FIXED_ADVANCE_PC is set.
73         (dwarf2dbg_convert_frag): Likewise for emit_fixed_inc_line_addr.
74         (process_entries): Remove calls to out_fixed_inc_line_addr.  When
75         DWARF2_USE_FIXED_ADVANCE_PC is set, call relax_inc_line_addr.
76         * read.h (emit_expr_fix): New prototype.
77         * read.c (emit_expr): Move code to emit_expr_fix and use it here.
78         (emit_expr_fix): New.
79         
80 2008-01-09  H.J. Lu  <hongjiu.lu@intel.com>
81
82         * config/tc-i386.c (match_template): Check register size
83         only when size of operands can be encoded the canonical way.
84
85 2008-01-08  H.J. Lu  <hongjiu.lu@intel.com>
86
87         * config/tc-i386.c (i386_operand): Renamed to ...
88         (i386_att_operand): This.
89         (parse_operands): Updated.
90
91 2008-01-05  H.J. Lu  <hongjiu.lu@intel.com>
92
93         * doc/c-i386.texi: Update .att_mnemonic and .intel_mnemonic.
94
95         * config/tc-i386.c (set_intel_mnemonic): Set intel_mnemonic
96         only.
97         (md_assemble): Remove Intel mode workaround.
98         (match_template): Check support for old gcc, AT&T mnemonic
99         and Intel Syntax.
100         (md_parse_option): Don't set intel_mnemonic to 0 for
101         OPTION_MOLD_GCC.
102
103 2008-01-04  H.J. Lu  <hongjiu.lu@intel.com>
104
105         * config/tc-i386.h: Update copyright to 2008.
106
107 2008-01-04  Nick Clifton  <nickc@redhat.com>
108
109         * config/tc-ppc.c (parse_cpu): Preserve the settings of the
110         PPC_OPCODE_ALTIVEC and PPC_OPCODE_SPE flags.
111
112 2008-01-03  H.J. Lu  <hongjiu.lu@intel.com>
113
114         * config/tc-i386.c (md_assemble): Use !intel_mnemonic instead
115         of SYSV386_COMPAT.
116
117 2008-01-03  H.J. Lu  <hongjiu.lu@intel.com>
118
119         * gas/config/tc-i386.c (cpu_arch_flags_not): Removed.
120         (cpu_flags_not): Likewise.
121         (cpu_flags_match): Updated to check 64bit and arch.
122         (set_code_flag): Remove cpu_arch_flags_not.
123         (set_16bit_gcc_code_flag): Likewise.
124         (set_cpu_arch): Likewise.
125         (md_begin): Likewise.
126         (parse_insn): Call cpu_flags_match to check 64bit and arch.
127         (match_template): Likewise.
128
129 2008-01-03  Jakub Jelinek  <jakub@redhat.com>
130
131         * config/tc-i386.c (process_drex): Initialize modrm_reg and
132         modrm_regmem to 0 instead of None.
133
134 2008-01-03  H.J. Lu  <hongjiu.lu@intel.com>
135
136         * config/tc-i386.c (match_template): Use the xmmword field
137         instead of no_xsuf.
138
139 2008-01-02  H.J. Lu  <hongjiu.lu@intel.com>
140
141         * config/tc-i386.c (process_suffix): Fix a typo.
142
143 2008-01-02  H.J. Lu  <hongjiu.lu@intel.com>
144
145         PR gas/5534
146         * config/tc-i386.c (match_template): Handle XMMWORD_MNEM_SUFFIX.
147         Check memory size in Intel mode.
148         (process_suffix): Handle XMMWORD_MNEM_SUFFIX.
149         (intel_e09): Likewise.
150
151         * config/tc-i386.h (XMMWORD_MNEM_SUFFIX): New.
152
153 2008-01-02  Catherine Moore  <clm@codesourcery.com>
154
155         * config/tc-mips.c (mips_ip): Check operands on jalr instruction.
156
157 For older changes see ChangeLog-2007
158 \f
159 Local Variables:
160 mode: change-log
161 left-margin: 8
162 fill-column: 74
163 version-control: never
164 End: