* ILParser.jay: INT_I8s are not int instructions, currently the
[mono.git] / mcs / ilasm / parser / ChangeLog
1 2003-05-21 Jackson Harper <jackson@latitudegeo.com>
2
3         * ILParser.jay: INT_I8s are not int instructions, currently the
4         only INT_I8 instruction is ldc.i8 so this new code does more
5         checks then needed but is written in anticipation of some new long
6         instructions being found. Implement signature instructions, token
7         instructions, and signatures. Convert INT32s masquerading as
8         INT64s to Int64.
9                 
10 2003-05-19 Jackson Harper <jackson@latitudegeo.com>
11
12         * ILParser.jay: Same as below but with float64 ()
13                 
14 2003-05-19 Jackson Harper <jackson@latitudegeo.com>
15
16         * ILParser.jay: When the float32 (0xFFFFFF) syntax is used the hex
17         value represents the exact byte value of a float NOT an integer
18         value that is converted to a float.
19                 
20 2003-05-18 Jackson Harper <jackson@latitudegeo.com>
21
22         * ILParser.jay: Use new methods for converting types to
23         classrefs. Expand grammar for locals.
24
25                 
26 2003-05-18 Jackson Harper <jackson@latitudegeo.com>
27
28         * ILParser.jay: Convert cast integers to floats.
29                 
30 2003-05-11 Jackson Harper <jackson@latitudegeo.com>
31
32         * ILParser.jay: Add tokens for instructions that take param and
33         local args. Do not create empty lists for sig_args and
34         type_lists. Add param and local instructions.
35                 
36 2003-05-11 Jackson Harper <jackson@latitudegeo.com>
37
38         * ILParser.jay: Set size and packing information for types
39                 
40 2003-05-10 Jackson Harper <jackson@latitudegeo.com>
41
42         * ILParser.jay: Add field instructions
43                 
44 2003-05-10 Jackson Harper <jackson@latitudegeo.com>
45
46         * ILParser.jay: Add global method references
47                 
48 2003-05-10 Jackson Harper <jackson@latitudegeo.com>
49
50         * ILParser.jay: Add locals, method references, and method instructions
51                 
52 2003-05-07 Jackson Harper <jackson@latitudegeo.com>
53
54         * ILParser.jay: Add type instructions. NOTE - type_spec is not
55         fully implemented yet, so this has some explosive potential.
56                 
57 2003-05-07 Jackson Harper <jackson@latitudegeo.com>
58
59         * ILParser.jay: Remove dotted_name, it is not used at all
60         anymore. vtattr only take an int64 param, this fix gets rid of all
61         of the remaining reduce/reduce conflicts
62                 
63 2003-05-07 Jackson Harper <jackson@latitudegeo.com>
64
65         * ILParser.jay: Remove extraneous dotted_name, also make comp_name
66         contain dotted_name logic. Oh how I will miss the 301
67         reduce/reduce conflicts these small changes fixed :-)
68                 
69 2003-05-06 Jackson Harper <jackson@latitudegeo.com>
70
71         * ILParser.jay: Emit INSTR_I8 instructions as int
72         instructions. Implement label lists, emit switch instruction.
73                 
74 2003-05-05 Jackson Harper <jackson@latitudegeo.com>
75
76         * ILParser.jay: Add labels to methods, add branching instructions.
77                 
78 2003-05-04 Jackson Harper <jackson@latitudegeo.com>
79
80         * ILParser.jay: Use new MiscInstr.ldstr for ldstr, add INSTR_Rs
81                 
82 2003-05-04 Jackson Harper <jackson@latitudegeo.com>
83
84         * ILParser.jay: Set int64's masquerading as int32 to upper and
85         lower bounds if neccasary. NEED TO TEST this behavoir on windows.
86                 
87 2003-05-01 Jackson Harper <jackson@latitudegeo.com>
88
89         * ILParser.jay: Fix a bunch of conversions, implement hexbytes
90                 
91 2003-04-30 Jackson Harper <jackson@latitudegeo.com>
92
93         * ILParser.jay: Implement non marshalled methodheads, method
94         attributes, impl attributes, imit simple int and ldstr instructions.
95                 
96 2003-04-17 Jackson Harper <jackson@latitudegeo.com>
97
98         * ILParser.jay: Define data, fix repeat_opt allways being set.
99                 
100 2003-04-17 Jackson Harper <jackson@latitudegeo.com>
101
102         * ILParser.jay: Add external types to the extern type table.
103                 
104 2003-04-17 Jackson Harper <jackson@latitudegeo.com>
105
106         * ILParser.jay: Use new types and methods to build a tree.
107                 
108 2003-04-07 Jackson Harper <jackson@latitudegeo.com>
109
110         * ILParser.jay: Implement data items
111                 
112 2003-04-07 Jackson Harper <jackson@latitudegeo.com>
113
114         * ILParser.jay: Implement most field features
115                 
116 2003-04-05 Jackson Harper <jackson@latitudegeo.com>
117
118         * ILParser.jay: Set type parameter index
119                 
120 2003-04-05 Jackson Harper <jackson@latitudegeo.com>
121
122         * ILParser.jay: Emit parameterized types
123                 
124 2003-04-04 Jackson Harper <jackson@latitudegeo.com>
125
126         * ILParser.jay: Add parameterized method declarations.
127                 
128 2003-04-03 Jackson Harper <jackson@latitudegeo.com>
129
130         * ILParser.jay: Add parameterized types to classes.
131                 
132 2003-04-02 Jackson Harper <jackson@latitudegeo.com>
133
134         * ILParser.jay: Support most non-obsolete native types.
135                 
136 2003-04-02 Jackson Harper <jackson@latitudegeo.com>
137
138         * ILParser.jay: Proper names for native int and native uint
139                 
140 2003-04-01 Jackson Harper <jackson@latitudegeo.com>
141
142         * ILParser.jay: Add Call conventions, fix primitive spelling.
143         
144 2003-04-01 Jackson Harper <jackson@latitudegeo.com>
145
146         * ILParser.jay: Add TypedRef primative type.
147         
148 2003-04-01 Jackson Harper <jackson@latitudegeo.com>
149
150         * ILParser.jay: Support pinned, modreq, and modopt types.
151         
152 2003-04-01 Jackson Harper <jackson@latitudegeo.com>
153
154         * ILParser.jay: Use the CodeGen CompleteClass method when a class
155         is completed instead of setting the current class to null. This
156         does some extra cleanup
157         
158 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
159
160         * ILParser.jay: Add bound arrays
161         
162 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
163
164         * ILParser.jay: Concat slashed names properly
165         
166 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
167
168         * ILParser.jay: Implement most of type
169         
170 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
171
172         * ILParser.jay: Add code from old parser to declare and define classes.
173                 
174 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
175
176         * ILParser.jay: New grammar that I haven't made a mess of, this
177         takes all the special cases into account much better.
178                 
179 2003-03-19 Jackson Harper <jackson@latitudegeo.com>
180
181         * ILParser.jay: .hash algorithm can be followed by bytes
182
183 2003-03-19 Jackson Harper <jackson@latitudegeo.com>
184
185         * ILParser.jay: Allow assembly refs to have dots in name.
186
187 2003-03-17 Jackson Harper <jackson@latitudegeo.com>
188
189         * ILParser.jay: Add object to primative types
190
191 2003-03-17 Jackson Harper <jackson@latitudegeo.com>
192
193         * ILParser.jay: Set CallConv for opcodes that have a call conv, 
194         like call and newobj
195
196 2003-03-17 Jackson Harper <jackson@latitudegeo.com>
197
198         * ILParser.jay: Set CallConvs properly, use type_ref instead of type for
199         method overrides.
200
201 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
202
203         * ILParser.jay: .ctor and .cctor can also be method names.
204
205 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
206
207         * ILParser.jay: Use assembly_ref for extern assemblies so names with dashes can be used.
208
209 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
210
211         * ILParser.jay: Define local variables
212
213 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
214
215         * ILParser.jay: Add param_list definition, use param_list for method refs
216
217 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
218
219         * ILParser.jay: de-bacwardificate values passed to add method, 
220         I was setting the return to the parent before, but the parent 
221         value was being set to the return type value so it all worked 
222         out but was very confusing.
223
224 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
225
226         * ILParser.jay: Add external field references
227
228 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
229
230         * ILParser.jay: Add fields to the field table, add field references,
231         emit instructions that take a field param
232
233 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
234
235         * ILParser.jay: Emit ldstr instruction
236
237 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
238
239         * ILParser.jay: Create external method references
240
241 2003-03-14 Jackson Harper <jackson@latitudegeo.com>
242
243         * ILParser.jay: Emit instructions that take a method def as a single param
244
245 2003-03-14 Jackson Harper <jackson@latitudegeo.com>
246
247         * ILParser.jay: Emit instructions that take a single type as a param
248
249 2003-03-14 Jackson Harper <jackson@latitudegeo.com>
250
251         * ILParser.jay: Emit instructions that take a single int32 as a param
252
253 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
254
255         * ILParser.jay: Remove unused references
256
257 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
258
259         * ILParser.jay: Emit simple instructions
260
261 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
262
263         * ILParser.jay: Set MaxStack, clean up some typos
264
265 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
266
267         * ILParser.jay: Set entrypoint 
268
269 2003-03-11 Jackson Harper <jackson@latitudegeo.com>
270
271         * ILParser.jay: Create TypeRefs instead of types, define methods.
272
273 2003-03-09 Jackson Harper <jackson@latitudegeo.com>
274
275         * ILParser.jay: Set Call Conventions and Implementation Flags
276
277 2003-03-09 Jackson Harper <jackson@latitudegeo.com>
278
279         * ILParser.jay: Add implemented interfaces
280
281 2003-03-08 Jackson Harper <jackson@latitudegeo.com>
282
283         * ILParser.jay: Create method attributes
284
285 2003-03-08 Jackson Harper <jackson@latitudegeo.com>
286
287         * ILParser.jay: Reference external assemblies.
288
289 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
290
291         * ILParser.jay: Implemented class inheritence
292
293 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
294
295         * ILParser.jay: Pass null Location when adding class, concat dottedName pieces
296
297 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
298
299         * ILParser.jay: Reconfigure to work with new PEAPI emission system
300
301 2003-02-10 Jackson Harper <jackson@latitudegeo.com>
302
303         * ILParser.jay: Use arg_list for method signatures, set method parameters
304
305 2003-02-09 Jackson Harper <jackson@latitudegeo.com>
306
307         * ILParser.jay: full names can be short names too (for members)
308
309 2003-02-09 Jackson Harper <jackson@latitudegeo.com>
310
311         * ILParser.jay: Use full names for calling instructions
312
313 2003-02-08 Jackson Harper <jackson@latitudegeo.com>
314
315         * ILParser.jay: Create type names properly
316
317 2003-02-08 Jackson Harper <jackson@latitudegeo.com>
318
319         * ILParser.jay: Handle argument lists better
320
321 2003-02-08 Jackson Harper <jackson@latitudegeo.com>
322
323         * ILParser.jay: Handle .local and newobj
324
325 2003-02-06 Jackson Harper <jackson@latitudegeo.com>
326
327         * ILParser.jay: Allow assembly names to have lots of dashes.
328
329 2003-02-06 Jackson Harper <jackson@latitudegeo.com>
330
331         * ILParser.jay: Add dash token, allow assembly refs to have dashes in their names.
332
333 2003-02-02 Jackson Harper <jackson@latitudegeo.com>
334
335         * ILParser.jay: Add call instruction, other little fixes and additions