Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « scanner « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ecfb30733a166a5158d9760cee61e4a6e8ab150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
2006-02-20  Ankit Jain  <jankit@novell.com>

	* ILTable.cs (directives): Remove .constraint

2006-02-20  Ankit Jain  <jankit@novell.com>

	* ILTokenizingException.cs (ILTokenizingException): Derive from
	ILAsmException.

2006-01-31  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Enable keyword 'type' only for NET_2_0 profile.

2006-01-28  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Fix typos in entry for 'charmaperror'.

2006-01-19  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Add 'type' keyword.

2006-01-16  Ankit Jain  <jankit@novell.com>

	* NumberHelper.cs (NumberHelper.Build): Try parsing numeric value as UInt64 or 
	double if Int64.Parse fails.

2006-01-16  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Add 'bestfit', 'charmaperror', 'on' & 'off'.

2006-01-16  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Add 'uint', this is a native UIntPtr type.

2006-01-03  Ankit Jain  <jankit@novell.com>

	* ILTokenizer.cs (ILTokenizer.idchars): Add ` to the list.

2005-12-14  Ankit Jain  <jankit@novell.com>

	* NumberHelper.cs (NumberHelper.Build): Set dec_found to false, if a '..' is
	found after a number so that it is parsed as INT64 and not FLOAT64.
	Fix #76977.

2005-12-14  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Add uint8, uint16, uint32 and uint64 keywords.

2005-11-28  Ankit Jain  <jankit@novell.com>

	* StringHelper.cs (idChars): Add ` to the list.

2005-08-29  Ankit Jain  <jankit@novell.com>

	* ILTables.cs (keywords): Comment out lcid keyword. Its not recognised as a
	  keyword by ilasm (ms.net) 1.1

2005-08-18  Ankit Jain  <jankit@novell.com>

	* ILTables.cs: Comment out publickey keyword.

2005-04-27  Raja R Harinath  <rharinath@novell.com>

	* ILTokenizer.cs (GetNextToken): Handle 'tail.' and 'unaligned.'
	instructions.

2004-04-26  Ankit Jain  <ankit@corewars.org>

	* ILTokenizer.cs (ILTokenizer.GetNextToken): Advance reader to look at
	char after a '.' .
	(ILTokenizer.BuildId): Never end an id on a DOT.
	Parts of the patch from Harinath & Jackson.

2004-12-02  Miguel de Icaza  <miguel@ximian.com>

	* ILTable.cs: Add new .stackreserve token.

2004-07-27  Martin Baulig  <martin@ximian.com>

	* ILTokenizer.cs (ILTokenizer.Location): New public property.

2004-07-16  Jackson Harper  <jackson@ximian.com>

	* ILTokenizer.cs: Handle slashes in multiline comments
	properly. Make the multiline comment eater loop a little more
	readable.
	
2004-07-06  Jackson Harper  <jackson@ximian.com>

	* NumberHelper.cs: Handle real numbers. Thanks to steve brown for
	pointing this out. Also don't bother scanning the string again,
	its allready been scanned.
	
2004-06-10  Jackson Harper  <jackson@ximian.com>

	* ILTables.cs: Remove opcodes, these are contained in codegen/IntrTable.cs
	* ILTokenizer.cs: Dont refer to ILTables::Opcodes
	
2004-06-10  Jackson Harper  <jackson@ximian.com>

	* ILTokenizingExpcetion.cs: New exception thrown by the tokenizer
	if any tokenizing errors occur.
	* ILTokenizer.cs:
	* NumberHelper.cs: Use the new exception.
	
2004-06-04  Jackson Harper  <jackson@ximian.com>

	* ILTokenizer.cs: Handle comments first, handle whitespace in hex
	blocks properly.
	
2004-04-21  Jackson Harper  <jackson@ximian.com>

	* ILTokenizer.cs: Handle whitespace in hexbytes.

2004-04-01  Jackson Harper  <jackson@ximian.com>

	* ILTokenizer.cs: Add flag and special parsing routine for byte
	arrays.
	
2003-12-10  Jackson Harper <jackson@ximian.com>

	* ILTokenizer.cs: Handle dotted ids as a single token. This allows
	keywords at the end of a dotted name.
	
2003-10-14 Jackson Harper <jackson@ximian.com>

	* ILTokenizer.cs: Fix /* */ comment blocks.
	
2003-09-16 Jackson Harper <jackson@latitudegeo.com>

	* ILTables.cs: compilercontrolled is lowercase. I am guessing this
	was an emacs introduced bug ;-).
	
2003-08-10 Jackson Harper <jackson@latitudegeo.com>

	* StringHelper.cs: If an escape is not valid just use the \
	character. Fix bug where escape char was not getting set.
		
2003-08-03 Jackson Harper <jackson@latitudegeo.com>

	* NumberHelper.cs: All numbers should allways be Int64
	
2003-07-30 Jackson Harper <jackson@latitudegeo.com>

	* ILReader.cs: Incremint colums while reading
	* Location.cs: Display column numbers
	
2003-07-29 Jackson Harper <jackson@latitudegeo.com>

	* ILReader.cs: Incriment line numbers
	* Location.cs: Do not reset line number when moving to a previous
	column. Add ToString method.
	
2003-07-15 Jackson Harper <jackson@latitudegeo.com>

	* ILTables.cs: Add tokens for generic constraints.
	
2003-06-14 Jackson Harper <jackson@latitudegeo.com>

	* ILTables.cs: Add imagebase keyword.
		
2003-05-31 Jackson Harper <jackson@latitudegeo.com>

	* ILTables.cs: Add refany keyword which is just an alias for typedref.
		
2003-05-22 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: When building instructions allow the '.' char so
	complex instructions like conv.ovf.u.un can be created.
	
2003-05-22 Jackson Harper <jackson@latitudegeo.com>

	* ILTables.cs: Comment out nan and inf keywords, these are not
	referenced in the grammar. need to check if these keywords work on
	MS ilasm.
	* NumberHelper.cs: Parse numbers as Unsigned then cast to long
	otherwise an overflow exception is thrown. (is this a classlib bug?)
		
2003-05-18 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: If token.token does not create a keyword return
	the first token as an id, not a keyword ie (add.exe should return
	"ID period ID" not "ADD period ID"
		
2003-04-28 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Get instructions from table and check if they
	are null instead of checking if they exist then getting them.

2003-04-03 Jackson Harper <jackson@latitudegeo.com>

	* ILToken.cs: Add open angle bracket, and close angle bracket tokens.
		
2003-03-31 Jackson Harper <jackson@latitudegeo.com>

	* NumberHelper.cs: handle situations like this 21452. properly
		
2003-03-31 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Handle Ellipsis
	* NUmberHelper.cs: Handle situations like this 0... properly
		
2003-03-31 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Take some special cases into account.
		
2003-03-31 Jackson Harper <jackson@latitudegeo.com>

	* ILTables.cs: Remove 'ptr' I can't find documentation for this
	keyword and ildasm does not esacpe it.
		
2003-03-31 Jackson Harper <jackson@latitudegeo.com>

	* NumberHelper.cs: handle sci, hex, and byte
	do not handle all corner case
	will optimize soon
	
2003-03-30 Jackson Harper <jackson@latitudegeo.com>

	* ILReader.cs: Instead of mainting a buffer let the reader handle
	that, and use a stack for putting chars back. This is probably
	much slower and not nearly as cool but the old method was a little
	buggy and I was having trouble tracking things down. This can be
	optimized someday.
	
2003-03-19 Jackson Harper <jackson@latitudegeo.com>

	* NumberHelper.cs: Handle strange number situations like 8:99:0

2003-03-16 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Append tail to values so opcodes like ldarg.s 
	are resolved properly

2003-03-16 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Fire an event when a new token is ready.

2003-03-14 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Use the IsInstr method for checking if a string is an instruction

2003-03-13 Jackson Harper <jackson@latitudegeo.com>

	* ILTokenizer.cs: Use InstrTable for looking up and getting Opcodes

2003-02-06 Jackson Harper <jackson@latitudegeo.com>

	* IlToken.cs: Add Dash Token (this is used for assembly names)
	* ILTokenizer.cs: Return Dash token
	
2003-02-02 Jackson Harper <jackson@latitudegeo.com>

	* ChangeLog: Add ChangeLog