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

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-03-06Bug fix. When adding an assembly ref, support names that don't have Version o...jfrijters
2011-03-06Apparently we should emit a TypeRef for types used in DeclSecurity.jfrijters
2011-03-06Added API extension __SetModuleVersionId().jfrijters
2011-03-06Preserve accessor ordering.jfrijters
2011-03-06Added API extension to get/set max stack size.jfrijters
2011-03-06Allow missing primitive types to be used in custom attribute blob writing.jfrijters
2011-03-06If mscorlib is a missing assembly, don't try to copy its image runtime version.jfrijters
2011-03-03Allow missing types and methods to be used in emitted assembly.jfrijters
2011-03-03- Fixed CustomAttributeData.__GetBlob() to work for pseudo-custom attributes.jfrijters
2011-03-03Fixed stack height computation bug. For a newobj the parameters should be pop...jfrijters
2011-03-03Added __SetSignature() API extension to allow constructor to be defined befor...jfrijters
2011-02-15Fixed exception table sorting bug.jfrijters
2011-02-14Optimized the Type == operator.jfrijters
2011-02-14Added MethodBuilder.__ReleaseILGenerator() API to eagerly bake the method bod...jfrijters
2011-01-26Allocate method name token during Bake() instead of constructor to prepare fo...jfrijters
2011-01-26Performance tweaks by Marek.jfrijters
2011-01-21Fixed TypeBuilder.SetParent(null) handling. Moved base type defaulting to Cre...jfrijters
2011-01-20Move missing type support into universe and optionally allow missing types to...jfrijters
2011-01-20The type attributes are mutable, so there is no reason to require them in __D...jfrijters
2011-01-20More type name fixes. This time to support the fact that the CLR and Mono bot...jfrijters
2011-01-18Added support for resolving MissingTypes in AssemblyBuilder.jfrijters
2011-01-18Added support for saving to a stream instead of a file.jfrijters
2011-01-13Prevent external subclassing. It's not part of the design to suppor that, now...jfrijters
2011-01-12Refactored Define[Nested]Type methods to allow __DefineType() and __DefineNes...jfrijters
2011-01-12Remove parent from TypeBuilder constructor.jfrijters
2011-01-12Final set of Name/Namespace/FullName fixes to make everything more compatible...jfrijters
2011-01-12Re-arrange Name/__Name usage to avoid redundant escaping/unescaping.jfrijters
2011-01-12Added virtual __Name and __Namespace properties to Type to allow the real (fr...jfrijters
2010-12-20Don't create duplicate ClassLayout table records when using the DefineType ov...jfrijters
2010-12-20Set stack height to zero at the entry of an exception block (instead of -1), ...jfrijters
2010-12-09Fixed stupid copy/paste bug in AssemblyBuilder.GetTypeImpl(). The modules lis...jfrijters
2010-12-09According to Marek, Mono requires the PropertyMap table to be sorted.jfrijters
2010-12-08Don't emit unnecessary leave instructions in "clever" mode.jfrijters
2010-12-08The end label of an exception block should always be marked, because you can ...jfrijters
2010-12-08Added Module.__GetReferencedAssemblies() API.jfrijters
2010-12-08Added ModuleBuilder.__AddAssemblyReference() API to explicitly add assembly r...jfrijters
2010-12-07Exception block end label should be marked regardless of exception assistance...jfrijters
2010-12-07At the start of a finally block, the stack height should always be zero (i.e....jfrijters
2010-12-06Added support for emitting assemblies with non-existing cultures.jfrijters
2010-12-06Custom attributes applied to GenericTypeParameterBuilder were attached to the...jfrijters
2010-12-06HashAlgId in assembly manifest record turns out to be useless (SHA1 is always...jfrijters
2010-12-06Keep Param table records is correct order.jfrijters
2010-12-05TypeBuilder created by DefineInitializedData should be created.jfrijters
2010-12-03- Delay creation of tokens for base type and interfaces until CreateType, to ...jfrijters
2010-11-29Add support for assembly custom attributes on modules (they are applied to a ...jfrijters
2010-11-29Added AssemblyBuilder.__AddModule() to allow pre-existing modules to be linke...jfrijters
2010-11-29- Added ModuleBuilder.__Save() to support -target:module option better.jfrijters
2010-11-29Added AssemblyBuilder.__DefineIconResource() API.jfrijters
2010-11-29Use ResourceSection directly to collect unmanaged resources. To prepare for a...jfrijters
2010-11-26- Added IKVM.Reflection.Missing type.jfrijters