1. dbee4b3 Fix typo spotted by Gabor Greif. by Nick Lewycky · 15 years ago
  2. 2353122 Clean up file, no functionality change. by Nick Lewycky · 15 years ago
  3. 9f9ca73 Move FunctionPassManagerImpl's dumpArguments and dumpPasses calls by Dan Gohman · 15 years ago
  4. e8e01b6 I forgot to update the prototype for LLVMBuildIntCast when correcting by Duncan Sands · 15 years ago
  5. e3ab75d Start catching LLVMContext misuse in the verifier. by Nick Lewycky · 15 years ago
  6. dc1472b In GlobalVariable::setInitializer, assert that the initializer has the by Jeffrey Yasskin · 15 years ago
  7. 46785e6 BuildIntCast takes an additional parameter, isSigned. by Duncan Sands · 15 years ago
  8. 746d546 Special case FixedStackPseudoSourceValueVal as well. Do we really need to differentiate PseudoSourceValueVal from FixedStackPseudoSourceValueVal at this level? by Evan Cheng · 15 years ago
  9. 2b1ffee Remove extraneous commit. by Eric Christopher · 15 years ago
  10. 04458e4 Print out something, even if it's non-parseable later when we've by Eric Christopher · 15 years ago
  11. afa5a34 Do not use StringRef in DebugInfo interface. by Devang Patel · 15 years ago
  12. d682a60 Reject duplicate case values in a switch, PR5450. by Chris Lattner · 15 years ago
  13. f06dca2 make this handle redefinition of malloc function with different prototype correctly by Victor Hernandez · 15 years ago
  14. 81cf432 Fix DenseMap iterator constness. by Jeffrey Yasskin · 15 years ago
  15. d65267e Fix MemoryBuffer::getSTDIN to *not* return null if stdin is empty, this is a lame API. by Daniel Dunbar · 15 years ago
  16. 47fc9d3 make this handle redefinition of malloc with different prototype correctly. by Chris Lattner · 15 years ago
  17. d6e5763 prune #include / layering violation by Chris Lattner · 15 years ago
  18. 4d81d97 Fit in 80 columns by Victor Hernandez · 15 years ago
  19. 9d0b704 Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions. by Victor Hernandez · 15 years ago
  20. 82ebca1 CallInst::CreateMalloc() and CallInst::CreateFree() need to create calls with correct calling convention by Victor Hernandez · 15 years ago
  21. 2928c83 Pass StringRef by value. by Daniel Dunbar · 15 years ago
  22. 7b550cc remove a bunch of extraneous LLVMContext arguments by Chris Lattner · 15 years ago
  23. df98761 Revert r86077 because it caused crashes in 179.art and 175.vpr on ARM by Victor Hernandez · 15 years ago
  24. 24f934d Update CreateMalloc so that its callers specify the size to allocate: by Victor Hernandez · 15 years ago
  25. 3ad70d5 Changes requested (avoid getFunction(), avoid Type creation via isVoidTy(), and avoid redundant isFreeCall cases) in feedback to r85176 by Victor Hernandez · 15 years ago
  26. c4775e4 remove a bunch of locking from LLVMContextImpl. Since only one thread by Chris Lattner · 15 years ago
  27. 4a7642e the verifier shouldn't modify the IR. by Chris Lattner · 15 years ago
  28. 660a4f3 fix an issue where the verifier would reject a function whose entry by Chris Lattner · 15 years ago
  29. d0ec235 Fix BlockAddress::replaceUsesOfWithOnConstant to correctly by Chris Lattner · 15 years ago
  30. cdfc940 Revert 85678/85680. The decision is to stay with the current form of by Chris Lattner · 15 years ago
  31. 7d83ebc Make blockaddress(@func, null) be valid, and make 'deleting a basic by Chris Lattner · 15 years ago
  32. dac8bde if basic blocks are destroyed while there are *just* BlockAddress' hanging by Chris Lattner · 15 years ago
  33. 3821176 make hasAddressTaken() constant time by storing a refcount in BB's subclass data. by Chris Lattner · 15 years ago
  34. 287db0c it isn't valid to take the address of the entry block. by Chris Lattner · 15 years ago
  35. 0ed1f42 Simplify this code and avoid an extra space character in the output. by Dan Gohman · 15 years ago
  36. a4c206f add sanity check for indbr. by Chris Lattner · 15 years ago
  37. eeb8ef1 Add a hasAddressTaken for BasicBlock. by Dan Gohman · 15 years ago
  38. 0eeb913 Previously, all operands to Constant were themselves constant. by Chris Lattner · 15 years ago
  39. 5d81bef 'static const void *X = &&y' can only be put in the by Chris Lattner · 15 years ago
  40. 73050e1 asmprinter support for BlockAddress. by Chris Lattner · 15 years ago
  41. 1e0dc8e when we tear down a module, we need to be careful to zap BlockAddress values. by Chris Lattner · 15 years ago
  42. ab21db7 rename indbr -> indirectbr to appease the residents of #llvm. by Chris Lattner · 15 years ago
  43. 2ee11ec IR support for the new BlockAddress constant kind. This is by Chris Lattner · 15 years ago
  44. 0323614 Rename lib/VMCore/ConstantsContext.h:ValueMap<> to ConstantUniqueMap<> to avoid by Jeffrey Yasskin · 15 years ago
  45. 50b6e33 Factor out redundancy from clone() implementations. by Devang Patel · 15 years ago
  46. f006b18 Rename MallocFreeHelper as MemoryBuiltins by Victor Hernandez · 15 years ago
  47. f9be95f add enough support for indirect branch for the feature test to pass by Chris Lattner · 15 years ago
  48. f352359 Type.h doesn't need to #include LLVMContext.h by Chris Lattner · 15 years ago
  49. f2becca Rename MallocHelper as MallocFreeHelper, since it now also identifies calls to free() by Victor Hernandez · 15 years ago
  50. 046e78c Remove FreeInst. by Victor Hernandez · 15 years ago
  51. 5a1033a Do not use expensive sort(). by Devang Patel · 15 years ago
  52. f5a86f4 Remove includes of Support/Compiler.h that are no longer needed after the by Nick Lewycky · 15 years ago
  53. 6726b6d Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces. by Nick Lewycky · 15 years ago
  54. 4a134af Remove ICmpInst::isSignedPredicate which was a reimplementation by Nick Lewycky · 15 years ago
  55. 44df023 Sink isTrueWhenEqual from ICmpInst to CmpInst. Add a matching isFalseWhenEqual by Nick Lewycky · 15 years ago
  56. dc4a745 Make DominanceFrontierBase::print's output prettier. by Dan Gohman · 15 years ago
  57. 66284e0 Auto-upgrade free instructions to calls to the builtin free function. by Victor Hernandez · 15 years ago
  58. 7b929da Remove AllocationInst. Since MallocInst went away, AllocaInst is the only subclass of AllocationInst, so it no longer is necessary. by Victor Hernandez · 15 years ago
  59. 9d89df1 Hide MetadataContext implementation details. by Devang Patel · 15 years ago
  60. f61b237 Fix getMDs() interface such that it does not expose implementation details. by Devang Patel · 15 years ago
  61. b5681b2 Using TrackingVH instead of WeakVH or WeakMetadataVH. by Devang Patel · 15 years ago
  62. d41fc65 Sort handler names to ensure deterministic behavior. by Devang Patel · 15 years ago
  63. ce6a1c9 Fix getHandlerNames() interface. Now it populate clinet supplied small vector with handler names. by Devang Patel · 15 years ago
  64. 921bdaa Use StringRef to construct MDString. by Devang Patel · 15 years ago
  65. 49b63a1 Remove meaningless const. Pass StringRef by value. by Devang Patel · 15 years ago
  66. 49708ad Derive metadata hierarchy from Value instead of User. by Devang Patel · 15 years ago
  67. ff233b8 Fix thinko noticed by Chris. by Benjamin Kramer · 15 years ago
  68. 8ba2d5b Rename msasm to alignstack per review. by Dale Johannesen · 15 years ago
  69. e31cd34 Remove pointless return; at end of function. by Benjamin Kramer · 15 years ago
  70. f8ea2e2 Simplify code. No intended functionality change. by Benjamin Kramer · 15 years ago
  71. f7ce17e Use StringRef. by Devang Patel · 15 years ago
  72. 028fa77 Do not use SmallVector to store MDNode elements. by Devang Patel · 15 years ago
  73. b5df28a Incorporate various suggestions Chris gave during metadata review. by Devang Patel · 15 years ago
  74. d9723e9 Cosmetic changes. by Devang Patel · 15 years ago
  75. 59d5aac Banish ConstantsLock. It's serving no purpose other than slowing things down by Owen Anderson · 15 years ago
  76. b2a33b46 various cleanups. by Chris Lattner · 15 years ago
  77. 3fc35c5 Fix test/Bindings/Ocaml/vmcore.ml. When IRBuilder::CreateMalloc was removed, by Nick Lewycky · 15 years ago
  78. 59c4eba Teach vm core to more aggressively fold 'trunc' constantexprs, by Chris Lattner · 15 years ago
  79. 2bb6f6a Emit newlines at the end of instructions too. by Nick Lewycky · 15 years ago
  80. 4e34a39 Remove unnecessary include. by Daniel Dunbar · 15 years ago
  81. a276c60 Remove MallocInst from LLVM Instructions. by Victor Hernandez · 15 years ago
  82. 13ad5aa Autoupgrade malloc insts to malloc calls. by Victor Hernandez · 15 years ago
  83. 5db2c52 Add copyMD to copy metadata from one instruction to another instruction. by Devang Patel · 15 years ago
  84. b01bbdc I don't see any point in having both eh.selector.i32 and eh.selector.i64, by Duncan Sands · 15 years ago
  85. 4360298 Add an "msasm" flag to inline asm as suggested in PR 5125. by Dale Johannesen · 15 years ago
  86. 740d0db by Devang Patel · 15 years ago
  87. 321333e Force memory use markers to have a ConstantInt for the size argument. by Nick Lewycky · 15 years ago
  88. 6a9291a Fix http://llvm.org/PR5160, to let CallbackVHs modify other ValueHandles on the by Jeffrey Yasskin · 15 years ago
  89. 885dffc add some more hooks to the C bindings, patch by Kenneth Uildriks! by Chris Lattner · 15 years ago
  90. 8a261e4 Add a form of addPreserved which takes a string argument, to allow passes by Dan Gohman · 15 years ago
  91. 7f93f4d Do not assume that the module is set. by Devang Patel · 15 years ago
  92. 83ed768 Make getPointerTo return a const PointerType* rather than by Duncan Sands · 15 years ago
  93. ac53a0b Introduce and use convenience methods for getting pointer types by Duncan Sands · 15 years ago
  94. cf0fe8d strength reduce a ton of type equality tests to check the typeid (Through by Chris Lattner · 15 years ago
  95. b13105f Requires element types in a constant initializer to match the element types of by Nick Lewycky · 15 years ago
  96. 4d7a206 Check for null MDNode element while printing comment. by Devang Patel · 15 years ago
  97. 1fb613c Assert that ConstantArrays are created with correctly-typed elements. by Jeffrey Yasskin · 15 years ago
  98. 2d5988d Print tag name for MDNodes that are used to encode debug info. by Devang Patel · 15 years ago
  99. 11716d7 by Devang Patel · 15 years ago
  100. 74da40a Add removeMD(). by Devang Patel · 15 years ago