| Commit message (Expand) | Author | Age | Files | Lines |
| * | Keep track of Record context to ensure that record elements are properly nest... | Devang Patel | 2010-03-11 | 1 | -1/+20 |
| * | Rename getVirtualBaseOffsetIndex to getVirtualBaseOffsetOffset to reflect wha... | Anders Carlsson | 2010-03-11 | 1 | -2/+2 |
| * | Create a new InjectedClassNameType to represent bare-word references to the | John McCall | 2010-03-10 | 1 | -0/+1 |
| * | Use SmallString instead of alloca. | Devang Patel | 2010-03-10 | 1 | -2/+3 |
| * | Fix file reference for derived and composite types. Now, dwarf writer uses st... | Devang Patel | 2010-03-09 | 1 | -41/+38 |
| * | More then one anonymous aggregates on one line creates chaos when MDNode uniq... | Devang Patel | 2010-03-09 | 1 | -4/+4 |
| * | Use getLast() instead of getBasename(). | Devang Patel | 2010-03-09 | 1 | -1/+1 |
| * | Start using DIFile. Corresponding llvm patch is r98020. | Devang Patel | 2010-03-09 | 1 | -117/+95 |
| * | Avoid using DIDescriptor.isNull(). | Devang Patel | 2010-03-08 | 1 | -4/+4 |
| * | Revert r97949. | Devang Patel | 2010-03-08 | 1 | -4/+4 |
| * | Avoid DIDescriptor.isNull() checks. | Devang Patel | 2010-03-08 | 1 | -4/+4 |
| * | Targets (like pic16) may have mangled the name of global variables, | Sanjiv Gupta | 2010-02-25 | 1 | -1/+1 |
| * | Emit debug info for VectorType. | Devang Patel | 2010-02-23 | 1 | -2/+25 |
| * | Distinguish two lexical blocks at the same level. | Devang Patel | 2010-02-16 | 1 | -1/+4 |
| * | Do not ignore anonymous records. | Devang Patel | 2010-02-12 | 1 | -2/+2 |
| * | Cache new compile unit. | Devang Patel | 2010-02-12 | 1 | -1/+8 |
| * | Eliminate the ASTContext parameter from RecordDecl::getDefinition() | Douglas Gregor | 2010-02-11 | 1 | -1/+1 |
| * | Refactor code that generates debug info for variables that has BlocksAttr. | Devang Patel | 2010-02-10 | 1 | -245/+124 |
| * | Use current location as the location of compiler generated arguments, e.g. se... | Devang Patel | 2010-02-10 | 1 | -8/+10 |
| * | Fix virtual bases' debug info. | Devang Patel | 2010-02-09 | 1 | -2/+4 |
| * | Mark implicit "this" argument as an artificial argument. | Devang Patel | 2010-02-09 | 1 | -1/+4 |
| * | Fix FIXME and surrounding comment. | Devang Patel | 2010-02-01 | 1 | -4/+1 |
| * | Use appropriate context descriptor in RecordDecl's debug info. | Devang Patel | 2010-02-01 | 1 | -3/+9 |
| * | Do not use clang type name to name a local variable, e.g. Decl. | Devang Patel | 2010-02-01 | 1 | -44/+44 |
| * | Do not use clang type name to name a local variable, e.g. Decl. | Devang Patel | 2010-02-01 | 1 | -29/+25 |
| * | Use DeclContext as getContextDescriptor() argument. | Devang Patel | 2010-02-01 | 1 | -18/+27 |
| * | Emit debug info for namespaces. | Devang Patel | 2010-02-01 | 1 | -0/+25 |
| * | Use appropriate context for typedefs. | Devang Patel | 2010-01-29 | 1 | -7/+5 |
| * | Maintain a map of regions (lexical scopes) and use it to find context for a g... | Devang Patel | 2010-01-29 | 1 | -10/+8 |
| * | s/CGDebugInfo::getContext/CGDebugInfo::getContextDescriptor/g to avoid confus... | Devang Patel | 2010-01-28 | 1 | -5/+5 |
| * | Fix indentation. | Devang Patel | 2010-01-28 | 1 | -30/+30 |
| * | Static methods do not need "this" pointer argument. | Devang Patel | 2010-01-28 | 1 | -0/+5 |
| * | Emit base classes info first, as expected by the debugger. | Devang Patel | 2010-01-28 | 1 | -3/+3 |
| * | s/FunctionNames/DebugInfoNames/g | Devang Patel | 2010-01-28 | 1 | -2/+2 |
| * | Emit vtable info. | Devang Patel | 2010-01-28 | 1 | -1/+70 |
| * | While emitting debugging infor for a C++ class, identify the holder of class'... | Devang Patel | 2010-01-28 | 1 | -1/+11 |
| * | Include "this" pointer argument while emitting debug info for a C++ method. | Devang Patel | 2010-01-28 | 1 | -1/+39 |
| * | Change the return type of ASTContext::getDeclAlignInBytes() to CharUnits and, | Ken Dyck | 2010-01-27 | 1 | -8/+10 |
| * | Fix another debug info crash with virtual bases. | Anders Carlsson | 2010-01-26 | 1 | -4/+11 |
| * | Fix the test I broke, and also fix a crash when declaring a virtual destructo... | Anders Carlsson | 2010-01-26 | 1 | -21/+25 |
| * | Factor creating the DISubprogram for a member function out into a separate fu... | Anders Carlsson | 2010-01-26 | 1 | -51/+63 |
| * | Simplify CGDebugInfo::CollectCXXMemberFunctions a little. More to come. | Anders Carlsson | 2010-01-26 | 1 | -6/+6 |
| * | First cut at emitting inheritance info. | Devang Patel | 2010-01-25 | 1 | -1/+37 |
| * | Emit debug info for virtual functions. | Devang Patel | 2010-01-25 | 1 | -2/+12 |
| * | fix rdar://7556129 a crash in blocks debug info codegen. | Chris Lattner | 2010-01-25 | 1 | -2/+3 |
| * | simplify code. | Chris Lattner | 2010-01-25 | 1 | -19/+10 |
| * | No need to terminate this buffer. | Benjamin Kramer | 2010-01-23 | 1 | -4/+3 |
| * | A Decl->getName() is not unique. However, the debug info descriptors | Devang Patel | 2010-01-20 | 1 | -1/+8 |
| * | Emit human readable names for operators. | Devang Patel | 2010-01-19 | 1 | -4/+3 |
| * | First cut at emitting debugging information for C++ member functions. | Devang Patel | 2010-01-19 | 1 | -2/+71 |