- 134400b Fix a grammaro. by Reid Spencer · 18 years ago
- 01f56be A few changes: by Reid Spencer · 18 years ago
- 8a9bd92 Drop a policy. by Reid Spencer · 18 years ago
- f1491da Some more minor tweaks. by Reid Spencer · 18 years ago
- c767f00 Fix word usage. by Reid Spencer · 18 years ago
- 25f9b9b Add a missing . by Reid Spencer · 18 years ago
- 3eedbd3 Incorporate Chris Lattner's second round of feedback. by Reid Spencer · 18 years ago
- 27a0472 fix validation bug by Chris Lattner · 18 years ago
- ad85ba4 now that llvm-gcc3 is gone, life is significantly simpler and less scary by Chris Lattner · 18 years ago
- 31d0419 remove an obsolete question by Chris Lattner · 18 years ago
- e5ff008 remove obsolete path by Chris Lattner · 18 years ago
- c661d61 fix a warning by Chris Lattner · 18 years ago
- f76e7bb remove obsolete warning by Chris Lattner · 18 years ago
- bcb38cf There is no circular dependency between llvm and llvm-gcc anymore. stop by Chris Lattner · 18 years ago
- 78bade2 Incorporate Chris' first round of comments. by Reid Spencer · 18 years ago
- 21840b1 Refix CodeGen/Generic/switch-lower.ll. In contrast to my previous patch, by Chris Lattner · 18 years ago
- 64f150f From Dan Gohman: by Chris Lattner · 18 years ago
- d2b7cec Generalize TargetData strings, to support more interesting forms of data. by Chris Lattner · 18 years ago
- 879dfe1 Use brute-force algorithm for to_string. It doesn't have to be efficient by Reid Spencer · 18 years ago
- b42b411 sanity check for *basic* i128 arithmetic on all hosts. by Chris Lattner · 18 years ago
- c38fea8 better support for i128. by Chris Lattner · 18 years ago
- 4c948eb implement expand of truncate. This allows truncates from i128 to i64 to by Chris Lattner · 18 years ago
- f839ce7 Fix PR1198, by adding initial i128 support. Patch by Dan Gohman. by Chris Lattner · 18 years ago
- 727c235 new testcase, by Dan Gohman by Chris Lattner · 18 years ago
- 921a83a Well this isn't as ugly and it works better. At least gcc bootstraps again by Andrew Lenharth · 18 years ago
- db3faa6 Make some minor improvements to APInt: by Reid Spencer · 18 years ago
- 36e37d2 add a note by Chris Lattner · 18 years ago
- 4060296 Add missing closing parenthesis. by Reid Spencer · 18 years ago
- ae4f99d revert my previous switch lowering change, which miscompiles a few programs. by Chris Lattner · 18 years ago
- 7501605 Add space between // and the comment. by Lauro Ramos Venancio · 18 years ago
- 3630e78 Add ABI information to ARM subtarget. by Lauro Ramos Venancio · 18 years ago
- cf8270a Add a space between // and the comment. by Lauro Ramos Venancio · 18 years ago
- 13a3cee Add comment about original function argument alignment. by Lauro Ramos Venancio · 18 years ago
- bed9253 Fix tow grammaros that Bill Wendling noticed. by Reid Spencer · 18 years ago
- 876eaf1 According to ARM EABI, 8-bytes function arguments must be 8-bytes aligned. by Lauro Ramos Venancio · 18 years ago
- 7aa47b6 Add "original alignment" to function arguments flags. by Lauro Ramos Venancio · 18 years ago
- 9964d75 Fix a compilation error that caused the nightly test to fail. by Reid Spencer · 18 years ago
- 80483bb Clean up spelling mistakes. by Reid Spencer · 18 years ago
- 4e2fb7b Fix an HTML validation error. by Reid Spencer · 18 years ago
- bb15b1c Make the draft notice more prominent. by Reid Spencer · 18 years ago
- 26cf066 Add DeveloperPolicy.html by Reid Spencer · 18 years ago
- 8d0ac69 First draft of the LLVM Developer Policy. This document is a "first cut" by Reid Spencer · 18 years ago
- f00042a Switch UnaryOperators to default to passing names up by const char* when possible. by Chris Lattner · 18 years ago
- ec79b3d add a setName variant that takes a null-terminated string. This can be by Chris Lattner · 18 years ago
- 1893952 Use a SmallVector to reduce heap traffic. This speeds up bcreader 10% by Chris Lattner · 18 years ago
- 8c06509 fix a critical bug in smallvector, where it would destroy elements that are by Chris Lattner · 18 years ago
- d0e44c2 now that we can pass ranges into CallInst ctors, eliminate vector heap traffic by Chris Lattner · 18 years ago
- 133bab0 eliminate instruction ctors that take vectors. by Chris Lattner · 18 years ago
- 680f2f0 eliminate vector-related ctors by Chris Lattner · 18 years ago
- 10ac377 eliminate use of vector-related ctors by Chris Lattner · 18 years ago
- cf3d061 regenerate by Chris Lattner · 18 years ago
- 858d973 remove use of vector-related ctors by Chris Lattner · 18 years ago
- 990b849 eliminate vector-related allocations by Chris Lattner · 18 years ago
- c18470c eliminate a bunch of vector-related heap traffic by Chris Lattner · 18 years ago
- 9d2fda6 eliminate use of vector ctors by Chris Lattner · 18 years ago
- 93e985f Eliminate use of ctors that take vectors. by Chris Lattner · 18 years ago
- e433919 stop passing vector into ctors by Chris Lattner · 18 years ago
- 0c9f92e Allow any MachineBasicBlock (not just the entry block) to have live-in physical by Evan Cheng · 18 years ago
- 818d42f Fix switch lowering to order cases in zext order, which is how we emit the by Chris Lattner · 18 years ago
- b76f903 new testcase for PR1197 by Chris Lattner · 18 years ago
- d2dd150 Add invokeinst and callinst ctors that don't take vectors. by Chris Lattner · 18 years ago
- d54f432 remove some dead methods. by Chris Lattner · 18 years ago
- 7d9801d regenerate by Chris Lattner · 18 years ago
- c856c7a eliminate use of methods that take vectors as args by Chris Lattner · 18 years ago
- f7e804b I love non-deturminism. Returning objects with references to stack objects is a bad idea (TM). by Andrew Lenharth · 18 years ago
- 1bc3fa6 stop using me thods that take a vector by Chris Lattner · 18 years ago
- 1ccd185 stop using methods that take vectors. by Chris Lattner · 18 years ago
- 48d3c10 more notes by Chris Lattner · 18 years ago
- 08ba1de add a note by Chris Lattner · 18 years ago
- d93f00c 1. Make APInt::shl work correctly and more efficiently. by Zhou Sheng · 18 years ago
- 21ba3d7 Wrong value type. by Jim Laskey · 18 years ago
- dd8cec5 avoid creating a temporary string when reading the symbol table for a by Chris Lattner · 18 years ago
- 042ad36 Add new setName accessor which doesn't require creating a string. by Chris Lattner · 18 years ago
- 34a451d Fix build error on ARM. by Lauro Ramos Venancio · 18 years ago
- dec628e Switch ValueSymbolTable to use StringMap<Value*> instead of std::map<std::string, Value*> by Chris Lattner · 18 years ago
- fa48e96 Remove references to the now deprecated gccas and gccld. by Reid Spencer · 18 years ago
- 022e34d Update for llvm-gcc v4.0 usage. by Reid Spencer · 18 years ago
- 36f78c8 add #include by Chris Lattner · 18 years ago
- a96b4ee add new ShouldRehash method to factor out common code. Fix the dtor to not by Chris Lattner · 18 years ago
- 8adde28 regenerate by Chris Lattner · 18 years ago
- c02659f add #include by Chris Lattner · 18 years ago
- 65033ff do not allow hash table to be filled with tombstones. by Chris Lattner · 18 years ago
- 44dcd01 Add support for removing elements out of StringMap. by Chris Lattner · 18 years ago
- ec68fd4 For PR1196: by Reid Spencer · 18 years ago
- b5bb9f5 Replace the ugly FindValue method with STL-like find methods. by Chris Lattner · 18 years ago
- ea7acb8 fix uninitialized variable by Chris Lattner · 18 years ago
- 360cac8 remove support for stringmap visitors now that iterators exist. by Chris Lattner · 18 years ago
- a86559e add support for iterators. by Chris Lattner · 18 years ago
- 6ccadf6 add iterator support, plus support for size() and empty(). by Chris Lattner · 18 years ago
- 86cc423 simplify code by using Value::takeName by Chris Lattner · 18 years ago
- 6934a04 Simplify code by using value::takename by Chris Lattner · 18 years ago
- 046800a simplify name juggling through the use of Value::takeName. by Chris Lattner · 18 years ago
- f41916e add an optimization for the case where the src has no name by Chris Lattner · 18 years ago
- 3e05164 Fix comments to match names of functions. by Nick Lewycky · 18 years ago
- 33f2949 simplify this code by using value::takename by Chris Lattner · 18 years ago
- 7216811 add a helper method: Value::takeName by Chris Lattner · 18 years ago
- 9cc2d3d Split StringMapEntry construction out of StringMap, into StringMapEntry. by Chris Lattner · 18 years ago
- b508987 Undo the last patch. It slowed down bcwriter by 1.8% but only sped up by Reid Spencer · 18 years ago
- a77600e Switch some std::vector's to SmallVectors. This speeds up -load-vn -gcse by Chris Lattner · 18 years ago
- fd1ad3b modify CheckGEPInstructions to take a pointer and size instead of a vector. by Chris Lattner · 18 years ago