comparison gen/tollvm.h @ 1353:45aca7e7cc88

Remove struct padding when passing or returning in registers on x86-64 (extern(D) only)
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 14 May 2009 20:36:55 +0200
parents 3d4581761b4c
children 46f6365a50d7
comparison
equal deleted inserted replaced
1352:b9f5f7c5db73 1353:45aca7e7cc88
66 LLValue* DtoAlignedLoad(LLValue* src, const char* name=0); 66 LLValue* DtoAlignedLoad(LLValue* src, const char* name=0);
67 void DtoStore(LLValue* src, LLValue* dst); 67 void DtoStore(LLValue* src, LLValue* dst);
68 void DtoAlignedStore(LLValue* src, LLValue* dst); 68 void DtoAlignedStore(LLValue* src, LLValue* dst);
69 LLValue* DtoBitCast(LLValue* v, const LLType* t, const char* name=0); 69 LLValue* DtoBitCast(LLValue* v, const LLType* t, const char* name=0);
70 LLConstant* DtoBitCast(LLConstant* v, const LLType* t); 70 LLConstant* DtoBitCast(LLConstant* v, const LLType* t);
71 LLValue* DtoInsertValue(LLValue* aggr, LLValue* v, unsigned idx);
72 LLValue* DtoExtractValue(LLValue* aggr, unsigned idx);
71 73
72 // llvm::dyn_cast wrappers 74 // llvm::dyn_cast wrappers
73 const LLPointerType* isaPointer(LLValue* v); 75 const LLPointerType* isaPointer(LLValue* v);
74 const LLPointerType* isaPointer(const LLType* t); 76 const LLPointerType* isaPointer(const LLType* t);
75 const LLArrayType* isaArray(LLValue* v); 77 const LLArrayType* isaArray(LLValue* v);