| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix an obvious error. | Bob Wilson | 2009-07-14 | 1 | -3/+3 |
* | Change the X86 asmprinter to use the mangler to apply suffixes like "$non_laz... | Chris Lattner | 2009-07-14 | 1 | -3/+11 |
* | Change the internal interface to makeNameProper to take a bool that | Chris Lattner | 2009-07-14 | 1 | -32/+17 |
* | FreeInst is trapping. | Dan Gohman | 2009-07-14 | 1 | -0/+1 |
* | Revert 75308. | Bob Wilson | 2009-07-14 | 1 | -33/+3 |
* | the mangler can never mangle intrinsics, don't allow this. | Chris Lattner | 2009-07-14 | 1 | -4/+2 |
* | rename Memo/Count to AnonGlobalIDs/NextAnonGlobalID to be more | Chris Lattner | 2009-07-14 | 1 | -20/+17 |
* | Move more functionality over to LLVMContext. | Owen Anderson | 2009-07-13 | 2 | -72/+18 |
* | remove Mangler::getTypeID and related data, it was only used for mangling | Chris Lattner | 2009-07-13 | 1 | -9/+1 |
* | remove mangler support for mangling local names. Mangler should only be | Chris Lattner | 2009-07-13 | 1 | -14/+0 |
* | the mangler should put suffixes on unnamed global's mangled names as well | Chris Lattner | 2009-07-13 | 1 | -1/+1 |
* | Move a bit more functionality to LLVMContext, which apparently wasn't being u... | Owen Anderson | 2009-07-13 | 2 | -19/+29 |
* | Two changes: | Chris Lattner | 2009-07-13 | 1 | -9/+2 |
* | Inline EvalVectorOp in order to get rid of passing-pointer-to-static-methods ... | Owen Anderson | 2009-07-13 | 1 | -38/+132 |
* | These don't really need contexts either. | Owen Anderson | 2009-07-13 | 1 | -6/+6 |
* | As Chris pointed out, this doesn't actually need an LLVMContext to operate. | Owen Anderson | 2009-07-13 | 1 | -4/+4 |
* | Move more functionality over to LLVMContext. | Owen Anderson | 2009-07-13 | 3 | -49/+19 |
* | Change printInstruction to not print a trailing newline. Value::dump | Dan Gohman | 2009-07-13 | 1 | -2/+3 |
* | Fix build on Linux. | Nick Lewycky | 2009-07-13 | 1 | -0/+1 |
* | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 2009-07-13 | 5 | -340/+381 |
* | Remove extra \n from LLVM_UNREACHABLE calls. | Torok Edwin | 2009-07-12 | 1 | -1/+1 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 10 | -28/+32 |
* | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 2009-07-11 | 1 | -2/+2 |
* | Add new vector types for 192-bit, 348-bit and 512-bit sizes. | Bob Wilson | 2009-07-10 | 1 | -3/+33 |
* | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson | 2009-07-09 | 2 | -47/+135 |
* | Thread LLVMContext through MVT and related parts of SDISel. | Owen Anderson | 2009-07-09 | 2 | -28/+31 |
* | LLVMContext-ification. | Owen Anderson | 2009-07-08 | 2 | -7/+10 |
* | Fix the AssertingVH unittests. | Jeffrey Yasskin | 2009-07-08 | 1 | -2/+1 |
* | Drop "constant" from | Devang Patel | 2009-07-08 | 1 | -1/+1 |
* | Update SLotTracker to handle MDNode slots. | Devang Patel | 2009-07-08 | 1 | -90/+134 |
* | Implement changes from Chris's feedback. | Torok Edwin | 2009-07-08 | 6 | -6/+12 |
* | Push LLVMContext _back_ through IRBuilder. | Owen Anderson | 2009-07-08 | 1 | -1/+1 |
* | Switch GlobalVariable ctors to a sane API, where *either* a context or a modu... | Owen Anderson | 2009-07-08 | 3 | -24/+15 |
* | Start converting to new error handling API. | Torok Edwin | 2009-07-08 | 7 | -24/+24 |
* | Remove the vicmp and vfcmp instructions. Because we never had a release with | Nick Lewycky | 2009-07-08 | 5 | -227/+33 |
* | Push LLVMContext through GlobalVariables and IRBuilder. | Owen Anderson | 2009-07-08 | 3 | -8/+18 |
* | LLVMContext-ification. | Owen Anderson | 2009-07-07 | 3 | -30/+41 |
* | LLVMContext-ifiy the implementation of the C API. | Owen Anderson | 2009-07-07 | 1 | -59/+102 |
* | Have scoped mutexes take referenes instead of pointers. | Owen Anderson | 2009-07-07 | 8 | -39/+39 |
* | "LLVMContext* " --> "LLVMContext *" | Owen Anderson | 2009-07-06 | 2 | -2/+2 |
* | Add two new accessors to the C bindings, patch by Wladimir van der Laan! | Chris Lattner | 2009-07-06 | 1 | -0/+9 |
* | More LLVMContext-ification. | Owen Anderson | 2009-07-05 | 3 | -2/+14 |
* | Even more passes being LLVMContext'd. | Owen Anderson | 2009-07-03 | 1 | -1/+2 |
* | Fill in a few more missing accessors. | Owen Anderson | 2009-07-02 | 1 | -1/+7 |
* | Add an accessor to Function so that Passes can easily get access to the context. | Owen Anderson | 2009-07-02 | 1 | -0/+6 |
* | Add accessors for metadata constants. | Owen Anderson | 2009-07-02 | 1 | -0/+9 |
* | Add accessor for MDNode. | Owen Anderson | 2009-07-02 | 1 | -0/+6 |
* | Add accessor for getting UndefValue's. | Owen Anderson | 2009-07-02 | 1 | -0/+5 |
* | Restore other bits of the C API that I tore up. All pre-existing APIs defaul... | Owen Anderson | 2009-07-02 | 1 | -1/+6 |
* | Add a C wrapper for accessing the global default context. | Owen Anderson | 2009-07-02 | 1 | -0/+4 |