mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
For PR1195:
PACKED_ALIGN -> VECTOR_ALIGN git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34330 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
addccfd006
commit
1f43787bf0
@ -36,7 +36,7 @@ class GlobalVariable;
|
|||||||
/// Enum used to categorize the alignment types stored by TargetAlignElem
|
/// Enum used to categorize the alignment types stored by TargetAlignElem
|
||||||
enum AlignTypeEnum {
|
enum AlignTypeEnum {
|
||||||
INTEGER_ALIGN = 'i', ///< Integer type alignment
|
INTEGER_ALIGN = 'i', ///< Integer type alignment
|
||||||
PACKED_ALIGN = 'v', ///< Vector type alignment
|
VECTOR_ALIGN = 'v', ///< Vector type alignment
|
||||||
FLOAT_ALIGN = 'f', ///< Floating point type alignment
|
FLOAT_ALIGN = 'f', ///< Floating point type alignment
|
||||||
AGGREGATE_ALIGN = 'a' ///< Aggregate alignment
|
AGGREGATE_ALIGN = 'a' ///< Aggregate alignment
|
||||||
};
|
};
|
||||||
|
@ -184,8 +184,8 @@ void TargetData::init(const std::string &TargetDescription) {
|
|||||||
setAlignment(INTEGER_ALIGN, 4, 8, 64); // long
|
setAlignment(INTEGER_ALIGN, 4, 8, 64); // long
|
||||||
setAlignment(FLOAT_ALIGN, 4, 4, 32); // float
|
setAlignment(FLOAT_ALIGN, 4, 4, 32); // float
|
||||||
setAlignment(FLOAT_ALIGN, 8, 8, 64); // double
|
setAlignment(FLOAT_ALIGN, 8, 8, 64); // double
|
||||||
setAlignment(PACKED_ALIGN, 8, 8, 64); // v2i32
|
setAlignment(VECTOR_ALIGN, 8, 8, 64); // v2i32
|
||||||
setAlignment(PACKED_ALIGN, 16, 16, 128); // v16i8, v8i16, v4i32, ...
|
setAlignment(VECTOR_ALIGN, 16, 16, 128); // v16i8, v8i16, v4i32, ...
|
||||||
setAlignment(AGGREGATE_ALIGN, 0, 0, 0); // struct, union, class, ...
|
setAlignment(AGGREGATE_ALIGN, 0, 0, 0); // struct, union, class, ...
|
||||||
|
|
||||||
while (!temp.empty()) {
|
while (!temp.empty()) {
|
||||||
@ -218,7 +218,7 @@ void TargetData::init(const std::string &TargetDescription) {
|
|||||||
case 'a': {
|
case 'a': {
|
||||||
align_type = (*p == 'i' ? INTEGER_ALIGN :
|
align_type = (*p == 'i' ? INTEGER_ALIGN :
|
||||||
(*p == 'f' ? FLOAT_ALIGN :
|
(*p == 'f' ? FLOAT_ALIGN :
|
||||||
(*p == 'v' ? PACKED_ALIGN : AGGREGATE_ALIGN)));
|
(*p == 'v' ? VECTOR_ALIGN : AGGREGATE_ALIGN)));
|
||||||
size = (short) atoi(++p);
|
size = (short) atoi(++p);
|
||||||
abi_align = atoi(getToken(token, ":").c_str()) / 8;
|
abi_align = atoi(getToken(token, ":").c_str()) / 8;
|
||||||
pref_align = atoi(getToken(token, ":").c_str()) / 8;
|
pref_align = atoi(getToken(token, ":").c_str()) / 8;
|
||||||
@ -485,7 +485,7 @@ unsigned char TargetData::getAlignment(const Type *Ty, bool abi_or_pref) const
|
|||||||
AlignType = FLOAT_ALIGN;
|
AlignType = FLOAT_ALIGN;
|
||||||
break;
|
break;
|
||||||
case Type::VectorTyID:
|
case Type::VectorTyID:
|
||||||
AlignType = PACKED_ALIGN;
|
AlignType = VECTOR_ALIGN;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
assert(0 && "Bad type for getAlignment!!!");
|
assert(0 && "Bad type for getAlignment!!!");
|
||||||
|
Loading…
Reference in New Issue
Block a user