Age | Commit message (Expand) | Author |
2006-06-16 | Don't pass target name into TargetData anymore, it is never used or needed. | Chris Lattner |
2006-06-16 | Remove ctor with each piece specifyable (which causes overload ambiguities), | Chris Lattner |
2006-05-20 | Make TargetData strings less redundant. | Owen Anderson |
2006-05-20 | Fix a parsing bug that caused 7 llvm-test regressions on PPC last night. | Chris Lattner |
2006-05-20 | Make all of the TargetMachine subclasses use the new string TargetData methods. | Owen Anderson |
2006-05-17 | Fix a stupid bug when parsing TargetData strings. | Owen Anderson |
2006-05-12 | Add a method to generate a string representation from a TargetData. | Owen Anderson |
2006-05-12 | Fix some tabbing issues. | Owen Anderson |
2006-05-12 | Add a new constructor to TargetData that builds a TargetData from its | Owen Anderson |
2006-04-03 | revert previous patch | Chris Lattner |
2006-04-03 | Align vectors to the size in bytes, not bits. | Chris Lattner |
2006-03-31 | TargetData.cpp::getTypeInfo() was returning alignment of element type as the | Evan Cheng |
2006-01-14 | Implement a new InvalidateStructLayoutInfo method and add some comments | Chris Lattner |
2005-08-02 | Update to use the new MathExtras.h support for log2 computation. | Chris Lattner |
2005-04-21 | Remove trailing whitespace | Misha Brukman |
2005-03-13 | add a StructLayout::getElementContainingOffset method. | Chris Lattner |
2004-12-01 | Initial support for packed types, contributed by Morten Ofstad | Chris Lattner |
2004-11-02 | Fix this function to not say that longs have 8-byte alignment on X86/PPC. | Chris Lattner |
2004-09-01 | Changes For Bug 352 | Reid Spencer |
2004-08-17 | Add a new helper method to get log2(type alignment) | Chris Lattner |
2004-07-23 | * Add BoolAlignment to TargetData, default is 1 byte, size 1 byte | Misha Brukman |
2004-07-15 | Nuke a clearly bogus assertion | Chris Lattner |
2004-07-02 | Fix use-before-def thinko | Brian Gaeke |
2004-07-01 | Handle targets where alignment can be bigger than the size of the data. | Chris Lattner |
2004-06-17 | Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() | Chris Lattner |
2004-04-14 | Fix typo. | Brian Gaeke |
2004-04-05 | Support getelementptr instructions which use uint's to index into structure | Chris Lattner |
2004-02-26 | Use a map instead of annotations | Chris Lattner |
2004-02-09 | Adjust to the changed StructType interface. In particular, getElementTypes()... | Chris Lattner |
2003-12-22 | finegrainify namespacification | Chris Lattner |
2003-11-11 | Put all LLVM code into the llvm namespace, as per bug 109. | Brian Gaeke |
2003-10-20 | Added LLVM project notice to the top of every C++ source file. | John Criswell |
2003-08-24 | Add support for 'any' pointer size and endianness | Chris Lattner |
2003-08-18 | Spell `necessary' correctly. | Misha Brukman |
2003-07-23 | Remove redundant const qualifiers from cast<> expressions | Chris Lattner |
2003-06-04 | No really, you _cannot use_ getelementptr on an unsized type: that makes | Chris Lattner |
2003-06-04 | Undo one of those last fixes -- it was incorrect. | Vikram S. Adve |
2003-06-02 | Minor cleanups | Chris Lattner |
2003-05-21 | * Fix divide by zero error with empty structs | Chris Lattner |
2003-04-26 | Remove two fields from TargetData which are target specific. | Chris Lattner |
2003-04-25 | Whoops, 32 bit targets have _4_ byte pointers, not _32_ byte pointers! | Chris Lattner |
2003-04-25 | Allow for easy detection of when a "default" TargetData is created by the | Chris Lattner |
2003-04-24 | add a new targetdata ctor to create a target data appropriate to the module | Chris Lattner |
2003-02-25 | Remove wierd case that can never happen | Chris Lattner |
2002-10-29 | * Privatize the TargetName | Chris Lattner |
2002-10-14 | - Add an endianness field to the TargetData datastructure | Chris Lattner |
2002-10-13 | Don't try to compute the size of an "array" element if the index is 0: | Vikram S. Adve |
2002-09-25 | Convert TargetData to be an ImmutablePass | Chris Lattner |
2002-09-11 | - Change getelementptr instruction to use long indexes instead of uint | Chris Lattner |
2002-08-24 | Fix sign-extension: it needs to happen *after* multiplying by type size. | Vikram S. Adve |