aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/TargetData.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson2010-10-191-0/+2
* Fix Whitespace.Michael J. Spencer2010-10-191-25/+25
* Now with fewer extraneous semicolons!Owen Anderson2010-10-071-1/+1
* Add x86MMX a few more places.Dale Johannesen2010-09-151-0/+1
* Add X86 MMX type to bitcode and Type.Dale Johannesen2010-09-101-0/+1
* remove unions from LLVM IR. They are severely buggy and notChris Lattner2010-08-281-25/+0
* Don't use unsigned char for alignments in TargetData. There aren'tDan Gohman2010-08-111-15/+15
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-2/+2
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-2/+2
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-2/+2
* Do GEP offset calculations with unsigned math rather than signed mathDan Gohman2010-07-281-1/+1
* Fix batch of converting RegisterPass<> to INTIALIZE_PASS().Owen Anderson2010-07-211-2/+1
* Change TargetData's algorithm for computing defualt vector typeDan Gohman2010-04-231-16/+11
* fix PR6332, allowing an index of zero into a zero sized array Chris Lattner2010-04-171-2/+2
* rename llvm::llvm_report_error -> llvm::report_fatal_errorChris Lattner2010-04-071-1/+1
* Revert the recent alignment changes. They're broken for -Os because,Dan Gohman2010-04-021-1/+1
* Change variables which are exactly 16 bytes to be 16-byte-aligned too.Dan Gohman2010-04-021-1/+1
* reapply r98656 unmodified, which exposed the asmprinter not Chris Lattner2010-03-161-0/+25
* Revert r98656, its breaking all over the place.Daniel Dunbar2010-03-161-25/+0
* improve support for uniontype and ConstantUnion, patch by Tim Northover!Chris Lattner2010-03-161-0/+25
* Revert r97064. Duncan pointed out that bitcasts are defined inDan Gohman2010-02-251-42/+1
* Make getTypeSizeInBits work correctly for array types; it should returnDan Gohman2010-02-241-1/+42
* There are two ways of checking for a given type, for example isa<PointerType>(T)Duncan Sands2010-02-161-1/+1
* add a method to get the alignment of an integer type even Chris Lattner2010-01-251-0/+7
* finish cleaning up StructLayoutMap.Chris Lattner2009-12-171-21/+17
* Calling InvalidateEntry during the refinement was breaking the bootstrap.Bill Wendling2009-12-051-2/+12
* Final cleanups:Bill Wendling2009-12-051-14/+2
* Inline methods which are called only once.Bill Wendling2009-12-051-15/+3
* Refactor some code. No functionality change.Bill Wendling2009-12-051-9/+13
* Some code cleanup. No functionality change.Bill Wendling2009-12-041-15/+10
* Revert r90371. It was causing build failures.Bill Wendling2009-12-031-23/+42
* Further improvements: refactoring code that does the same thing into oneBill Wendling2009-12-031-42/+23
* remove some dead std::ostream using code.Chris Lattner2009-12-031-9/+0
* improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner2009-12-031-0/+1
* This initial code is meant to convert TargetData to use an AbstractTypesUser soBill Wendling2009-12-031-59/+38
* The llvm-gcc front-end and the pass manager use two separate TargetData objects.Bill Wendling2009-11-181-24/+116
* Make TargetData::getStringRepresentation spit out native integer types,Chris Lattner2009-11-081-0/+7
* add the ability for TargetData to return information about legal integerChris Lattner2009-11-071-39/+12
* more cleanup.Chris Lattner2009-11-071-4/+14
* rewrite TargetData to use StringRef/raw_ostream instead of thrashing std::str...Chris Lattner2009-11-071-39/+59
* Try again at privatizing the layout info map, with a rewritten patch.Owen Anderson2009-08-211-47/+17
* Re-revert r79555. Apparently it's not just buildbot weirdness.Owen Anderson2009-08-201-35/+52
* Reapply r79555 for testing. Daniel's trying to work out some buildbot weirdn...Owen Anderson2009-08-201-52/+35
* --- Reverse-merging r79555 into '.':Bill Wendling2009-08-201-35/+52
* Make the StructType->StructLayout table private to TargetData, allowing us to...Owen Anderson2009-08-201-52/+35
* Update and fix some comments.Dan Gohman2009-08-201-7/+7
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-3/+4
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-2/+2
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-2/+3