aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/TargetData.cpp
AgeCommit message (Expand)Author
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-06-04Change packed struct layout so that field sizesDuncan Sands
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-04-14Remove unnecessary <sstream> includes.Dan Gohman
2008-03-19PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel
2008-01-29Use getPreferredAlignmentLog or getPreferredAlignmentDuncan Sands
2008-01-10Fix PR1845 and rdar://5676945. Generic vectors smallerChris Lattner
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-21Fix a brain fart by our beloved leader (the contentDuncan Sands
2007-12-12Remove host endianness info from TargetData andDuncan Sands
2007-12-11Move TargetData::hostIsLittleEndian out of line, which means we Chris Lattner
2007-11-09Silence a warningAnton Korobeynikov
2007-11-01Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands
2007-10-29Fix PR1749 and InstCombine/2007-10-28-EmptyField.ll by handlingChris Lattner
2007-10-08Simplify getIntPtrType, allowing it to work for arbitrary pointer sizes.Dan Gohman
2007-10-01Add getABITypeSize, getABITypeSizeInBitsDale Johannesen
2007-09-21Don't add a default STACK_ALIGN (use the generic ABI alignment)Rafael Espindola
2007-09-17Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfoChris Lattner
2007-09-07Add support for having different alignment for objects on call frames.Rafael Espindola
2007-08-05Fix minor doxygen nits.Reid Spencer
2007-08-03long double patch 2 of N. Handle it in TargetData.Dale Johannesen
2007-05-03Drop 'const'Devang Patel
2007-05-02Use 'static const char' instead of 'static const int'.Devang Patel
2007-05-02Fix build error.Lauro Ramos Venancio
2007-05-01Do not use typeinfo to identify pass in pass manager.Devang Patel
2007-04-22Support alignment queries for degenerate (length 1) vectors.Christopher Lamb
2007-04-09When the number of elements is zero, don't malloc 32GB on 64-bit systems.Jeff Cohen
2007-03-05Unbreak VC++ build.Jeff Cohen
2007-03-01Wrap a long line.Reid Spencer
2007-02-19Simplify some code by moving variable declarations into the only block thatReid Spencer
2007-02-19Implement support for non-standard integer bit widths of any size. TheReid Spencer
2007-02-17Do not dereference invalid ranges. Generalize targetdata alignment model.Chris Lattner
2007-02-16Fix CodeGen/PowerPC/2007-02-16-AlignPacked.llChris Lattner
2007-02-16Remove an unnecessary predicate.Reid Spencer
2007-02-16simplify some code, ensure that packed structures get abi alignment of 1.Chris Lattner
2007-02-15For PR1195:Reid Spencer
2007-02-15For PR1202:Reid Spencer
2007-02-15For PR1195:Reid Spencer
2007-02-15Fixed packed structure breakage from earlier TargetData patch; appliedReid Spencer
2007-02-14Generalize TargetData strings, to support more interesting forms of data.Chris Lattner
2007-02-10Switch LayoutInfo to be a DenseMap instead of an std::map. This speeds upChris Lattner
2007-02-10add a typedefChris Lattner
2007-02-10eliminate the std::vector from StructLayout, allocating the elements immediatelyChris Lattner
2007-02-10encapsulate the rest of the StructLayout members.Chris Lattner
2007-02-10Privatize StructLayout::MemberOffsets, adding an accessorChris Lattner
2007-02-10Use ManagedStatic to manage LayoutInfo, instead of rolling our own.Chris Lattner
2007-02-10Change TargetData::getIndexedOffset interface to not require indicesChris Lattner
2007-02-05Although targets are not required to support integers > 64bits, TargetDataReid Spencer
2007-01-31Dead comment.Evan Cheng
2007-01-26For PR761:Reid Spencer