1 2009-01-09 Miguel de Icaza <miguel@novell.com>
3 * Add support for `strict' in .method declaration
5 2008-02-21 Ankit Jain <jankit@novell.com>
8 * Driver.cs: Use Report.Message for emitting messages.
9 * Report.cs (AssembleFile): Honor 'quiet'.
10 Patch from Andrea Carlo Ornstein <andrea.ornstein@st.com>
12 2008-02-07 Gert Driesen <drieseng@users.sourceforge.net>
14 * Driver.cs: Removed crazy logic prevent debug symbol from being
15 created when /debug is set.
17 2008-02-06 Ankit Jain <jankit@novell.com>
20 * ExternMethodRef.cs (ResolveVararg): Fix the check for sentinel.
22 2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
24 * ilasm.exe.sources: added EmiteByteInst.cs.
26 2006-06-07 Ankit Jain <jankit@novell.com>
28 * Report.cs (Report.FilePath): New, static property.
29 (Report.Error): Remove overload with file_path param.
30 (Report.Warning): New.
31 * Driver.cs (DriverMain.Run): Set Report.FilePath .
32 (DriverMain.ProcessFile): Update use of Report.Error .
35 2006-05-26 Ankit Jain <jankit@novell.com>
37 * ilasm.exe.sources: Add Assembly.cs
38 * Driver.cs: Update to use the new Assembly class.
40 2006-05-26 Ankit Jain <jankit@novell.com>
42 * ilasm.exe.sources: Add PermissionMember.cs, PermissionSet.cs &
45 2006-05-11 Ankit Jain <jankit@novell.com>
47 * Report.cs (Report.Error): Add 2 new overloads.
48 (ILAsmException.ctor): Add 2 new overloads, with location and file_path
50 (ILAsmException.Location):
51 (ILAsmException.FilePath): New properties.
52 (ILAsmException.ToString): Return formatted error message.
53 * Driver.cs (DriverMain.ProcessFile): Improve error message display.
54 (DriverMain.Run): Use ILAsmException.ToString ().
56 2006-05-09 Sebastien Pouliot <sebastien@ximian.com>
58 * Driver.cs: Move up the loading of the strongname key pair to allow
59 embedding the public part into the assembly. Also don't try to sign
62 2006-04-24 Ankit Jain <jankit@novell.com>
64 * Driver.cs (DriverMain.Run): Update use of CodeGen.ctor .
66 2006-02-20 Ankit Jain <jankit@novell.com>
68 * Report.cs (Report): Make all methods,fields static.
69 (Report.Error): Update to throw ILAsmException.
70 (ILAsmException): New.
71 (InternalErrorException): New. Derive from ILAsmException.
72 * Driver.cs (Driver.Run): Catch ILAsmException and PEFileException and
73 print error messages instead of dumping the stack trace, and delete the
74 output file if CodeGen.Write() fails.
75 Move the check for entrypoint from CodeGen.Write to here.
77 2006-01-19 Ankit Jain <jankit@novell.com>
79 * ilasm.exe.sources: Add Module.cs to the build.
81 2006-01-13 Ankit Jain <jankit@novell.com>
83 * ilasm.exe.sources: Replace IMethodRef.cs with BaseMethodRef.cs
85 2006-01-09 Ankit Jain <jankit@novell.com>
87 * ilasm.exe.sources: Replace GenericTypeRef.cs with GenericParamRef.cs
89 2006-01-07 Ankit Jain <jankit@novell.com>
91 * ilasm.exe.sources: Add GenericParameters.cs to the build.
93 2006-01-06 Ankit Jain <jankit@novell.com>
95 * ilasm.exe.sources: Remove ExternTypeRefInst from build.
97 2005-12-21 Ankit Jain <jankit@novell.com>
99 * ilasm.exe.sources: Add GenericArguments.cs to the build.
101 2005-08-26 Kornél Pál <kornelpal@hotmail.com>
103 * AssemblyInfo.cs: Using Consts.MonoVersion instead of MonoVersion.cs.
104 * ilasm.exe.sources: Using Consts.MonoVersion instead of MonoVersion.cs.
106 2005-08-05 Ankit Jain <jankit@novell.com>
108 * ilasm.exe.sources: Add DeclSecurity.cs to the build.
110 2005-05-12 Ankit Jain <ankit@corewars.org>
112 * Makefile (LOCAL_MCS_FLAGS): Use the in-tree PEAPI.dll as its public
113 interface has changed a bit, so avoid clash with older installed
116 2005-04-21 Raja R Harinath <rharinath@novell.com>
118 * Makefile (PROGRAM): Make profile-specific.
120 2004-12-08 Sebastien Pouliot <sebastien@ximian.com>
122 * Driver.cs: Added support for /key option to strongname assemblies
123 produced by ilasm. Fix bug #69721.
124 * Makefile: Added dependency on Mono.Security.dll assembly to provide
125 strongnaming support.
127 2004-12-02 Miguel de Icaza <miguel@ximian.com>
129 * CodeGen.cs: Correctly compute the name of a nested class,
130 currently it was ignoring anything above level 1.
132 2004-07-27 Jackson Harper <jackson@ximian.com>
134 * Driver.cs: Make debug switch compatible with MS's add debug to
137 2004-07-27 Martin Baulig <martin@ximian.com>
139 Added debugging support to ilasm :-)
141 * Makefile: Depend on Mono.CSharp.Debugger.dll (this is only
142 exposed in DebuggingInfo.cs, so we can easily change that).
144 * Driver.cs: Added --debug command line argument to create
145 debugging info; this'll create a .mdb symbol file.
147 2004-06-26 Jackson Harper <jackson@ximian.com>
149 * Report.cs: Fix quiet.
151 2004-06-24 Jackson Harper <jackson@ximian.com>
153 * Report.cs: Add new mehtod for displaying messages.
155 2004-06-23 Jackson Harper <jackson@ximian.com>
157 * Driver.cs: Use the same success message as MS.
159 2004-06-19 Jackson Harper <jackson@ximian.com>
161 * ilasm.exe.sources: Add MethodPointerTypeRef.cs to the build.
163 2004-06-14 Jackson Harper <jackson@ximian.com>
165 * ilasm.exe.sources: Add FileRef.cs
167 2004-06-10 Jackson Harper <jackson@ximian.com>
169 * Driver.cs: Handle tokenization errors with the correct error
171 * Report.cs: Print error messages properly. Add an extra \n after
172 the assemble file message.
173 * ilasm.exe.sources: Add new exception, remove old one.
175 2004-06-04 Jackson Harper <jackson@ximian.com>
177 * Driver.cs: Do everything using the invariant culture.
179 2004-04-26 Jackson Harper <jackson@ximian.com>
181 * Makefile: Get libs from the default profile directory
183 2004-04-05 Jackson Harper <jackson@ximian.com>
185 * Driver.cs: Accept output option. Usage shows /output instead of
188 2004-04-01 Jackson Harper <jackson@ximian.com>
190 * Driver.cs: The parser now needs to take a scanner object in its
191 constructor so it can set a flag when parsing byte arrays.
193 2004-02-18 Jackson Harper <jackson@ximian.com>
195 * ilasm.exe.sources: Add ExternTypeRefInst to the build.
197 2003-11-16 Jackson Harper <jackson@ximian.com>
199 * Driver.cs: Give the parser an instance of the stream reader so
200 it can get the streams encoding.
202 2003-11-16 Jackson Harper <jackson@ximian.com>
204 * Driver.cs: If an arg isn't a switch and starts with a / add it
205 as a file to be compiled. This fixes bug #51041.
207 2003-10-28 Jackson Harper <jackson@ximian.com>
209 * Driver.cs: Stub some command line args to maintain compatibility
212 2003-10-01 Jackson Harper <jackson@latitudegeo.com>
214 * Driver.cs: Remove delete on error, add quiet option.
215 * Report.cs: Can be quiet
217 2003-09-21 Jackson Harper <jackson@latitudegeo.com>
219 * Driver.cs: Give codegen a report object
220 * Report.cs: Remove silly methods that wouldnt have worked. Errors
221 are just string messages.
223 2003-08-14 Jackson Harper <jackson@latitudegeo.com>
225 * Driver.cs: Report entry for each il file processed
226 * Report.cs: New file - All error/warning/progress reporting will
228 * ilasm.exe.sources: Add report to build
230 2003-08-12 Jackson Harper <jackson@latitudegeo.com>
232 * AssemblyInfo.cs: Bump up the vizzity-version number.
234 2003-07-30 Jackson Harper <jackson@latitudegeo.com>
236 * Driver.cs: Throw compile errors for now
238 2003-07-30 Jackson Harper <jackson@latitudegeo.com>
240 * Driver.cs: Add some basic line number feedback when an error
243 2003-07-17 Jackson Harper <jackson@latitudegeo.com>
245 * ilasm.exe.sources: Add corlib/GenericTypeRef.cs to build
247 2003-07-15 Jackson Harper <jackson@latitudegeo.com>
249 * Driver.cs: Use WriteLine for 'compilation succeeded' message.
251 2003-07-16 Peter Williams <peter@newton.cx>
253 * Makefile (ILParser.cs): Move this from parser/ so we avoid
254 slash direction issues on the Windows build.
256 * .cvsignore: Add ILParser.cs here.
258 2003-07-14 Jackson Harper <jackson@latitudegeo.com>
260 * Makefile: Add the class/lib directory to the lib path so the
261 newest PEAPI is allways loaded.
263 2003-06-08 Jackson Harper <jackson@latitudegeo.com>
265 * AssemblyInfo.cs: Bump version number up (way up) lots of
266 features have been implemented since last version.
268 2003-05-19 Jackson Harper <jackson@latitudegeo.com>
270 * Driver.cs: Exit with 1 return code when no arguments are supplied.
272 2003-05-19 Jackson Harper <jackson@latitudegeo.com>
274 * Driver.cs: Add command switch to delete output files created if
277 2003-05-19 Jackson Harper <jackson@latitudegeo.com>
279 * Driver.cs: Print error exception when compilation fails.
281 2003-05-18 Jackson Harper <jackson@latitudegeo.com>
283 * Driver.cs: Return an error code if any errors occur during
284 compiling. Also print a success or error message.
286 2003-05-02 Jackson Harper <jackson@latitudegeo.com>
288 * AssemblyInfo.cs: Bump up version number
290 2003-04-30 Jackson Harper <jackson@latitudegeo.com>
292 * makefile: Add instructions to build
293 * makefile.gnu: Add instructions to build
295 2003-04-20 Jackson Harper <jackson@latitudegeo.com>
297 * makefile: Add DataDef to build
298 * makefile.gnu: Add DataDef to build
300 2003-04-17 Jackson Harper <jackson@latitudegeo.com>
302 * makefile: Add new types to build
303 * makefile.gnu: Add new types to build
305 2003-04-17 Jackson Harper <jackson@latitudegeo.com>
307 * AssemblyInfo.cs: Increase version number.
309 2003-04-17 Jackson Harper <jackson@latitudegeo.com>
311 * Driver.cs: Call new codegen methods.
312 * makefile: Add new types to build
313 * makefile.gnu: Add new types to build
315 2003-03-31 Jackson Harper <jackson@latitudegeo.com>
317 * Driver.cs: de-tabbify
319 2003-03-29 Jackson Harper <jackson@latitudegeo.com>
321 * Driver.cs: Add switch to display parser debugging information.
323 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
325 * Driver.cs: Add switch to display method definitions and references.
327 2003-03-16 Jackson Harper <jackson@latitudegeo.com>
329 * Driver.cs: Add switch to display tokens as they are generated.
331 2003-03-15 Jackson Harper <jackson@latitudegeo.com>
333 * makefile, makefile.gnu: Add FieldTable to build
335 Fri Mar 14 10:06:49 CET 2003 Paolo Molaro <lupus@ximian.com>
337 * codegen/InstrTable.cs: fix break instruction name.
338 * codegen/Method.cs: use ArgumentNullException.
339 * parser/ILParser.jay: handle stdcall convention.
341 2003-03-08 Jackson Harper <jackson@latitudegeo.com>
343 * makefile, makefile.gnu: Add InstrTable to build
345 2003-03-08 Jackson Harper <jackson@latitudegeo.com>
347 * makefile, makefile.gnu: Add MethodTable and TypeRef to build.
349 2003-03-08 Jackson Harper <jackson@latitudegeo.com>
351 * makefile, makefile.gnu: Add ExternTable to build
353 2003-03-08 Jackson Harper <jackson@latitudegeo.com>
355 * Driver.cs: If a file does not exist print an error and exit.
357 2003-03-07 Alp Toker <alp@atoker.com>
359 * makefile, makefile.gnu: reference PEAPI.dll instead of including
362 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
364 * AssemblyInfo.cs: Bump up version number, this new version is a major
365 structural change, PEAPI is now being used for code emission.
366 * makefile, makefile.gnu: Add AssemblyInfo.cs to build
368 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
370 * Driver.cs: Check that all types are defined before writing pe file
372 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
374 * makefile, makefile.gnu: Include PEAPI.cs instead of linking to it, this fixes build but is not ideal.
376 2003-03-06 Jackson Harper <jackson@latitudegeo.com>
378 * Driver.cs: Change a few calls to match new CodeGen
379 * makefile: Build with PEAPI
380 * makefile.gnu: Build with PEAPI
382 2003-02-22 Jackson Harper <jackson@latitudegeo.com>
384 * Driver.cs: Add version option, fix bug that allowed -- switches to be invoked with /-
386 2003-02-21 Jackson Harper <jackson@latitudegeo.com>
388 * AssemblyInfo.cs: Add file
389 * makefile: Add AssemblyInfo to build
390 * makefile.gnu: Add AssemblyInfo to build
392 2003-02-08 Jackson Harper <jackson@latitudegeo.com>
394 * makefile: Add TypeManager.cs to build
395 * makefile.gnu: Add TypeManager.cs to build
397 2003-02-03 Jackson Harper <jackson@latitudegeo.com>
399 * Driver.cs: Remove some debugging info.
401 2003-02-02 Jackson Harper <jackson@latitudegeo.com>
403 * makefile.gnu: Use new Driver.cs instead of Main.cs
405 2003-02-02 Jackson Harper <jackson@latitudegeo.com>
407 * Driver.cs: Add new Driver
408 * tests: Add new tests directory
409 * makefile: Use new Driver.cs instead of Main.cs