* ILTables.cs: compilercontrolled is lowercase. I am guessing this
[mono.git] / mcs / ilasm / scanner / ChangeLog
1 2003-09-16 Jackson Harper <jackson@latitudegeo.com>
2
3         * ILTables.cs: compilercontrolled is lowercase. I am guessing this
4         was an emacs introduced bug ;-).
5         
6 2003-08-10 Jackson Harper <jackson@latitudegeo.com>
7
8         * StringHelper.cs: If an escape is not valid just use the \
9         character. Fix bug where escape char was not getting set.
10                 
11 2003-08-03 Jackson Harper <jackson@latitudegeo.com>
12
13         * NumberHelper.cs: All numbers should allways be Int64
14         
15 2003-07-30 Jackson Harper <jackson@latitudegeo.com>
16
17         * ILReader.cs: Incremint colums while reading
18         * Location.cs: Display column numbers
19         
20 2003-07-29 Jackson Harper <jackson@latitudegeo.com>
21
22         * ILReader.cs: Incriment line numbers
23         * Location.cs: Do not reset line number when moving to a previous
24         column. Add ToString method.
25         
26 2003-07-15 Jackson Harper <jackson@latitudegeo.com>
27
28         * ILTables.cs: Add tokens for generic constraints.
29         
30 2003-06-14 Jackson Harper <jackson@latitudegeo.com>
31
32         * ILTables.cs: Add imagebase keyword.
33                 
34 2003-05-31 Jackson Harper <jackson@latitudegeo.com>
35
36         * ILTables.cs: Add refany keyword which is just an alias for typedref.
37                 
38 2003-05-22 Jackson Harper <jackson@latitudegeo.com>
39
40         * ILTokenizer.cs: When building instructions allow the '.' char so
41         complex instructions like conv.ovf.u.un can be created.
42         
43 2003-05-22 Jackson Harper <jackson@latitudegeo.com>
44
45         * ILTables.cs: Comment out nan and inf keywords, these are not
46         referenced in the grammar. need to check if these keywords work on
47         MS ilasm.
48         * NumberHelper.cs: Parse numbers as Unsigned then cast to long
49         otherwise an overflow exception is thrown. (is this a classlib bug?)
50                 
51 2003-05-18 Jackson Harper <jackson@latitudegeo.com>
52
53         * ILTokenizer.cs: If token.token does not create a keyword return
54         the first token as an id, not a keyword ie (add.exe should return
55         "ID period ID" not "ADD period ID"
56                 
57 2003-04-28 Jackson Harper <jackson@latitudegeo.com>
58
59         * ILTokenizer.cs: Get instructions from table and check if they
60         are null instead of checking if they exist then getting them.
61
62 2003-04-03 Jackson Harper <jackson@latitudegeo.com>
63
64         * ILToken.cs: Add open angle bracket, and close angle bracket tokens.
65                 
66 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
67
68         * NumberHelper.cs: handle situations like this 21452. properly
69                 
70 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
71
72         * ILTokenizer.cs: Handle Ellipsis
73         * NUmberHelper.cs: Handle situations like this 0... properly
74                 
75 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
76
77         * ILTokenizer.cs: Take some special cases into account.
78                 
79 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
80
81         * ILTables.cs: Remove 'ptr' I can't find documentation for this
82         keyword and ildasm does not esacpe it.
83                 
84 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
85
86         * NumberHelper.cs: handle sci, hex, and byte
87         do not handle all corner case
88         will optimize soon
89         
90 2003-03-30 Jackson Harper <jackson@latitudegeo.com>
91
92         * ILReader.cs: Instead of mainting a buffer let the reader handle
93         that, and use a stack for putting chars back. This is probably
94         much slower and not nearly as cool but the old method was a little
95         buggy and I was having trouble tracking things down. This can be
96         optimized someday.
97         
98 2003-03-19 Jackson Harper <jackson@latitudegeo.com>
99
100         * NumberHelper.cs: Handle strange number situations like 8:99:0
101
102 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
103
104         * ILTokenizer.cs: Append tail to values so opcodes like ldarg.s 
105         are resolved properly
106
107 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
108
109         * ILTokenizer.cs: Fire an event when a new token is ready.
110
111 2003-03-14 Jackson Harper <jackson@latitudegeo.com>
112
113         * ILTokenizer.cs: Use the IsInstr method for checking if a string is an instruction
114
115 2003-03-13 Jackson Harper <jackson@latitudegeo.com>
116
117         * ILTokenizer.cs: Use InstrTable for looking up and getting Opcodes
118
119 2003-02-06 Jackson Harper <jackson@latitudegeo.com>
120
121         * IlToken.cs: Add Dash Token (this is used for assembly names)
122         * ILTokenizer.cs: Return Dash token
123         
124 2003-02-02 Jackson Harper <jackson@latitudegeo.com>
125
126         * ChangeLog: Add ChangeLog