comparison gen/tollvm.h @ 811:8e6135be6999

Fixed ModuleInfo generation to no longer use the ModuleInfo class' default initializer for types/defaults, it's unsafe as initializers don't necesarily match the "formal" type. There might be explicit padding. Changed -g switch to emit DW_LANG_D debug info, make demangling work with a patched GDB, still more work to do for full support of D's Dwarf extensions. Added getNullValue helper method.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 01 Dec 2008 02:10:16 +0100
parents 340acf1535d0
children 03d7c4aac654
comparison
equal deleted inserted replaced
810:67fcd9df8b79 811:8e6135be6999
85 85
86 // llvm::T::get(...) wrappers 86 // llvm::T::get(...) wrappers
87 const LLPointerType* getPtrToType(const LLType* t); 87 const LLPointerType* getPtrToType(const LLType* t);
88 const LLPointerType* getVoidPtrType(); 88 const LLPointerType* getVoidPtrType();
89 llvm::ConstantPointerNull* getNullPtr(const LLType* t); 89 llvm::ConstantPointerNull* getNullPtr(const LLType* t);
90 LLConstant* getNullValue(const LLType* t);
90 91
91 // type sizes 92 // type sizes
92 size_t getTypeBitSize(const LLType* t); 93 size_t getTypeBitSize(const LLType* t);
93 size_t getTypeStoreSize(const LLType* t); 94 size_t getTypeStoreSize(const LLType* t);
94 size_t getABITypeSize(const LLType* t); 95 size_t getABITypeSize(const LLType* t);