| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | Use llvm::Function name as the linkage name, but strip off leading '01' from ... | Devang Patel | 2010-01-19 | 1 | -0/+2 |
| * | Refactor. | Devang Patel | 2010-01-19 | 1 | -49/+60 |
| * | llvm::Function name is the linkage name. If it has a '01' as a prefix then pr... | Devang Patel | 2010-01-18 | 1 | -3/+0 |
| * | Fix crash generating debug info for constructor for anonymous struct. | Eli Friedman | 2010-01-16 | 1 | -1/+1 |
| * | Emit linkage name even if it matches regular name. The code generator uses li... | Devang Patel | 2010-01-14 | 1 | -3/+3 |
| * | Add comment. | Devang Patel | 2010-01-14 | 1 | -0/+3 |
| * | Because CurLoc is the current source location as far as CGDebugInfo is concer... | Devang Patel | 2010-01-14 | 1 | -1/+0 |
| * | Emit human readable names for c/c++ functions. Avoid emitting linkage name if... | Devang Patel | 2010-01-14 | 1 | -7/+38 |
| * | Roll out ASTContext::getTypeSizeInChars(), replacing instances of | Ken Dyck | 2010-01-11 | 1 | -6/+8 |
| * | Get rid of FixedWidthIntType, as suggested by Chris and Eli. | Anders Carlsson | 2009-12-29 | 1 | -5/+4 |
| * | adjust for llvm api changes. | Chris Lattner | 2009-12-28 | 1 | -10/+2 |
| * | this form of SetDebugLocation is about to go away, add some #includes that | Chris Lattner | 2009-12-28 | 1 | -4/+13 |
| * | Improve on my previous fix for debug information. Rather than | Douglas Gregor | 2009-12-21 | 1 | -51/+42 |
| * | Teach debug info generation to handle TemplateSpecializationType, | Douglas Gregor | 2009-12-21 | 1 | -3/+50 |
| * | Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used | Daniel Dunbar | 2009-12-18 | 1 | -7/+3 |
| * | Use StringRef in CGDebugInfo::EmitFunctionStart. | Benjamin Kramer | 2009-12-08 | 1 | -3/+3 |
| * | Use Path.makeAbsolute() and make a constant std::string a const char*. | Benjamin Kramer | 2009-12-08 | 1 | -7/+3 |
| * | Remove several .c_str() to be forward-compatible with StringRef. | Jeffrey Yasskin | 2009-12-08 | 1 | -2/+2 |
| * | Add rudimentary support for member pointers to CGDebugInfo. | Anders Carlsson | 2009-12-06 | 1 | -124/+167 |
| * | Move MainFileName option variable into CodeGenOptions instead of LangOptions. | Daniel Dunbar | 2009-11-29 | 1 | -3/+3 |
| * | Use StringRef (again) in DebugInfo interface. | Devang Patel | 2009-11-25 | 1 | -18/+18 |
| * | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor | 2009-11-16 | 1 | -1/+1 |
| * | revert r88963. | Devang Patel | 2009-11-16 | 1 | -1/+0 |
| * | Use TrackingVH to hold forward decl. This one is for RecordType. | Devang Patel | 2009-11-16 | 1 | -0/+1 |
| * | Parallel fix to r88951: use TrackingVH to hold forward decl. | Eli Friedman | 2009-11-16 | 1 | -1/+2 |
| * | Fix valgrind uninitialized error. | Eli Friedman | 2009-11-16 | 1 | -4/+6 |
| * | Use TrackingVH to hold forward decl. | Devang Patel | 2009-11-16 | 1 | -1/+2 |
| * | Canonicalize the type before trying to create a debug type. | Anders Carlsson | 2009-11-14 | 1 | -26/+26 |
| * | Have CGDebugInfo::getOrCreateType cache the QualType instead of having every ... | Anders Carlsson | 2009-11-14 | 1 | -19/+4 |
| * | Do not store DIDescriptor directly into a container. Store MDNode directly, t... | Devang Patel | 2009-11-13 | 1 | -14/+13 |
| * | "Attach debug info with llvm instructions" mode was enabled a month ago. Now... | Devang Patel | 2009-11-12 | 1 | -31/+14 |
| * | Use getNameAsCString() instead of getName().data() | Devang Patel | 2009-11-12 | 1 | -13/+13 |
| * | Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. | Chandler Carruth | 2009-11-12 | 1 | -5/+5 |
| * | Do not use StringRef while using DebugInfo interface. | Devang Patel | 2009-11-12 | 1 | -37/+30 |
| * | Do not eagerly set stop point for arguments. This misleads the debugger in id... | Devang Patel | 2009-11-11 | 1 | -4/+19 |
| * | Attach location info with llvm.dbg.declare. | Devang Patel | 2009-11-10 | 1 | -1/+4 |
| * | Revert r86315 and add Type::FixedWidthInt to the FIXME cases. | Anders Carlsson | 2009-11-07 | 1 | -0/+2 |
| * | Do not assert if debug info for certain type is not generated. | Devang Patel | 2009-11-07 | 1 | -1/+0 |
| * | Do not emit linkage name for global variables. It confuses gdb, because it pi... | Devang Patel | 2009-11-07 | 1 | -1/+3 |
| * | Simplify the debug info code, handle lvalue references and template specializ... | Anders Carlsson | 2009-11-06 | 1 | -13/+31 |
| * | Handle QualifiedNameType and SubstTemplateTypeParmType types in CGDebugInfo::... | Anders Carlsson | 2009-11-06 | 1 | -0/+11 |
| * | Don't assert when trying to generate debug info for vector types. This needs ... | Anders Carlsson | 2009-11-06 | 1 | -0/+4 |
| * | Instead of returning a null DIType for unhandled types, assert. | Anders Carlsson | 2009-11-06 | 1 | -9/+1 |
| * | Enable debug info for global variables at -O1+ | Devang Patel | 2009-11-05 | 1 | -7/+0 |
| * | Fixup the return type of functions. | Mike Stump | 2009-10-23 | 1 | -2/+2 |
| * | Do not eagerly cache DITypes because it allows real struct type to be shadowe... | Devang Patel | 2009-10-20 | 1 | -31/+58 |
| * | Encode global variable name in debug info. | Devang Patel | 2009-10-20 | 1 | -2/+2 |
| * | Remove the ConstantArrayType subtypes. This information is preserved in the | John McCall | 2009-10-16 | 1 | -2/+0 |