1. 37442b7 Minor www site formating improvements. by Edward O'Callaghan · 15 years ago
  2. 912538b Revert recent bitcode writer patches. by Devang Patel · 15 years ago
  3. 27d703b llvm-gcc checks the static asm variable is valid in ValidateRegisterVariable. Make this work for PPC. by Bill Wendling · 15 years ago
  4. 0a0193e switch ValueMap to using AssertingVH. This is an old patch I had laying by Chris Lattner · 15 years ago
  5. 4b3d572 No really, it's unused. by Daniel Dunbar · 15 years ago
  6. a277f4e Remove unused function. by Daniel Dunbar · 15 years ago
  7. 214e223 Remove now unused Module argument to createTargetMachine. by Daniel Dunbar · 15 years ago
  8. 2822e17 Fixed now. by Bill Wendling · 15 years ago
  9. c4f8861 Add test for PR4678 by Rafael Espindola · 15 years ago
  10. d9a05eb XFAIL for the moment. by Bill Wendling · 15 years ago
  11. 13ed1e2 Remove dead code. by Devang Patel · 15 years ago
  12. 2453c40 Fix MDString Abbrev setup. by Devang Patel · 15 years ago
  13. d701aa7 Constants and Metadata share ValueList. This means they must be emitted interleaved (using appropriate BLOCK_IDs) otherwise ValuePtrs index gets out of sync. by Devang Patel · 15 years ago
  14. f0409ea Remove ARM specific getInlineAsmLength. We'll rely on the simpler (and faster) generic algorithm for now. If more accurate computation is needed, we'll rely on the disassembler. by Evan Cheng · 15 years ago
  15. 27934da Load / store multiple pass fixes for Thumb2. Not enabled yet. by Evan Cheng · 15 years ago
  16. fa2ea1a Emit sub r, #c instead of transforming it to add r, #-c if c fits in 8-bit. This is a bit of pre-mature optimization. 8-bit variant makes it likely it will be narrowed to a 16-bit instruction. by Evan Cheng · 15 years ago
  17. a599bff Lower Neon VLD* intrinsics to custom DAG nodes, and manually allocate the by Bob Wilson · 15 years ago
  18. 916afdb Minor cleanup. No functional changes intended. by Bob Wilson · 15 years ago
  19. 206ad10 Propogate the Depth argument when calling by Dan Gohman · 15 years ago
  20. f6e75c3 Update CMake files. by Ted Kremenek · 15 years ago
  21. 290c2f5 eliminate CurrentSection, rename CurrentSection_ -> CurrentSection, make it private, by Chris Lattner · 15 years ago
  22. c6fdced Kill off SwitchToDataSection and SwitchToTextSection, woo. by Chris Lattner · 15 years ago
  23. 7b59e24 remove an unneeded section switch. by Chris Lattner · 15 years ago
  24. 2dfddee switch ppc to using SwitchToSection instead of textual section stuff. by Chris Lattner · 15 years ago
  25. 4771e16 Keep track of metadata used by other metadata. by Devang Patel · 15 years ago
  26. 5e44e47 use TLOF to compute the section for a function instead of by Chris Lattner · 15 years ago
  27. 5544c6c Minor whitespace fix, so this doesn't look like a unary *. by Dan Gohman · 15 years ago
  28. 8bb9c92 Add -disable-output. Thanks Bill! by Dan Gohman · 15 years ago
  29. f61159b convert macho stub emission to use SwitchToSection instead of textual sections. by Chris Lattner · 15 years ago
  30. 865aaf0 hoist some common code out of a switch by Chris Lattner · 15 years ago
  31. 43ee5f7 Add a new Constant::getIntegerValue helper function, and convert a by Dan Gohman · 15 years ago
  32. c8bfb7a this really shouldn't switch sections without telling the asmprinter, but by Chris Lattner · 15 years ago
  33. b525766 by David Greene · 15 years ago
  34. 11e9657 Eliminate textual section switching from the x86 backend, one by Chris Lattner · 15 years ago
  35. a6d6586 Lower CONCAT_VECTOR during legalization instead of matching it during isel. by Bob Wilson · 15 years ago
  36. 980daea Fix Bug 4657: register scavenger asserts with subreg lowering by Jakob Stoklund Olesen · 15 years ago
  37. ea1c9b7 Minor stylistic cleanups in the Blackfin target. by Jakob Stoklund Olesen · 15 years ago
  38. cdc0654 Make SimplifyDemandedUseBits generate vector constants where by Eli Friedman · 15 years ago
  39. 38c3988 make getObjFileLowering() return a non-const reference. by Chris Lattner · 15 years ago
  40. 9a7a4d2 remove a dead switch directive, replace it with some by Chris Lattner · 15 years ago
  41. 6e7a85c Revert 77974. It breaks 3 of the ARM tests. by Bob Wilson · 15 years ago
  42. d2aee8c Remove neverHasSideEffects on MMX_MOVD64rrv164 since it has a matching pattern. by Evan Cheng · 15 years ago
  43. 1763766 eliminate textual section switching from intel asm printer. by Chris Lattner · 15 years ago
  44. d54a6b8 make SwitchToSection accept null sections for now. by Chris Lattner · 15 years ago
  45. d1a919e Change C, CBE, MSIL to not provide target data via getTargetData(). by Daniel Dunbar · 15 years ago
  46. 2caf1b2 Allow targets to custom handle softening of results or operands before trying the standard stuff. by Sanjiv Gupta · 15 years ago
  47. 4e02eb0 Provide target data from the module if the target machine doesn't have any. by Daniel Dunbar · 15 years ago
  48. d5fe92e llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like "LLVM ERROR: llvm: error:" or "LLVM ERROR: ERROR:". by Benjamin Kramer · 15 years ago
  49. 0144280 Unbreak win64 compilation callback. by Anton Korobeynikov · 15 years ago
  50. eed0ff1 Fix a coaelescer bug. If a copy val# is extended to eliminate a non-trivially coalesced copy, and the copy kills its source register. Trim the source register's live range to the last use if possible. This fixes up kill marker to make the scavenger happy. by Evan Cheng · 15 years ago
  51. dd93f5e Create proper frame index for FP by Anton Korobeynikov · 15 years ago
  52. 6dde14b Perform bitconvert to proper type by Anton Korobeynikov · 15 years ago
  53. 4ab1553 Add 'Indirect' LocInfo class and use to pass __m128 on win64. Also minore fixes here and there (mostly __m64). by Anton Korobeynikov · 15 years ago
  54. 80cb8aa Cleanup Darwin MMX calling conv stuff - make the stuff more generic. This also fixes a subtle bug, when 6th v1i64 argument passed wrongly. by Anton Korobeynikov · 15 years ago
  55. cf6b739 Unbreak Win64 CC. Step one: honour register save area, fix some alignment and provide a different set of call-clobberred registers. by Anton Korobeynikov · 15 years ago
  56. 3e4c41a Remove the GCC path from libLTO. This has been superceded by setAssemblerPath. by Nick Lewycky · 15 years ago
  57. a82f883 Add NamedMDNode destructor. by Devang Patel · 15 years ago
  58. 8d632c1 Use movd instead of movq by Rafael Espindola · 15 years ago
  59. 0508471 Add FileUpdate tool, conditionally updates its output based on its input. by Daniel Dunbar · 15 years ago
  60. defc853 Fix a race condition in getting the process exit code on Win32. by Daniel Dunbar · 15 years ago
  61. 4bd03ab Remove now unused arguments from TargetRegistry::lookupTarget. by Daniel Dunbar · 15 years ago
  62. 9072c81 These are done. by Evan Cheng · 15 years ago
  63. 3c2d4bf Pass target triple string in to TargetMachine constructor. by Daniel Dunbar · 15 years ago
  64. 0c794b8 Fix the instruction encoding. by Rafael Espindola · 15 years ago
  65. cc2b67a Remove a bitcast that was a no-op. Thanks to Eli Friedman for noticing it. by Rafael Espindola · 15 years ago
  66. def390a Use movq to move 64 bits in and out of mmx registers. Fixes PR4669 by Rafael Espindola · 15 years ago
  67. a8e8984 Use the i12 variant of load / store opcodes if offset is zero. Now we pass all of multisource as well. by Evan Cheng · 15 years ago
  68. e2c7408 Remove -disable-mips-abicall and -enable-mips-absolute-call command-line by Eli Friedman · 15 years ago
  69. 5eca452 Restrict LDA to affine subscripts. by Andreas Bolka · 15 years ago
  70. 275872e Fix some comments referring to std::cerr. by Daniel Dunbar · 15 years ago
  71. 0ea8bf3 - s/DOUT/DEBUG(errs()/g - Tidy up some headers. by Bill Wendling · 15 years ago
  72. e28039c Move most targets TargetMachine constructor to only taking a target triple. by Daniel Dunbar · 15 years ago
  73. c20a6fd Expand LDA testcases. by Andreas Bolka · 15 years ago
  74. d558ea5 Add extra SEXT pattern. by Richard Osborne · 15 years ago
  75. 3bb9b9a The x86 jit doesn't generate a def_cfa_offset unwind instruction after the by Bill Wendling · 15 years ago
  76. 3be0340 Normalize Subtarget constructors to take a target triple string instead of by Daniel Dunbar · 15 years ago
  77. 1391cc1 Remove unneeded intrinsics from Blackfin backend. by Jakob Stoklund Olesen · 15 years ago
  78. a9a03f9 Fix the build for people with oprofile installed. by Nick Lewycky · 15 years ago
  79. 9a0b574 Empty arguments need to be quoted on Win32. by Daniel Dunbar · 15 years ago
  80. b36eb9d Fix issue in regscavenger when scavenging a callee-saved register that has not been spilled. by Jakob Stoklund Olesen · 15 years ago
  81. 7b4e503 One two many newlines at end of file LLVMContextImpl.cpp by Edward O'Callaghan · 15 years ago
  82. 83c9e6b Tweak svn:ignore more by Daniel Dunbar · 15 years ago
  83. b222956 Tweak svn:ignore by Daniel Dunbar · 15 years ago
  84. bf4fc28 Adjust comment to distinguish between target name and triple target name they by Daniel Dunbar · 15 years ago
  85. 079029b Fix no newline at end of LLVMContextImpl.cpp by Edward O'Callaghan · 15 years ago
  86. ece4818 Never add a kill flag to a constrained physical register in a two-addr instruction. by Jakob Stoklund Olesen · 15 years ago
  87. 0e6a4ef Scavenger asserts. by Jakob Stoklund Olesen · 15 years ago
  88. 6b30f5c Add some basic blackfin intrinsics. by Jakob Stoklund Olesen · 15 years ago
  89. 26a84d4 Add support for CPU features (i.e., bugs) and workarounds. by Jakob Stoklund Olesen · 15 years ago
  90. 63cc527 Inline assembly support for Blackfin. by Jakob Stoklund Olesen · 15 years ago
  91. 73b7bb7 Build Blackfin target with autoconf and cmake. by Jakob Stoklund Olesen · 15 years ago
  92. d950941 Analog Devices Blackfin back-end. by Jakob Stoklund Olesen · 15 years ago
  93. 4ea4804 Avoid forming a SELECT_CC in a type that the target doesn't by Dan Gohman · 15 years ago
  94. 7267734 Fix indentation. by Dan Gohman · 15 years ago
  95. cadb226 Add a comment. by Dan Gohman · 15 years ago
  96. a98634b Resync lea32addr and lea64addr. by Dan Gohman · 15 years ago
  97. e6864c1 Remove duplicated colons and spaces. by Benjamin Kramer · 15 years ago
  98. bcdbcb9 Handle <undef> flag in machine code verifier. by Jakob Stoklund Olesen · 15 years ago
  99. 18a4c16 move dwarf debug info section selection stuff from TAI to by Chris Lattner · 15 years ago
  100. 35039ac convert EHFrameSection to be managed by TLOF instead of TAI. by Chris Lattner · 15 years ago