summaryrefslogtreecommitdiff
path: root/lib/VMCore
Commit message (Expand)AuthorAge
* Update DebugInfo interface to use metadata, instead of special named llvm.dbg...Devang Patel2009-08-25
* Kill off more cerr/cout uses and prune includes a bit.Benjamin Kramer2009-08-23
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-23
* eliminate the std::ostream form of WriteAsOperand and update clients.Chris Lattner2009-08-23
* remove the std::ostream version of module and type printing.Chris Lattner2009-08-23
* remove some DOUTsChris Lattner2009-08-23
* eliminate the "Value" printing methods that print to a std::ostream.Chris Lattner2009-08-23
* Use standard LLVM-style headers.Owen Anderson2009-08-23
* switch a couple things off std::ostreamChris Lattner2009-08-23
* switch from std::ostream to raw ostream, fix file header.Chris Lattner2009-08-23
* Reduce contention on the Attributes lock by using atomic operations for refer...Owen Anderson2009-08-20
* Rename hasNoUnsignedOverflow and hasNoSignedOverflow to hasNoUnsignedWrapDan Gohman2009-08-20
* Add a fast path for setName("") on an unnamed value.Daniel Dunbar2009-08-19
* AttrListPtr operations need to be atomic.Owen Anderson2009-08-19
* Change ValueSymbolTable to use raw_svector_ostream for string concatenation.Daniel Dunbar2009-08-19
* Reapply my less-lock-contention-in-leak-detector patch, now with new filesOwen Anderson2009-08-19
* Make a SmallVector size more reasonable.Daniel Dunbar2009-08-19
* Revert my last patch temporarily.Owen Anderson2009-08-19
* Privatize part of the leak detector mechanism, which turned out to be heavily...Owen Anderson2009-08-19
* Privatize the ValueHandle global map. Because this is used so heavily throug...Owen Anderson2009-08-18
* Add prefix only if it is needed.Devang Patel2009-08-17
* Privatize the last bits of static type state.Owen Anderson2009-08-17
* Move the TypeMap lock to a member on LLVMContextImpl.Owen Anderson2009-08-17
* Add locking around the attributes list.Owen Anderson2009-08-17
* the MinPad argument to PadToColumn only really makes sense to be 1,Chris Lattner2009-08-17
* Fix printing of instructions with null operands.Dan Gohman2009-08-17
* Always print at least one space before adding a comment.Dan Gohman2009-08-17
* Expose creating constant ints and floats from strings in llvm-c.Erick Tryzelaar2009-08-16
* Add helper functions to ConstantInt and ConstantFP to accept strings.Erick Tryzelaar2009-08-16
* Add a getOffsetOf, for building a target-independent expression forDan Gohman2009-08-16
* Add an llvm-c function that lets you insert an instruction with a name.Erick Tryzelaar2009-08-16
* Expose most of the Constant creation functions to llvm-c.Erick Tryzelaar2009-08-16
* Expose most of the rest of IRBuilder's functions to llvm-c.Erick Tryzelaar2009-08-16
* switch DominanceFrontier::splitBlock to use a smallvector forChris Lattner2009-08-15
* Expose LLVMContext to llvm-c.Erick Tryzelaar2009-08-14
* Actually privatize a IntegerTypes, and fix a few bugs exposed by this.Owen Anderson2009-08-13
* Make formatted_raw_ostream restore the buffer settings of theDan Gohman2009-08-13
* Take the fast path for any named value and any GlobalValue, which doesn'tDan Gohman2009-08-13
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-13
* Fix a 4x slowdown in llc -asm-verbose caused by the use ofDan Gohman2009-08-13
* Change the indentation for LLVM Assembly files from 1 tab to 2 spaces.Dan Gohman2009-08-13
* Now that numbered types have their number printed, it's no longerDan Gohman2009-08-12
* Extend the AsmWriter to print unnamed numbered types as "%0 = type ..."Dan Gohman2009-08-12
* Make AsmWriter more careful with formatted_raw_ostream so thatDan Gohman2009-08-12
* Make LLVM Assembly dramatically easier to read by aligning the comments,Dan Gohman2009-08-12
* Remove a bunch more now-unnecessary Context arguments.Dan Gohman2009-08-12
* Add contexts to some of the MVT APIs. No functionality change yet, just the ...Owen Anderson2009-08-12
* Simplify this code, and use an in-bounds GEP.Dan Gohman2009-08-12
* Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...Owen Anderson2009-08-11
* Add convenience functions for creating nsw add operators.Dan Gohman2009-08-11