comparison gen/tollvm.h @ 715:30b42a283c8e

Removed TypeOpaque from DMD. Changed runtime functions taking opaque[] to void[]. Implemented proper type painting, to avoid "resizing" array casts in runtime calls that previously took opaque[]. Implemented dynamic arrays as first class types, this implements proper ABI for these types on x86. Added dwarf region end after call to assert function, fixes some problems with llvm not allowing this to be missing. Reverted change to WithStatement from rev [704] it breaks MiniD, mini/with2.d needs to be fixed some other way... Fixed tango bug 1339 in runtime, problem with _adReverseChar on invalid UTF-8. Disabled .bc generation in the compiler runtime part, genobj.d triggers some llvm bug when using debug info. the .o seems to work fine.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 22 Oct 2008 14:55:33 +0200
parents 5a2983f97498
children 340acf1535d0
comparison
equal deleted inserted replaced
714:1e98c99a87cb 715:30b42a283c8e
96 unsigned char getABITypeAlign(const LLType* t); 96 unsigned char getABITypeAlign(const LLType* t);
97 unsigned char getPrefTypeAlign(const LLType* t); 97 unsigned char getPrefTypeAlign(const LLType* t);
98 98
99 // pair type helpers 99 // pair type helpers
100 LLValue* DtoAggrPair(const LLType* type, LLValue* V1, LLValue* V2, const char* name = 0); 100 LLValue* DtoAggrPair(const LLType* type, LLValue* V1, LLValue* V2, const char* name = 0);
101 LLValue* DtoAggrPair(LLValue* V1, LLValue* V2, const char* name = 0);
102 LLValue* DtoAggrPaint(LLValue* aggr, const LLType* as);
101 103
102 /** 104 /**
103 * Generates a call to llvm.memset.i32 (or i64 depending on architecture). 105 * Generates a call to llvm.memset.i32 (or i64 depending on architecture).
104 * @param dst Destination memory. 106 * @param dst Destination memory.
105 * @param nbytes Number of bytes to overwrite. 107 * @param nbytes Number of bytes to overwrite.