New test.
[mono.git] / mcs / ilasm / scanner / ChangeLog
1 2006-05-26  Ankit Jain  <jankit@novell.com>
2
3         *  ILTables.cs (keywords): Move 'property' out of NET_2_0 .
4
5 2006-05-11  Ankit Jain  <jankit@novell.com>
6
7         * ILTokenizingExpcetion.cs (Location): Remove. Already inherited from
8         ILAsmException.
9
10 2006-05-10  Ankit Jain  <jankit@novell.com>
11
12         * ILTables.cs (keywords): Add 'property' for NET_2_0.
13
14 2006-02-20  Ankit Jain  <jankit@novell.com>
15
16         * ILTable.cs (directives): Remove .constraint
17
18 2006-02-20  Ankit Jain  <jankit@novell.com>
19
20         * ILTokenizingException.cs (ILTokenizingException): Derive from
21         ILAsmException.
22
23 2006-01-31  Ankit Jain  <jankit@novell.com>
24
25         * ILTables.cs (keywords): Enable keyword 'type' only for NET_2_0 profile.
26
27 2006-01-28  Ankit Jain  <jankit@novell.com>
28
29         * ILTables.cs (keywords): Fix typos in entry for 'charmaperror'.
30
31 2006-01-19  Ankit Jain  <jankit@novell.com>
32
33         * ILTables.cs (keywords): Add 'type' keyword.
34
35 2006-01-16  Ankit Jain  <jankit@novell.com>
36
37         * NumberHelper.cs (NumberHelper.Build): Try parsing numeric value as UInt64 or 
38         double if Int64.Parse fails.
39
40 2006-01-16  Ankit Jain  <jankit@novell.com>
41
42         * ILTables.cs (keywords): Add 'bestfit', 'charmaperror', 'on' & 'off'.
43
44 2006-01-16  Ankit Jain  <jankit@novell.com>
45
46         * ILTables.cs (keywords): Add 'uint', this is a native UIntPtr type.
47
48 2006-01-03  Ankit Jain  <jankit@novell.com>
49
50         * ILTokenizer.cs (ILTokenizer.idchars): Add ` to the list.
51
52 2005-12-14  Ankit Jain  <jankit@novell.com>
53
54         * NumberHelper.cs (NumberHelper.Build): Set dec_found to false, if a '..' is
55         found after a number so that it is parsed as INT64 and not FLOAT64.
56         Fix #76977.
57
58 2005-12-14  Ankit Jain  <jankit@novell.com>
59
60         * ILTables.cs (keywords): Add uint8, uint16, uint32 and uint64 keywords.
61
62 2005-11-28  Ankit Jain  <jankit@novell.com>
63
64         * StringHelper.cs (idChars): Add ` to the list.
65
66 2005-08-29  Ankit Jain  <jankit@novell.com>
67
68         * ILTables.cs (keywords): Comment out lcid keyword. Its not recognised as a
69           keyword by ilasm (ms.net) 1.1
70
71 2005-08-18  Ankit Jain  <jankit@novell.com>
72
73         * ILTables.cs: Comment out publickey keyword.
74
75 2005-04-27  Raja R Harinath  <rharinath@novell.com>
76
77         * ILTokenizer.cs (GetNextToken): Handle 'tail.' and 'unaligned.'
78         instructions.
79
80 2004-04-26  Ankit Jain  <ankit@corewars.org>
81
82         * ILTokenizer.cs (ILTokenizer.GetNextToken): Advance reader to look at
83         char after a '.' .
84         (ILTokenizer.BuildId): Never end an id on a DOT.
85         Parts of the patch from Harinath & Jackson.
86
87 2004-12-02  Miguel de Icaza  <miguel@ximian.com>
88
89         * ILTable.cs: Add new .stackreserve token.
90
91 2004-07-27  Martin Baulig  <martin@ximian.com>
92
93         * ILTokenizer.cs (ILTokenizer.Location): New public property.
94
95 2004-07-16  Jackson Harper  <jackson@ximian.com>
96
97         * ILTokenizer.cs: Handle slashes in multiline comments
98         properly. Make the multiline comment eater loop a little more
99         readable.
100         
101 2004-07-06  Jackson Harper  <jackson@ximian.com>
102
103         * NumberHelper.cs: Handle real numbers. Thanks to steve brown for
104         pointing this out. Also don't bother scanning the string again,
105         its allready been scanned.
106         
107 2004-06-10  Jackson Harper  <jackson@ximian.com>
108
109         * ILTables.cs: Remove opcodes, these are contained in codegen/IntrTable.cs
110         * ILTokenizer.cs: Dont refer to ILTables::Opcodes
111         
112 2004-06-10  Jackson Harper  <jackson@ximian.com>
113
114         * ILTokenizingExpcetion.cs: New exception thrown by the tokenizer
115         if any tokenizing errors occur.
116         * ILTokenizer.cs:
117         * NumberHelper.cs: Use the new exception.
118         
119 2004-06-04  Jackson Harper  <jackson@ximian.com>
120
121         * ILTokenizer.cs: Handle comments first, handle whitespace in hex
122         blocks properly.
123         
124 2004-04-21  Jackson Harper  <jackson@ximian.com>
125
126         * ILTokenizer.cs: Handle whitespace in hexbytes.
127
128 2004-04-01  Jackson Harper  <jackson@ximian.com>
129
130         * ILTokenizer.cs: Add flag and special parsing routine for byte
131         arrays.
132         
133 2003-12-10  Jackson Harper <jackson@ximian.com>
134
135         * ILTokenizer.cs: Handle dotted ids as a single token. This allows
136         keywords at the end of a dotted name.
137         
138 2003-10-14 Jackson Harper <jackson@ximian.com>
139
140         * ILTokenizer.cs: Fix /* */ comment blocks.
141         
142 2003-09-16 Jackson Harper <jackson@latitudegeo.com>
143
144         * ILTables.cs: compilercontrolled is lowercase. I am guessing this
145         was an emacs introduced bug ;-).
146         
147 2003-08-10 Jackson Harper <jackson@latitudegeo.com>
148
149         * StringHelper.cs: If an escape is not valid just use the \
150         character. Fix bug where escape char was not getting set.
151                 
152 2003-08-03 Jackson Harper <jackson@latitudegeo.com>
153
154         * NumberHelper.cs: All numbers should allways be Int64
155         
156 2003-07-30 Jackson Harper <jackson@latitudegeo.com>
157
158         * ILReader.cs: Incremint colums while reading
159         * Location.cs: Display column numbers
160         
161 2003-07-29 Jackson Harper <jackson@latitudegeo.com>
162
163         * ILReader.cs: Incriment line numbers
164         * Location.cs: Do not reset line number when moving to a previous
165         column. Add ToString method.
166         
167 2003-07-15 Jackson Harper <jackson@latitudegeo.com>
168
169         * ILTables.cs: Add tokens for generic constraints.
170         
171 2003-06-14 Jackson Harper <jackson@latitudegeo.com>
172
173         * ILTables.cs: Add imagebase keyword.
174                 
175 2003-05-31 Jackson Harper <jackson@latitudegeo.com>
176
177         * ILTables.cs: Add refany keyword which is just an alias for typedref.
178                 
179 2003-05-22 Jackson Harper <jackson@latitudegeo.com>
180
181         * ILTokenizer.cs: When building instructions allow the '.' char so
182         complex instructions like conv.ovf.u.un can be created.
183         
184 2003-05-22 Jackson Harper <jackson@latitudegeo.com>
185
186         * ILTables.cs: Comment out nan and inf keywords, these are not
187         referenced in the grammar. need to check if these keywords work on
188         MS ilasm.
189         * NumberHelper.cs: Parse numbers as Unsigned then cast to long
190         otherwise an overflow exception is thrown. (is this a classlib bug?)
191                 
192 2003-05-18 Jackson Harper <jackson@latitudegeo.com>
193
194         * ILTokenizer.cs: If token.token does not create a keyword return
195         the first token as an id, not a keyword ie (add.exe should return
196         "ID period ID" not "ADD period ID"
197                 
198 2003-04-28 Jackson Harper <jackson@latitudegeo.com>
199
200         * ILTokenizer.cs: Get instructions from table and check if they
201         are null instead of checking if they exist then getting them.
202
203 2003-04-03 Jackson Harper <jackson@latitudegeo.com>
204
205         * ILToken.cs: Add open angle bracket, and close angle bracket tokens.
206                 
207 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
208
209         * NumberHelper.cs: handle situations like this 21452. properly
210                 
211 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
212
213         * ILTokenizer.cs: Handle Ellipsis
214         * NUmberHelper.cs: Handle situations like this 0... properly
215                 
216 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
217
218         * ILTokenizer.cs: Take some special cases into account.
219                 
220 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
221
222         * ILTables.cs: Remove 'ptr' I can't find documentation for this
223         keyword and ildasm does not esacpe it.
224                 
225 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
226
227         * NumberHelper.cs: handle sci, hex, and byte
228         do not handle all corner case
229         will optimize soon
230         
231 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
232
233         * ILReader.cs: Instead of mainting a buffer let the reader handle
234         that, and use a stack for putting chars back. This is probably
235         much slower and not nearly as cool but the old method was a little
236         buggy and I was having trouble tracking things down. This can be
237         optimized someday.
238         
239 2003-03-19 Jackson Harper <jackson@latitudegeo.com>
240
241         * NumberHelper.cs: Handle strange number situations like 8:99:0
242
243 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
244
245         * ILTokenizer.cs: Append tail to values so opcodes like ldarg.s 
246         are resolved properly
247
248 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
249
250         * ILTokenizer.cs: Fire an event when a new token is ready.
251
252 2003-03-14 Jackson Harper <jackson@latitudegeo.com>
253
254         * ILTokenizer.cs: Use the IsInstr method for checking if a string is an instruction
255
256 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
257
258         * ILTokenizer.cs: Use InstrTable for looking up and getting Opcodes
259
260 2003-02-06 Jackson Harper <jackson@latitudegeo.com>
261
262         * IlToken.cs: Add Dash Token (this is used for assembly names)
263         * ILTokenizer.cs: Return Dash token
264         
265 2003-02-02 Jackson Harper <jackson@latitudegeo.com>
266
267         * ChangeLog: Add ChangeLog