mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-19 01:27:40 +00:00
TargetData assumes (and some regression tests depend on it) that the size of
an unspecified datatype in the datalayout is capped by the size of a pointer. llvm-svn: 33411
This commit is contained in:
parent
86af1504b4
commit
4de8fa6334
@ -70,7 +70,8 @@ public:
|
||||
/// Constructs a TargetData from a string of the following format:
|
||||
/// "E-p:64:64-d:64-f:32-l:64-i:32-s:16-b:8-B:8"
|
||||
/// The above string is considered the default, and any values not specified
|
||||
/// in the string will be assumed to be as above.
|
||||
/// in the string will be assumed to be as above, with the caveat that unspecified
|
||||
/// values are always assumed to be smaller than the size of a pointer.
|
||||
TargetData(const std::string &TargetDescription) {
|
||||
init(TargetDescription);
|
||||
}
|
||||
|
@ -103,9 +103,9 @@ void TargetData::init(const std::string &TargetDescription) {
|
||||
LittleEndian = false;
|
||||
PointerMemSize = 8;
|
||||
PointerABIAlignment = 8;
|
||||
DoubleABIAlignment = 8;
|
||||
DoubleABIAlignment = 0;
|
||||
FloatABIAlignment = 4;
|
||||
LongABIAlignment = 8;
|
||||
LongABIAlignment = 0;
|
||||
IntABIAlignment = 4;
|
||||
ShortABIAlignment = 2;
|
||||
ByteABIAlignment = 1;
|
||||
@ -114,9 +114,9 @@ void TargetData::init(const std::string &TargetDescription) {
|
||||
BytePrefAlignment = ByteABIAlignment;
|
||||
ShortPrefAlignment = ShortABIAlignment;
|
||||
IntPrefAlignment = IntABIAlignment;
|
||||
LongPrefAlignment = LongABIAlignment;
|
||||
LongPrefAlignment = 8;
|
||||
FloatPrefAlignment = FloatABIAlignment;
|
||||
DoublePrefAlignment = DoubleABIAlignment;
|
||||
DoublePrefAlignment = 8;
|
||||
PointerPrefAlignment = PointerABIAlignment;
|
||||
AggMinPrefAlignment = 0;
|
||||
|
||||
@ -188,6 +188,13 @@ void TargetData::init(const std::string &TargetDescription) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Unless explicitly specified, the alignments for longs and doubles is capped by
|
||||
// pointer size.
|
||||
if (LongABIAlignment == 0)
|
||||
LongABIAlignment = LongPrefAlignment = PointerMemSize;
|
||||
if (DoubleABIAlignment == 0)
|
||||
DoubleABIAlignment = DoublePrefAlignment = PointerMemSize;
|
||||
}
|
||||
|
||||
TargetData::TargetData(const Module *M) {
|
||||
|
Loading…
Reference in New Issue
Block a user