1. 1b2eb0e eliminate the now-unneeded context argument of MBB::getSymbol() by Chris Lattner · 15 years ago
  2. 11d53c1 rearrange MCContext ownership. Before LLVMTargetMachine created it by Chris Lattner · 15 years ago
  3. 150ae11 Fix LLVM build when the user specifies CPPFLAGS on the make command line. by Jeffrey Yasskin · 15 years ago
  4. d62f1b4 inline GetGlobalValueSymbol into the rest its callers and remove it. by Chris Lattner · 15 years ago
  5. dff4b4c Change the Value argument to eliminateFrameIndex to a type-tagged value. This by Jim Grosbach · 15 years ago
  6. 3c91b05 Avoid using DIDescriptor.isNull(). by Devang Patel · 15 years ago
  7. 0ef3fa6 Revert r97947. by Devang Patel · 15 years ago
  8. d8cc5d5 Avoid using DIDescriptor.isNull(). by Devang Patel · 15 years ago
  9. 992e619 Teach the pic16 target to recognize pic16-*-* triples. by John McCall · 15 years ago
  10. 7c306da Sink InstructionSelect() out of each target into SDISel, and rename it by Chris Lattner · 15 years ago
  11. 46ada19 Remove dead parameter passing. by Bill Wendling · 15 years ago
  12. 20c51be The cloner has nothing to do if any of the main or ISR entrypoints are not by Sanjiv Gupta · 15 years ago
  13. 2b00702 Reapply things reverted back in 97220, with the fixed test case. by Sanjiv Gupta · 15 years ago
  14. 727cf62 Revert r97211 and r97213 to get the build green again. by Chandler Carruth · 15 years ago
  15. 651d85c Currently in LLVM, names of libcalls are assigned during TargetLowering by Sanjiv Gupta · 15 years ago
  16. 917733e Before converting an operand to mem, check if it is legal to do so. by Sanjiv Gupta · 15 years ago
  17. e6ba0b5 Each field of auxiliary debug entry is only 1 byte long. by Sanjiv Gupta · 15 years ago
  18. 54de8c1 remove dupes now. by Chris Lattner · 15 years ago
  19. bebe68e move #includes earlier. by Chris Lattner · 15 years ago
  20. 7310fe4 Remap the call sites of a shared function in interrupt line functions. by Sanjiv Gupta · 15 years ago
  21. d6d9fb5 Re-factoring. by Sanjiv Gupta · 15 years ago
  22. 94c3ddb Added routine to clone the body of a function and maintain a map of already by Sanjiv Gupta · 15 years ago
  23. 139eda6 Added a function to clone locals of a function.( which for pic16 are globals by Sanjiv Gupta · 15 years ago
  24. 11979aa Removed header files from .h by adding forward decls. by Sanjiv Gupta · 15 years ago
  25. e74c3ba Initial implementation of PIC16 Cloner pass. by Sanjiv Gupta · 15 years ago
  26. 7643ca5 The code section for an ISR has a specific address. by Sanjiv Gupta · 15 years ago
  27. 014bf21 Split SelectionDAGISel::IsLegalAndProfitableToFold to by Evan Cheng · 15 years ago
  28. 74a6a79 Remove an assumption of default arguments. This is in anticipation of a by David Greene · 15 years ago
  29. 44de682 fixes to pagesel/banksel inserter. by Sanjiv Gupta · 15 years ago
  30. f451cb8 Fix "the the" and similar typos. by Dan Gohman · 15 years ago
  31. 8e089a9 print all the newlines at the end of instructions with by Chris Lattner · 15 years ago
  32. 99d8061 rename printMachineInstruction -> EmitInstruction by Chris Lattner · 15 years ago
  33. 022d9e1 Revert 95130. by Evan Cheng · 15 years ago
  34. 56591ab refactor code so that LLVMTargetMachine creates the asmstreamer and by Chris Lattner · 15 years ago
  35. 9426196 Pass callsite return type to TargetLowering::LowerCall and use that to check sibcall eligibility. by Evan Cheng · 15 years ago
  36. 12ea66a Replace strcpy with memcpy when we have the length around anyway. by Benjamin Kramer · 15 years ago
  37. 0c439eb Eliminate target hook IsEligibleForTailCallOptimization. by Evan Cheng · 15 years ago
  38. cee6332 Eliminate SetDirective, and replace it with HasSetDirective. by Chris Lattner · 15 years ago
  39. f71cb01 add a new MachineBasicBlock::getSymbol method, replacing by Chris Lattner · 15 years ago
  40. 1e459c4 don't bother setting the AsmPrinter::MF ivar, now that by Chris Lattner · 15 years ago
  41. 43b5f93 make -fno-rtti the default unless a directory builds with REQUIRES_RTTI. by Chris Lattner · 15 years ago
  42. e73a31f Stop building RTTI information for *most* llvm libraries. Notable by Chris Lattner · 15 years ago
  43. 8eeba35 revert 93934, removing the MCAsmInfo endianness bit. I can't by Chris Lattner · 15 years ago
  44. c7b8814 give MCAsmInfo a 'has little endian' bit. This is unfortunate, but by Chris Lattner · 15 years ago
  45. 74bfe21 Now that we have everything nicely factored (e.g. asmprinter is not by Chris Lattner · 15 years ago
  46. 10b318b now that MCSymbol::print doesn't use it's MAI argument, we can by Chris Lattner · 15 years ago
  47. 6b61f58 Replace DebugLocTuple with DILocation. by Devang Patel · 15 years ago
  48. 9ab19f2 eliminate uses of mangler and simplify code. by Chris Lattner · 15 years ago
  49. ef4e536 get pic16 off CurrentFnName by Chris Lattner · 15 years ago
  50. 5c40e69 remove the string form of printVisibility. by Chris Lattner · 15 years ago
  51. eeb3a00 Change SelectCode's argument from SDValue to SDNode *, to make it more by Dan Gohman · 15 years ago
  52. 223497e Extern declaration for unordered.f32 libcall was not being emitted. Fixed that. by Sanjiv Gupta · 15 years ago
  53. 917283a Fixed llc crash for zext (i1 -> i8) loads. by Sanjiv Gupta · 15 years ago
  54. 8f17a36 Allow targets to specify the return type of libcalls that are generated for floating point comparisons, rather than hard-coding them as i32. by Sanjiv Gupta · 15 years ago
  55. 76d2f9a Reapply 91904. by Sanjiv Gupta · 15 years ago
  56. 7fb0ead Added missing patterns for subtract instruction. by Sanjiv Gupta · 15 years ago
  57. 6d48855 Reverting back 91904. by Sanjiv Gupta · 15 years ago
  58. 6650020 by Sanjiv Gupta · 15 years ago
  59. 3ea3c24 Add more plumbing. This time in the LowerArguments and "get" functions which by Bill Wendling · 15 years ago
  60. d4f84da Remove unused variable (noticed by clang++). by Daniel Dunbar · 15 years ago
  61. bcfd12a Emit direction operand in binary insns that stores in memory. by Sanjiv Gupta · 15 years ago
  62. 08bd440 by Sanjiv Gupta · 15 years ago
  63. 1c3451f Avoid some possibly unsafe uses of StringRef::data(). by Benjamin Kramer · 15 years ago
  64. 65dbc90 Use StringRef (again) in DebugInfo interface. by Devang Patel · 15 years ago
  65. 9a501cf revert 88761 as it fails builds. by Sanjiv Gupta · 15 years ago
  66. 6fb01a7 Fix debug info crashes for PIC16. by Sanjiv Gupta · 15 years ago
  67. 1924aab by David Greene · 15 years ago
  68. b9c2fd9 by David Greene · 15 years ago
  69. 3f2bf85 by David Greene · 15 years ago
  70. 59a9178 indicate what the native integer types for the target are. Please verify. by Chris Lattner · 15 years ago
  71. 73bb251 Remove uninteresting and confusing debug output. by Dan Gohman · 15 years ago
  72. 533297b Rename usesCustomDAGSchedInserter to usesCustomInserter, and update a by Dan Gohman · 15 years ago
  73. e70b897 Remove unnecessary gotos to fall-thru successors. by Sanjiv Gupta · 15 years ago
  74. 8b5af25 Revert r85134, it breaks mingw build by Anton Korobeynikov · 15 years ago
  75. be9e763 Make PIC16 overlay a loadable pass. by Sanjiv Gupta · 15 years ago
  76. e1ef91d Reapply 85006 with a minor fix. by Sanjiv Gupta · 15 years ago
  77. f5a86f4 Remove includes of Support/Compiler.h that are no longer needed after the by Nick Lewycky · 15 years ago
  78. 6726b6d Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. by Nick Lewycky · 15 years ago
  79. ecb28f2 Revert back 85006 for now as it breaks PIC16 tests. by Sanjiv Gupta · 15 years ago
  80. 209e6c6 Adding support for placing global objects in shared data memory. by Sanjiv Gupta · 15 years ago
  81. c5e5498 fix warning. by Chris Lattner · 15 years ago
  82. a55d33d Revert r84764, it breaks mingw build by Anton Korobeynikov · 15 years ago
  83. 36a9c8f Build shared lib instead of an archive. by Sanjiv Gupta · 15 years ago
  84. 4e4bba5 Add a pass to overlay pic16 data sections for function frame and automatic by Sanjiv Gupta · 15 years ago
  85. 2edef7e This file is replaeced by PIC16Section.h. by Sanjiv Gupta · 15 years ago
  86. 6f892bb Update CMake file. by Benjamin Kramer · 15 years ago
  87. 5386a35 Cleaned up some code. No functionality change. by Sanjiv Gupta · 15 years ago
  88. 5814fef Add files Sanjiv forgot. by Benjamin Kramer · 15 years ago
  89. 753ec15 Re-apply 84180 with the fixed test case. by Sanjiv Gupta · 15 years ago
  90. 1ead150 Revert "Complete Rewrite of AsmPrinter, TargetObjectFile based on new by Daniel Dunbar · 15 years ago
  91. 8da373c Complete Rewrite of AsmPrinter, TargetObjectFile based on new PIC16Section class by Sanjiv Gupta · 15 years ago
  92. cf1e5be Few changes to comply with new DebugInfo Metadata representation. by Sanjiv Gupta · 15 years ago
  93. 1619dc3 s/DebugLoc.CompileUnit/DebugLoc.Scope/g by Devang Patel · 15 years ago
  94. b58f498 Add register-reuse to frame-index register scavenging. When a target uses by Jim Grosbach · 15 years ago
  95. e3cc3f3 Instead of printing unnecessary basic block labels as labels in by Dan Gohman · 15 years ago
  96. af0e272 Update processDebugLoc() so that it can be used to process debug info before and after printing an instruction. by Devang Patel · 15 years ago
  97. b0fdedb Use MachineInstr as an processDebugLoc() argument. by Devang Patel · 15 years ago
  98. c4c39fa Fix a comment typo. by Bob Wilson · 15 years ago
  99. 5ccdd10 Remove std::string uses from DebugInfo interface. by Devang Patel · 15 years ago
  100. ce31910 Fix PR4926. When target hook EmitInstrWithCustomInserter() insert new basic blocks and update CFG, it should also inform sdisel of the changes so the phi source operands will come from the right basic blocks. by Evan Cheng · 15 years ago