Age | Commit message (Expand) | Author |
2010-02-01 | In C++, an initializer on a variable doesn't necessarily mean it's the defini... | Sebastian Redl |
2010-02-01 | Emit debug info for namespaces. | Devang Patel |
2010-01-31 | Switch expressions like T() and T(1,2) over to new-style initialization. I'm | Eli Friedman |
2010-01-31 | Simplify EmitMemberInitializer; no intended functionality change. | Eli Friedman |
2010-01-31 | Start creating CXXBindReferenceExpr nodes when binding complex types to refer... | Anders Carlsson |
2010-01-31 | Rework base and member initialization in constructors, with several | Douglas Gregor |
2010-01-31 | When performing a derived-to-base cast that we know will not change the offse... | Anders Carlsson |
2010-01-31 | When doing a base-to-derived cast we don't need to null check the derived val... | Anders Carlsson |
2010-01-31 | Some class related cleanup. | Anders Carlsson |
2010-01-30 | More asm cleanup. | Anders Carlsson |
2010-01-30 | Yay for more StringRefs. | Anders Carlsson |
2010-01-29 | Use appropriate context for typedefs. | Devang Patel |
2010-01-29 | Maintain a map of regions (lexical scopes) and use it to find context for a g... | Devang Patel |
2010-01-29 | Name mangling for cast expressions, from Matthias Schiffer! Fixes PR5876. | Douglas Gregor |
2010-01-29 | Use EmitLValueForFieldInitialization when synthesizing the copy ctor as well. | Anders Carlsson |
2010-01-29 | Add a new EmitLValueForFieldInitialization that will be used for initializing... | Anders Carlsson |
2010-01-29 | Simplify EmitLValueForField - we can get whether the field is part of a union... | Anders Carlsson |
2010-01-29 | ARM/APCS ABI: Fix some problems with bit-fields in structures. After rereading | Daniel Dunbar |
2010-01-29 | Add an CXXBindReferenceExpr (not used just yet). | Anders Carlsson |
2010-01-28 | s/CGDebugInfo::getContext/CGDebugInfo::getContextDescriptor/g to avoid confus... | Devang Patel |
2010-01-28 | Fix indentation. | Devang Patel |
2010-01-28 | Static methods do not need "this" pointer argument. | Devang Patel |
2010-01-28 | Emit base classes info first, as expected by the debugger. | Devang Patel |
2010-01-28 | Fix an incorrect union layout assert. Fixes PR6164. | Anders Carlsson |
2010-01-28 | s/FunctionNames/DebugInfoNames/g | Devang Patel |
2010-01-28 | Emit vtable info. | Devang Patel |
2010-01-28 | While emitting debugging infor for a C++ class, identify the holder of class'... | Devang Patel |
2010-01-28 | Include "this" pointer argument while emitting debug info for a C++ method. | Devang Patel |
2010-01-27 | Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, | Ken Dyck |
2010-01-27 | Unique ObjC strings (GNU Runtime); fix for PR6142. Note: Doing this in the r... | David Chisnall |
2010-01-27 | Structs and classes with non-trivial destructors or copy constructors should ... | Anders Carlsson |
2010-01-26 | Refine the non-virtual this adjustments for thunks by using the offset | Mike Stump |
2010-01-26 | Refine the non-virtual this adjustments for thunks by using the offset | Mike Stump |
2010-01-26 | Convert one last size variable to CharUnits (follow-on to 94577). | Ken Dyck |
2010-01-26 | Use CharUnits for sizes, offsets, alignments, and padding amounts for values | Ken Dyck |
2010-01-26 | Use CharUnits for alignments in character units. | Ken Dyck |
2010-01-26 | Use CharUnits for alignment of UTF16 string in GetAddrOfConstantCFString(). | Ken Dyck |
2010-01-26 | Use CharUnits for alignment in EmitNullInitializationLValue(). | Ken Dyck |
2010-01-26 | Use the right definition when emitting a global variable. Fixes PR5564. | Anders Carlsson |
2010-01-26 | Change getUnique to return a GlobalDecl. Fixes PR6147. | Anders Carlsson |
2010-01-26 | Introduce CodeGenModule::GetTargetTypeStoreSize() to calculate the store size | Ken Dyck |
2010-01-26 | If a global variable has an initializer with side effects, it can never be de... | Anders Carlsson |
2010-01-26 | Fix another debug info crash with virtual bases. | Anders Carlsson |
2010-01-26 | Fix the test I broke, and also fix a crash when declaring a virtual destructo... | Anders Carlsson |
2010-01-26 | Factor creating the DISubprogram for a member function out into a separate fu... | Anders Carlsson |
2010-01-26 | Simplify CGDebugInfo::CollectCXXMemberFunctions a little. More to come. | Anders Carlsson |
2010-01-26 | Make sure to always mark a global variable as not being constant if it has a ... | Anders Carlsson |
2010-01-26 | Be sure to track the non-virtual part of the vcall offset in complex | Mike Stump |
2010-01-26 | Fixup a missing vcall entry. WIP. | Mike Stump |
2010-01-25 | First cut at emitting inheritance info. | Devang Patel |