- af44035 Rename CGVtableInfo to CodeGenVTables in preparation of adding another VTableInfo class. by Anders Carlsson · 15 years ago
- f6728fc Comment the reasons for the strange little dance we do with the main file name for debug information by Douglas Gregor · 15 years ago
- bca5d37 More work on thunks; almost there now. by Anders Carlsson · 15 years ago
- 87e0ac8 Add less than operators to ThisAdjustment, ReturnAdjustment and ThunkInfo. Sort the thunks before dumping them. by Anders Carlsson · 15 years ago
- 09daa50 Improve dumping of thunks. by Anders Carlsson · 15 years ago
- 2539421 We want to add all thunks, not just 'this' adjustment thunks. by Anders Carlsson · 15 years ago
- 9d734f3 AddThunk should take a const reference. by Anders Carlsson · 15 years ago
- 8682bda Fix PR6648 by not creating a temporary with the type of a by Rafael Espindola · 15 years ago
- 4c8c8e9 Fixed synthesizing properties declared in properties (GNU runtime). by David Chisnall · 15 years ago
- cb61a7b IRgen: Wrap atomic intrinsics with memory barriers, to ensure we honor the semantics. by Daniel Dunbar · 15 years ago
- efb0fa9 C++: Add support for -fno-use-cxa-atexit. - So much typing, so little gain... by Daniel Dunbar · 15 years ago
- 5c6846e IRgen: Inline GenerateCXXGlobal[VarDecl]InitFunc into sole caller. by Daniel Dunbar · 15 years ago
- f746aa6 Change CodeGenModule to rely on the Module's symbol table instead of by John McCall · 15 years ago
- f7ad500 Try to improve computation of the main file name for debug by Douglas Gregor · 15 years ago
- ac91b4c For debug information, get the main file name from the source manager by Douglas Gregor · 15 years ago
- 7c647a1 Replace some SmallVectors with arrays. by Benjamin Kramer · 15 years ago
- 9135a84 When dumping vtables, also dump the thunks. by Anders Carlsson · 15 years ago
- 5e454aa More work on thunks. by Anders Carlsson · 15 years ago
- 9b35b25 Correctly mangle dependent TypenameType. Fixes PR6625. by Rafael Espindola · 15 years ago
- ad9e06d Fixed copy-and-paste error causing categories to contain the protocols declared on the class, not the protocols declared on the category. by David Chisnall · 15 years ago
- 8f51a4f Give explicit template instantiations weak ODR linkage. Former by Douglas Gregor · 15 years ago
- fea3d4d Use raw_ostream instead of sprintf. by Benjamin Kramer · 15 years ago
- 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
- 34fd284 Re-revert the explicit template instantiation linkage patch. I am beginning to look incompetent by Douglas Gregor · 15 years ago
- 8721360 Reinstate patch to turn explicit template instantiations into weak symbols by Douglas Gregor · 15 years ago
- 3352406 Allow users to set CPPFLAGS and CXXFLAGS on the make command line. by Jeffrey Yasskin · 15 years ago
- 20e1c7e Fix a rare corner case bug which exposed a serious block API generation by Fariborz Jahanian · 15 years ago
- 22fe585 If main file name is empty then use "<unknown>". by Devang Patel · 15 years ago
- 617def3 More this adjustment simplification. by Anders Carlsson · 15 years ago
- 4ea9006 Revert the linkage change for explicit template instantiations; something is amiss by Douglas Gregor · 15 years ago
- cd0d27f Remove OldOffset. by Anders Carlsson · 15 years ago
- ae936d5 Remove debug output. by Anders Carlsson · 15 years ago
- dd36681 Begin simplifying handling of thunks. by Anders Carlsson · 15 years ago
- e5e0c9d Give explicit template instantiations weak linkage (but don't defer by Douglas Gregor · 15 years ago
- e4c1ea0 Keep track of Record context to ensure that record elements are properly nested in debug info. by Devang Patel · 15 years ago
- a14db75 fix PR6433, crash on va_arg of typedef. by Chris Lattner · 15 years ago
- c89a7cf Use the new vtable layout code for computing virtual base offset offsets. by Anders Carlsson · 15 years ago
- d980072 Correctly mangle address of member in template arguments. Fixes PR6460 by Rafael Espindola · 15 years ago
- bba1607 Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect what it actually does. by Anders Carlsson · 15 years ago
- 1972ced When possible, use the vbase offset offsets from the most derived class directly. by Anders Carlsson · 15 years ago
- bb6305b Keep track of, and dump, vbase offset offsets. by Anders Carlsson · 15 years ago
- 1ffd79b Fix tests. by Anders Carlsson · 15 years ago
- e02fc0a Run the new vtable builder for construction vtables as well now. Note that we still don't use the data it generates. by Anders Carlsson · 15 years ago
- ec853ba Support PPC-32 DWARF EH intrinisics. Thanks to rdivacky for his assistance. by John McCall · 15 years ago
- 0af9523 set alignment on static locals properly, patch by Arnaud de Grandmaison! by Chris Lattner · 15 years ago
- 2bc1d3a Fix calculation of whether a member function needs a thunk in construction vtables. by Anders Carlsson · 15 years ago
- a96a2e9 We were mistakenly marking morally virtual bases as being uninteresting. Fix this. by Anders Carlsson · 15 years ago
- f2c98ce Ignore non-interesting bases when emitting construction vtables. by Anders Carlsson · 15 years ago
- 6039661 Don't accidentally mark some functions in construction vtables as unused. Also land the test for a previous checkin, now that it's correct. by Anders Carlsson · 15 years ago
- 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 15 years ago
- d7fdae5 When building construction vtables, we need to check if a primary virtual base is actually a primary virtual base in the layout class. by Anders Carlsson · 15 years ago
- db4022c Improve vcall offset handling in construction vtables. With this we layout the construction vtables from the ABI examples correctly. by Anders Carlsson · 15 years ago
- bbf58bb Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 15 years ago
- f338370 Use SmallString instead of alloca. by Devang Patel · 15 years ago
- d58562e Fix file reference for derived and composite types. Now, dwarf writer uses strict verifier that ignores debug info for such types if their file info is unknown. by Devang Patel · 15 years ago
- 7573f8b More then one anonymous aggregates on one line creates chaos when MDNode uniquness is combined with RAUW operation. Right solution is to avoid using RAUW. by Devang Patel · 15 years ago
- 683f6db Use getLast() instead of getBasename(). by Devang Patel · 15 years ago
- 1780055 Start using DIFile. Corresponding llvm patch is r98020. by Devang Patel · 15 years ago
- b35baae add a codegen hack to work around an AST bug, allowing us to compile the by Chris Lattner · 15 years ago
- 0804e6e Avoid using DIDescriptor.isNull(). by Devang Patel · 15 years ago
- dd7b0d5 Revert r97949. by Devang Patel · 15 years ago
- ff03ab1 Avoid DIDescriptor.isNull() checks. by Devang Patel · 15 years ago
- c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 15 years ago
- 4ce46c2 Perform overload resolution when static_cast'ing from a by Douglas Gregor · 15 years ago
- 96df6cf Don't turn off mangling in implicitly extern "C" system headers. GCC by Douglas Gregor · 15 years ago
- d3a344c Add a message to these asserts. by Benjamin Kramer · 15 years ago
- 3c15745 Use static method in GlobalValue by Rafael Espindola · 15 years ago
- ba68b08 PR6515: Implement __builtin_signbit and friends. by Eli Friedman · 15 years ago
- 6374c33 Implement __builtin_dwarf_sp_column for i386 (Darwin and not), x86-64 (all), by John McCall · 15 years ago
- a36e223 add support for a 1<<29 bit in the block flags field to mark blocks using alternate struct return ABI by Blaine Garst · 15 years ago
- bc6afd1 Don't produce an alias for a destructor if the target is weak. by Rafael Espindola · 15 years ago
- da18261 really fix 6473 by handling weakref in constant expressions. by Rafael Espindola · 15 years ago
- 6a83670 Fix PR6473. by Rafael Espindola · 15 years ago
- 468ec6c Revert changes r97693, r97700, and r97718. by John McCall · 15 years ago
- 4819ac4 Refactor local class name mangling and make it ABI conforming. by Fariborz Jahanian · 15 years ago
- 06a3066 Implement __builtin_dwarf_sp_column(). by John McCall · 15 years ago
- c9fe644 Create a TargetMachine whenever we create a CodeGenAction. The codegen of by John McCall · 15 years ago
- 9f9efe6 Fix code gen bug generating code for ((id)cat)->isa. Fixes radar 7709015. by Fariborz Jahanian · 15 years ago
- b992259 fix PR6475, we were doing side-effecting stuff in an assert. by Chris Lattner · 15 years ago
- 5705853 Implements mangling of local class names to by Fariborz Jahanian · 15 years ago
- 2752c01 add framework for ARM builtins, Patch by Edmund Grimley Evans! by Chris Lattner · 15 years ago
- fb17a56 Sketch out an implementation for __builtin_dwarf_cfa. I have no idea by John McCall · 15 years ago
- 7ada111 Implement __builtin_eh_return. by John McCall · 15 years ago
- ce57dd5 Fix a bug with base offset merging that Devang noticed. by Anders Carlsson · 15 years ago
- 492c4f9 Add proper target hooks for __builtin_extract_return_address and by John McCall · 15 years ago
- 9a70846 Don't emit derived-to-base destructor aliases if we don't have a definition by John McCall · 15 years ago
- 7b9a5aa During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 15 years ago
- 8880066 Simplify code. by Anders Carlsson · 15 years ago
- d0b76ca Inspired by seeing "MIPS" go by in the commits, I've gone ahead and by John McCall · 15 years ago
- d86e5d8 Rename BaseOffset to Offset and make it signed in preparation of more construction vtable work. by Anders Carlsson · 15 years ago
- 5e11085 After much consultation aimed at figuring out what this builtin actually by John McCall · 15 years ago
- ad5e738 Split out types that are non-canonical unless dependent as their own by John McCall · 15 years ago
- e1e342f The latest draft uses 'dt' to mangle member expressions, and now so do we. by John McCall · 15 years ago
- 4b2ccfc Improve name mangling for dependently-scoped declaration references. by Douglas Gregor · 15 years ago
- 5ed1bc3 Add name mangling for DeclRefExprs that refer to external names by Douglas Gregor · 15 years ago
- f14e14f Remove debug output. by Anders Carlsson · 15 years ago
- dad0f99 Handle unused functions in construction vtables correctly. by Anders Carlsson · 15 years ago
- 0378bf0 When laying out vtables for virtual bases in construction vtables, we need to check if the vtable is a primary base in the layout class. by Anders Carlsson · 15 years ago
- 530c40c More improvements to construction vtables; we know handle vbase offsets correctly (I hope). by Anders Carlsson · 15 years ago
- 5d7af6b Pass information about whether a base is virtual or not down to getCtorVtable, we need this information in the vtable builder. by Anders Carlsson · 15 years ago