summaryrefslogtreecommitdiff
path: root/lib/Target/TargetData.cpp
Commit message (Expand)AuthorAge
* Make TargetData strings less redundant.Owen Anderson2006-05-20
* Fix a parsing bug that caused 7 llvm-test regressions on PPC last night.Chris Lattner2006-05-20
* Make all of the TargetMachine subclasses use the new string TargetData methods.Owen Anderson2006-05-20
* Fix a stupid bug when parsing TargetData strings.Owen Anderson2006-05-17
* Add a method to generate a string representation from a TargetData.Owen Anderson2006-05-12
* Fix some tabbing issues.Owen Anderson2006-05-12
* Add a new constructor to TargetData that builds a TargetData from itsOwen Anderson2006-05-12
* revert previous patchChris Lattner2006-04-03
* Align vectors to the size in bytes, not bits.Chris Lattner2006-04-03
* TargetData.cpp::getTypeInfo() was returning alignment of element type as theEvan Cheng2006-03-31
* Implement a new InvalidateStructLayoutInfo method and add some commentsChris Lattner2006-01-14
* Update to use the new MathExtras.h support for log2 computation.Chris Lattner2005-08-02
* Remove trailing whitespaceMisha Brukman2005-04-21
* add a StructLayout::getElementContainingOffset method.Chris Lattner2005-03-13
* Initial support for packed types, contributed by Morten OfstadChris Lattner2004-12-01
* Fix this function to not say that longs have 8-byte alignment on X86/PPC.Chris Lattner2004-11-02
* Changes For Bug 352Reid Spencer2004-09-01
* Add a new helper method to get log2(type alignment)Chris Lattner2004-08-17
* * Add BoolAlignment to TargetData, default is 1 byte, size 1 byteMisha Brukman2004-07-23
* Nuke a clearly bogus assertionChris Lattner2004-07-15
* Fix use-before-def thinkoBrian Gaeke2004-07-02
* Handle targets where alignment can be bigger than the size of the data.Chris Lattner2004-07-01
* Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()Chris Lattner2004-06-17
* Fix typo.Brian Gaeke2004-04-14
* Support getelementptr instructions which use uint's to index into structureChris Lattner2004-04-05
* Use a map instead of annotationsChris Lattner2004-02-26
* Adjust to the changed StructType interface. In particular, getElementTypes()...Chris Lattner2004-02-09
* finegrainify namespacificationChris Lattner2003-12-22
* Put all LLVM code into the llvm namespace, as per bug 109.Brian Gaeke2003-11-11
* Added LLVM project notice to the top of every C++ source file.John Criswell2003-10-20
* Add support for 'any' pointer size and endiannessChris Lattner2003-08-24
* Spell `necessary' correctly.Misha Brukman2003-08-18
* Remove redundant const qualifiers from cast<> expressionsChris Lattner2003-07-23
* No really, you _cannot use_ getelementptr on an unsized type: that makesChris Lattner2003-06-04
* Undo one of those last fixes -- it was incorrect.Vikram S. Adve2003-06-04
* Minor cleanupsChris Lattner2003-06-02
* * Fix divide by zero error with empty structsChris Lattner2003-05-21
* Remove two fields from TargetData which are target specific.Chris Lattner2003-04-26
* Whoops, 32 bit targets have _4_ byte pointers, not _32_ byte pointers!Chris Lattner2003-04-25
* Allow for easy detection of when a "default" TargetData is created by theChris Lattner2003-04-25
* add a new targetdata ctor to create a target data appropriate to the moduleChris Lattner2003-04-24
* Remove wierd case that can never happenChris Lattner2003-02-25
* * Privatize the TargetNameChris Lattner2002-10-29
* - Add an endianness field to the TargetData datastructureChris Lattner2002-10-14
* Don't try to compute the size of an "array" element if the index is 0:Vikram S. Adve2002-10-13
* Convert TargetData to be an ImmutablePassChris Lattner2002-09-25
* - Change getelementptr instruction to use long indexes instead of uintChris Lattner2002-09-11
* Fix sign-extension: it needs to happen *after* multiplying by type size.Vikram S. Adve2002-08-24
* Simplify previous hack slightly.Vikram S. Adve2002-08-23
* Force sign-extension for uint array indexes from 32-bit to 64-bitsVikram S. Adve2002-08-23