1. 9a7ce7a Add a RUN: line so this test doesn't fail. by Reid Spencer · 19 years ago
  2. c29e126 add support for the bitconvert node by Chris Lattner · 19 years ago
  3. 28b5b1c add support for vector->vector casts by Chris Lattner · 19 years ago
  4. 06ac6ab Add a note, this code should be moved to the dag combiner. by Chris Lattner · 19 years ago
  5. 8ed32f6 minor changes so that GCC builtin can be specified before the Intrinsic info, by Chris Lattner · 19 years ago
  6. b2f6c00 Teach the strip pass to strip type names in addition to value names. This by Chris Lattner · 19 years ago
  7. 0da3130 allow the GCCBuiltinName field to be optional by Chris Lattner · 19 years ago
  8. 3d11bee Update doc to reflect changes in subprogram and block descriptors. by Jim Laskey · 19 years ago
  9. 9d0ff8e Expand subprogram and added block descriptor. by Jim Laskey · 19 years ago
  10. 26c2e73 no heap is happening here by Andrew Lenharth · 19 years ago
  11. ace0565 better check by Andrew Lenharth · 19 years ago
  12. 3299cae remove qsort for now by Andrew Lenharth · 19 years ago
  13. 513d19b Also requires -mattr=-sse3 by Evan Cheng · 19 years ago
  14. 0c3a0b6 allow field sensitivity to be a tunable parameter by Andrew Lenharth · 19 years ago
  15. 133decd Update scheduling info for vrsave instruction by Nate Begeman · 19 years ago
  16. 4bebcdb Handle one offset with growth case seen in povray. Namely, if we have an offset, by Andrew Lenharth · 19 years ago
  17. 24b1ea1 improve mem intrinsics and add a few things povray uses by Andrew Lenharth · 19 years ago
  18. 71c3bc3 Fix VC++ build error. by Jeff Cohen · 19 years ago
  19. ad45b00 remove typo by Chris Lattner · 19 years ago
  20. fda6aff Autogenerate a table of intrinsic names, so we can map from intrinsic ID to by Chris Lattner · 19 years ago
  21. 3f8b891 Autogenerate code to map from GCC builtin to LLVM intrinsic. by Chris Lattner · 19 years ago
  22. dfdcd5b Set TargetPrefix on target-specific intrinsics. That way, in theory, different by Chris Lattner · 19 years ago
  23. 230bd09 Fixed a typo in the vsetfp examples. by Robert Bocchino · 19 years ago
  24. 8949de2 Split the 'vset' instruction into two instructions, 'vsetint' and by Robert Bocchino · 19 years ago
  25. 80626e9 Update this to match the documentation in the GC doc and to match actual by Chris Lattner · 19 years ago
  26. 840064e Fix the gcread/gcwrite intrinsic specifications, fixing by Chris Lattner · 19 years ago
  27. 7538f4b Bugfix, unbreaking CodeGen/PowerPC/cttz.ll by Chris Lattner · 19 years ago
  28. bb63627 Fix an et-forest memory leak. Patch by Daniel Berlin. by Chris Lattner · 19 years ago
  29. cbd3cdd add a note by Chris Lattner · 19 years ago
  30. 4d9b10b Reflect the fact that empty strings can be expressed as null. by Jim Laskey · 19 years ago
  31. 2140798 1. Use null for serialized empty strings. by Jim Laskey · 19 years ago
  32. cec12a5 Bring debugging information up to date. by Jim Laskey · 19 years ago
  33. a08610c Fix an off by one error that caused PPC LLC failures last night. by Chris Lattner · 19 years ago
  34. e9efecb Implement a FIXME, recusively reassociating by Chris Lattner · 19 years ago
  35. 95f6553 new testcase from a FIXME in the code by Chris Lattner · 19 years ago
  36. 895b392 extract some code into a method, no functionality change by Chris Lattner · 19 years ago
  37. ad5a3a0 transformation implemented by Chris Lattner · 19 years ago
  38. 22a66c4 Promote shifts by a constant to multiplies so that we can reassociate by Chris Lattner · 19 years ago
  39. 000c7c4 Test that we can reassociate (x<<1)+(y<<1) -> (X+Y)<<1. by Chris Lattner · 19 years ago
  40. 09a053a Allow a sequence of digits at the end of the directory name when trying to by Reid Spencer · 19 years ago
  41. b7b8317 Change llvm.cs.uiuc.edu -> llvm.org by Reid Spencer · 19 years ago
  42. 767a25b Add a newline at the end to avoid gcc warnings. by Reid Spencer · 19 years ago
  43. 9dce2b3 Convert llvm.cs.uiuc.edu -> llvm.org by Reid Spencer · 19 years ago
  44. cd143fc Change docs for llvm.cs.uiuc.edu -> llvm.org by Reid Spencer · 19 years ago
  45. 05fe4b0 Changes docs for llvm.cs.uiuc.edu -> llvm.org by Reid Spencer · 19 years ago
  46. 5a588a9 1. Handle removal of all arguments for a morphed intrinsic. by Jim Laskey · 19 years ago
  47. ea6f8ce Remove the use of llvm.dbg.declare. by Jim Laskey · 19 years ago
  48. 9c543b2 PPC LSR pass should use target lowering hooks. by Evan Cheng · 19 years ago
  49. c4c6257 Added getTargetLowering() to TargetMachine. Refactored targets to support this. by Evan Cheng · 19 years ago
  50. e617b08 Update by Evan Cheng · 19 years ago
  51. 30b37b5 Add LSR hooks. by Evan Cheng · 19 years ago
  52. a84b1c7 Added getTargetLowering() - returns DAG lowering info. by Evan Cheng · 19 years ago
  53. d277f2c Added target lowering hooks which LSR consults to make more intelligent by Evan Cheng · 19 years ago
  54. 8724215 Handle builtins that directly correspond to GCC builtins. by Chris Lattner · 19 years ago
  55. 022f64f emit a mapping from LLVM intrinsic -> GCC builtins. by Chris Lattner · 19 years ago
  56. 18faf5d Verify that packed type operands have the right size and base type. by Chris Lattner · 19 years ago
  57. 8ae7a33 Add a first ppc altivec intrinsic. Add packed type support. by Chris Lattner · 19 years ago
  58. 1877ec9 For functions that use vector registers, save VRSAVE, mark used by Chris Lattner · 19 years ago
  59. 7abddda Optimizing to calloc() to malloc() + memset() can be bad on some platforms. by Evan Cheng · 19 years ago
  60. ac0f8f2 make sure dead token factor nodes are removed by the dag combiner. by Chris Lattner · 19 years ago
  61. a136429 Bring makefile back into compliance with standard by using by Reid Spencer · 19 years ago
  62. f4321a3 Handle the removal of the debug chain. by Jim Laskey · 19 years ago
  63. 2e8a77f remove two implemented items by Chris Lattner · 19 years ago
  64. 947c289 Fold X+Y -> X|Y when safe. This implements: by Chris Lattner · 19 years ago
  65. f4f5f6b new testcase by Chris Lattner · 19 years ago
  66. b6b17ff I can't convince myself that this is safe, remove the recursive call. by Chris Lattner · 19 years ago
  67. 79dbea5 add a couple of missing folds by Chris Lattner · 19 years ago
  68. 8f4191d For targets with FABS/FNEG support, lower copysign to an integer load, by Chris Lattner · 19 years ago
  69. 64ce964 Fix a couple of bugs that broke the alpha tester build by Chris Lattner · 19 years ago
  70. 3faad49 Handle cracked instructions in dispatch group formation. by Chris Lattner · 19 years ago
  71. fd97734 Mark instructions that are cracked by the PPC970 decoder as such. by Chris Lattner · 19 years ago
  72. 88d211f Several big changes: by Chris Lattner · 19 years ago
  73. fc3549e Don't advance the hazard recognizer when there are no hazards and no instructions by Chris Lattner · 19 years ago
  74. b221503 Chain operands aren't real uses: they don't require the full latency of the by Chris Lattner · 19 years ago
  75. 53fbf2a As a pending queue data structure to keep track of instructions whose by Chris Lattner · 19 years ago
  76. aaf1582 Mark llvm.stacksave as only reading memory, this fixes by Chris Lattner · 19 years ago
  77. 8469031 rename priorityqueue -> availablequeue. When a node is scheduled, remember by Chris Lattner · 19 years ago
  78. c1c078c Make CurrCycle a local var instead of an instance var by Chris Lattner · 19 years ago
  79. 7d82b00 Move some methods around so that BU specific code is together, TD specific code by Chris Lattner · 19 years ago
  80. 309cf8a merge preds/chainpreds -> preds set merge succs/chainsuccs -> succs set by Chris Lattner · 19 years ago
  81. 9c2c386 blr is a branch too by Chris Lattner · 19 years ago
  82. 74cfb7d add an example by Chris Lattner · 19 years ago
  83. c20995e add a note by Chris Lattner · 19 years ago
  84. 442b32b Fix PR681 by using the standard Lengauer and Tarjan algorithm for dominator by Nate Begeman · 19 years ago
  85. 78167fa fix pasto in generate assertion msg by Chris Lattner · 19 years ago
  86. 2352ce9 Doh! by Evan Cheng · 19 years ago
  87. 0937103 Added a parameter to control whether Constant::getStringValue() would chop by Evan Cheng · 19 years ago
  88. 7907b69 remove some dead code by Chris Lattner · 19 years ago
  89. 682365d remove ShouldEmitDebugFunctions, a hack to support llvm-db via the jit by Chris Lattner · 19 years ago
  90. 7d74d11 scrape out bits of llvm-db by Chris Lattner · 19 years ago
  91. 89b1926 Remove UnixLocalInferiorProcess: debugging via the JIT isn't a good idea. by Chris Lattner · 19 years ago
  92. 502fe92 Simplify this testcase by Chris Lattner · 19 years ago
  93. be3c2f2 reorder these to make it work with static libraries by Chris Lattner · 19 years ago
  94. e928a72 teach the JIT to encode vector registers by Chris Lattner · 19 years ago
  95. 969ccf8 Fix another broken intrinsic. by Chris Lattner · 19 years ago
  96. 31e66e8 weak globals on darwin require an extra load, breaking this test by Chris Lattner · 19 years ago
  97. 5d832dc Fix incorrect definitions of these intrinsics, which broke a bunch of by Chris Lattner · 19 years ago
  98. a34b6f8 Move simple-selector-specific types to the simple selector. by Chris Lattner · 19 years ago
  99. 20a4921 Simplify the interface to the schedulers, to not pass the selected heuristicin. by Chris Lattner · 19 years ago
  100. 37cb415 Simplify the interface to the schedulers, to not pass the selected heuristic in. by Chris Lattner · 19 years ago