1 2009-04-15 Ankit Jain <jankit@novell.com>
3 * StringHelper.cs (startIdChars): New. Set of chars that can start an
5 (Start): Use startIdChars instead of idchars.
7 2009-04-08 Ankit Jain <jankit@novell.com>
10 * StringHelper.cs: Handle octal values in strings.
11 Patch from Stephen Gennard (stephen@gennard.net)
13 2006-11-09 Ankit Jain <jankit@novell.com>
15 * ILTables.cs (keywords): Add 'retargetable'.
17 2006-05-26 Ankit Jain <jankit@novell.com>
19 * ILTables.cs (keywords): Move 'property' out of NET_2_0 .
21 2006-05-11 Ankit Jain <jankit@novell.com>
23 * ILTokenizingExpcetion.cs (Location): Remove. Already inherited from
26 2006-05-10 Ankit Jain <jankit@novell.com>
28 * ILTables.cs (keywords): Add 'property' for NET_2_0.
30 2006-02-20 Ankit Jain <jankit@novell.com>
32 * ILTable.cs (directives): Remove .constraint
34 2006-02-20 Ankit Jain <jankit@novell.com>
36 * ILTokenizingException.cs (ILTokenizingException): Derive from
39 2006-01-31 Ankit Jain <jankit@novell.com>
41 * ILTables.cs (keywords): Enable keyword 'type' only for NET_2_0 profile.
43 2006-01-28 Ankit Jain <jankit@novell.com>
45 * ILTables.cs (keywords): Fix typos in entry for 'charmaperror'.
47 2006-01-19 Ankit Jain <jankit@novell.com>
49 * ILTables.cs (keywords): Add 'type' keyword.
51 2006-01-16 Ankit Jain <jankit@novell.com>
53 * NumberHelper.cs (NumberHelper.Build): Try parsing numeric value as UInt64 or
54 double if Int64.Parse fails.
56 2006-01-16 Ankit Jain <jankit@novell.com>
58 * ILTables.cs (keywords): Add 'bestfit', 'charmaperror', 'on' & 'off'.
60 2006-01-16 Ankit Jain <jankit@novell.com>
62 * ILTables.cs (keywords): Add 'uint', this is a native UIntPtr type.
64 2006-01-03 Ankit Jain <jankit@novell.com>
66 * ILTokenizer.cs (ILTokenizer.idchars): Add ` to the list.
68 2005-12-14 Ankit Jain <jankit@novell.com>
70 * NumberHelper.cs (NumberHelper.Build): Set dec_found to false, if a '..' is
71 found after a number so that it is parsed as INT64 and not FLOAT64.
74 2005-12-14 Ankit Jain <jankit@novell.com>
76 * ILTables.cs (keywords): Add uint8, uint16, uint32 and uint64 keywords.
78 2005-11-28 Ankit Jain <jankit@novell.com>
80 * StringHelper.cs (idChars): Add ` to the list.
82 2005-08-29 Ankit Jain <jankit@novell.com>
84 * ILTables.cs (keywords): Comment out lcid keyword. Its not recognised as a
85 keyword by ilasm (ms.net) 1.1
87 2005-08-18 Ankit Jain <jankit@novell.com>
89 * ILTables.cs: Comment out publickey keyword.
91 2005-04-27 Raja R Harinath <rharinath@novell.com>
93 * ILTokenizer.cs (GetNextToken): Handle 'tail.' and 'unaligned.'
96 2004-04-26 Ankit Jain <ankit@corewars.org>
98 * ILTokenizer.cs (ILTokenizer.GetNextToken): Advance reader to look at
100 (ILTokenizer.BuildId): Never end an id on a DOT.
101 Parts of the patch from Harinath & Jackson.
103 2004-12-02 Miguel de Icaza <miguel@ximian.com>
105 * ILTable.cs: Add new .stackreserve token.
107 2004-07-27 Martin Baulig <martin@ximian.com>
109 * ILTokenizer.cs (ILTokenizer.Location): New public property.
111 2004-07-16 Jackson Harper <jackson@ximian.com>
113 * ILTokenizer.cs: Handle slashes in multiline comments
114 properly. Make the multiline comment eater loop a little more
117 2004-07-06 Jackson Harper <jackson@ximian.com>
119 * NumberHelper.cs: Handle real numbers. Thanks to steve brown for
120 pointing this out. Also don't bother scanning the string again,
121 its allready been scanned.
123 2004-06-10 Jackson Harper <jackson@ximian.com>
125 * ILTables.cs: Remove opcodes, these are contained in codegen/IntrTable.cs
126 * ILTokenizer.cs: Dont refer to ILTables::Opcodes
128 2004-06-10 Jackson Harper <jackson@ximian.com>
130 * ILTokenizingExpcetion.cs: New exception thrown by the tokenizer
131 if any tokenizing errors occur.
133 * NumberHelper.cs: Use the new exception.
135 2004-06-04 Jackson Harper <jackson@ximian.com>
137 * ILTokenizer.cs: Handle comments first, handle whitespace in hex
140 2004-04-21 Jackson Harper <jackson@ximian.com>
142 * ILTokenizer.cs: Handle whitespace in hexbytes.
144 2004-04-01 Jackson Harper <jackson@ximian.com>
146 * ILTokenizer.cs: Add flag and special parsing routine for byte
149 2003-12-10 Jackson Harper <jackson@ximian.com>
151 * ILTokenizer.cs: Handle dotted ids as a single token. This allows
152 keywords at the end of a dotted name.
154 2003-10-14 Jackson Harper <jackson@ximian.com>
156 * ILTokenizer.cs: Fix /* */ comment blocks.
158 2003-09-16 Jackson Harper <jackson@latitudegeo.com>
160 * ILTables.cs: compilercontrolled is lowercase. I am guessing this
161 was an emacs introduced bug ;-).
163 2003-08-10 Jackson Harper <jackson@latitudegeo.com>
165 * StringHelper.cs: If an escape is not valid just use the \
166 character. Fix bug where escape char was not getting set.
168 2003-08-03 Jackson Harper <jackson@latitudegeo.com>
170 * NumberHelper.cs: All numbers should allways be Int64
172 2003-07-30 Jackson Harper <jackson@latitudegeo.com>
174 * ILReader.cs: Incremint colums while reading
175 * Location.cs: Display column numbers
177 2003-07-29 Jackson Harper <jackson@latitudegeo.com>
179 * ILReader.cs: Incriment line numbers
180 * Location.cs: Do not reset line number when moving to a previous
181 column. Add ToString method.
183 2003-07-15 Jackson Harper <jackson@latitudegeo.com>
185 * ILTables.cs: Add tokens for generic constraints.
187 2003-06-14 Jackson Harper <jackson@latitudegeo.com>
189 * ILTables.cs: Add imagebase keyword.
191 2003-05-31 Jackson Harper <jackson@latitudegeo.com>
193 * ILTables.cs: Add refany keyword which is just an alias for typedref.
195 2003-05-22 Jackson Harper <jackson@latitudegeo.com>
197 * ILTokenizer.cs: When building instructions allow the '.' char so
198 complex instructions like conv.ovf.u.un can be created.
200 2003-05-22 Jackson Harper <jackson@latitudegeo.com>
202 * ILTables.cs: Comment out nan and inf keywords, these are not
203 referenced in the grammar. need to check if these keywords work on
205 * NumberHelper.cs: Parse numbers as Unsigned then cast to long
206 otherwise an overflow exception is thrown. (is this a classlib bug?)
208 2003-05-18 Jackson Harper <jackson@latitudegeo.com>
210 * ILTokenizer.cs: If token.token does not create a keyword return
211 the first token as an id, not a keyword ie (add.exe should return
212 "ID period ID" not "ADD period ID"
214 2003-04-28 Jackson Harper <jackson@latitudegeo.com>
216 * ILTokenizer.cs: Get instructions from table and check if they
217 are null instead of checking if they exist then getting them.
219 2003-04-03 Jackson Harper <jackson@latitudegeo.com>
221 * ILToken.cs: Add open angle bracket, and close angle bracket tokens.
223 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
225 * NumberHelper.cs: handle situations like this 21452. properly
227 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
229 * ILTokenizer.cs: Handle Ellipsis
230 * NUmberHelper.cs: Handle situations like this 0... properly
232 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
234 * ILTokenizer.cs: Take some special cases into account.
236 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
238 * ILTables.cs: Remove 'ptr' I can't find documentation for this
239 keyword and ildasm does not esacpe it.
241 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
243 * NumberHelper.cs: handle sci, hex, and byte
244 do not handle all corner case
247 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
249 * ILReader.cs: Instead of mainting a buffer let the reader handle
250 that, and use a stack for putting chars back. This is probably
251 much slower and not nearly as cool but the old method was a little
252 buggy and I was having trouble tracking things down. This can be
255 2003-03-19 Jackson Harper <jackson@latitudegeo.com>
257 * NumberHelper.cs: Handle strange number situations like 8:99:0
259 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
261 * ILTokenizer.cs: Append tail to values so opcodes like ldarg.s
262 are resolved properly
264 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
266 * ILTokenizer.cs: Fire an event when a new token is ready.
268 2003-03-14 Jackson Harper <jackson@latitudegeo.com>
270 * ILTokenizer.cs: Use the IsInstr method for checking if a string is an instruction
272 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
274 * ILTokenizer.cs: Use InstrTable for looking up and getting Opcodes
276 2003-02-06 Jackson Harper <jackson@latitudegeo.com>
278 * IlToken.cs: Add Dash Token (this is used for assembly names)
279 * ILTokenizer.cs: Return Dash token
281 2003-02-02 Jackson Harper <jackson@latitudegeo.com>
283 * ChangeLog: Add ChangeLog