aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Target/TargetData.h
AgeCommit message (Expand)Author
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson
2010-08-06Revert r110396 to fix buildbots.Owen Anderson
2010-08-05Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson
2010-02-25Revert r97064. Duncan pointed out that bitcasts are defined inDan Gohman
2010-02-24Make getTypeSizeInBits work correctly for array types; it should returnDan Gohman
2010-01-25add a method to get the alignment of an integer type even Chris Lattner
2009-12-09Silence conversion warning from 64 to 32-bit.Eric Christopher
2009-12-03remove some dead std::ostream using code.Chris Lattner
2009-12-03This initial code is meant to convert TargetData to use an AbstractTypesUser soBill Wendling
2009-11-18The llvm-gcc front-end and the pass manager use two separate TargetData objects.Bill Wendling
2009-11-07all targets should be required to declare legal integer types. My plan toChris Lattner
2009-11-07add the ability for TargetData to return information about legal integerChris Lattner
2009-11-07more cleanup.Chris Lattner
2009-11-07rewrite TargetData to use StringRef/raw_ostream instead of thrashing std::str...Chris Lattner
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-08-21Try again at privatizing the layout info map, with a rewritten patch.Owen Anderson
2009-08-20Re-revert r79555. Apparently it's not just buildbot weirdness.Owen Anderson
2009-08-20Reapply r79555 for testing. Daniel's trying to work out some buildbot weirdn...Owen Anderson
2009-08-20--- Reverse-merging r79555 into '.':Bill Wendling
2009-08-20Make the StructType->StructLayout table private to TargetData, allowing us to...Owen Anderson
2009-08-13Push LLVMContexts through the IntegerType APIs.Owen Anderson
2009-08-03llvm_report_error already prints "LLVM ERROR:". So stop reporting errors like...Benjamin Kramer
2009-07-11assert(0) -> LLVM_UNREACHABLE.Torok Edwin
2009-05-12Clarify a comment.Dan Gohman
2009-05-11Don't #include DerivedTypes.h from TargetData.h.Jay Foad
2009-05-11Change TargetData::getIntPtrType() to return an IntegerType instead ofJay Foad
2009-05-09Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands
2009-05-08Add some examples to show the difference betweenDuncan Sands
2009-02-18Eliminate several more unnecessary intptr_t casts.Dan Gohman
2009-01-12Rename getABITypeSize to getTypePaddedSize, asDuncan Sands
2009-01-09fit in 80 colsChris Lattner
2008-12-08introduce a new RoundUpAlignment helper function, use it to Chris Lattner
2008-12-08Speed up getABITypeSize by turning a i64 mul and div into anChris Lattner
2008-08-07Remove trailing spaces.Matthijs Kooijman
2008-01-29Use getPreferredAlignmentLog or getPreferredAlignmentDuncan Sands
2008-01-10Fix PR1845 and rdar://5676945. Generic vectors smallerChris Lattner
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-12Remove host endianness info from TargetData andDuncan Sands
2007-12-11Move TargetData::hostIsLittleEndian out of line, which means we Chris Lattner
2007-12-10Fix PR1836: in the interpreter, read and write apintsDuncan Sands
2007-11-05Eliminate the remaining uses of getTypeSize. ThisDuncan Sands
2007-11-04Change uses of getTypeSize to getABITypeSize, getTypeStoreSizeDuncan Sands
2007-11-01Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands
2007-10-01Add getABITypeSize, getABITypeSizeInBitsDale Johannesen
2007-09-07Add support for having different alignment for objects on call frames.Rafael Espindola
2007-08-12Change casts from old style to new style. This helps document the detailsReid Spencer
2007-07-30More explicit keywords.Dan Gohman
2007-07-16Fix comments about vectors to use the current wording.Dan Gohman
2007-05-06Fix typo in comment.Nick Lewycky
2007-05-03Drop 'const'Devang Patel