|  | Commit message (Collapse) | Author | Age | Files | Lines | 
|---|
| | 
| 
| 
| 
| 
| | minor fixes (NFC).
llvm-svn: 294813 | 
| | 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| 
| | We had various variants of defining dump() functions in LLVM. Normalize
them (this should just consistently implement the things discussed in
http://lists.llvm.org/pipermail/cfe-dev/2014-January/034323.html
For reference:
- Public headers should just declare the dump() method but not use
  LLVM_DUMP_METHOD or #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
- The definition of a dump method should look like this:
  #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
  LLVM_DUMP_METHOD void MyClass::dump() {
    // print stuff to dbgs()...
  }
  #endif
llvm-svn: 293359 | 
| | 
| 
| 
| 
| 
| 
| | All the methods are already marked with
LLVM_DUMP_METHOD.
llvm-svn: 279428 | 
| | 
| 
| 
| 
| 
| 
| 
| | r259192 post commit comment.
clang part in r259232, this is the LLVM part of the patch.
llvm-svn: 259240 | 
| | 
| 
| 
| | llvm-svn: 256163 | 
| | 
| 
| 
| 
| 
| | Didn't see these calls in my release build locally when testing.
llvm-svn: 228254 | 
| | 
| 
| 
| | llvm-svn: 228244 | 
| | 
| 
| 
| 
| 
| | check instead of comparing to nullptr.
llvm-svn: 206129 | 
| | 
| 
| 
| 
| 
| 
| 
| | "#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)"
No functional change. Update r163344.
llvm-svn: 163679 | 
| | 
| 
| 
| 
| 
| | No functional change.
llvm-svn: 163344 | 
| | 
| 
| 
| | llvm-svn: 148493 | 
| | 
| 
| 
| 
| 
| | return, and the printer accept, an annotation string which can be passed through if the client cares about annotations.
llvm-svn: 139876 | 
| | 
| 
| 
| 
| 
| | MC-based InstPrinters to print them out.  Enhance the ARM and X86 InstPrinter's to do so in verbose mode.
llvm-svn: 139820 | 
| | 
| 
| 
| | llvm-svn: 104696 | 
| | 
| 
| 
| | llvm-svn: 99216 | 
| | 
| 
| 
| 
| 
| | printing them.
llvm-svn: 93699 | 
| | 
| 
| 
| | llvm-svn: 92635 | 
| | 
| 
| 
| 
| 
| | MBB labels like everything else.
llvm-svn: 81628 | 
| | 
| 
| 
| 
| 
| 
| | and fix a few things using << on MCSymbols to use ->print(). No
functionality change other than unbreaking my previous patch.
llvm-svn: 80890 | 
| | 
| 
| 
| 
| 
| | Also, use MCInst::print instead of custom code in MCAsmPrinter.
llvm-svn: 80575 | 
|  | llvm-svn: 80231 |