mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
Use getPreferredAlignmentLog or getPreferredAlignment
to get the alignment of global variables, rather than using hand-made versions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46495 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a34d8a0d83
commit
d102593b42
@ -200,7 +200,7 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
/// getPrefTypeAlignment - Return the preferred stack/global alignment for
|
/// getPrefTypeAlignment - Return the preferred stack/global alignment for
|
||||||
/// the specified type.
|
/// the specified type. This is always at least as good as the ABI alignment.
|
||||||
unsigned char getPrefTypeAlignment(const Type *Ty) const;
|
unsigned char getPrefTypeAlignment(const Type *Ty) const;
|
||||||
|
|
||||||
/// getPreferredTypeAlignmentShift - Return the preferred alignment for the
|
/// getPreferredTypeAlignmentShift - Return the preferred alignment for the
|
||||||
@ -230,6 +230,11 @@ public:
|
|||||||
/// avoid a dangling pointer in this cache.
|
/// avoid a dangling pointer in this cache.
|
||||||
void InvalidateStructLayoutInfo(const StructType *Ty) const;
|
void InvalidateStructLayoutInfo(const StructType *Ty) const;
|
||||||
|
|
||||||
|
/// getPreferredAlignment - Return the preferred alignment of the specified
|
||||||
|
/// global. This includes an explicitly requested alignment (if the global
|
||||||
|
/// has one).
|
||||||
|
unsigned getPreferredAlignment(const GlobalVariable *GV) const;
|
||||||
|
|
||||||
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
||||||
/// specified global, returned in log form. This includes an explicitly
|
/// specified global, returned in log form. This includes an explicitly
|
||||||
/// requested alignment (if the global has one).
|
/// requested alignment (if the global has one).
|
||||||
|
@ -257,7 +257,7 @@ void ELFWriter::EmitGlobal(GlobalVariable *GV) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const Type *GVType = (const Type*)GV->getType();
|
const Type *GVType = (const Type*)GV->getType();
|
||||||
unsigned Align = TM.getTargetData()->getPrefTypeAlignment(GVType);
|
unsigned Align = TM.getTargetData()->getPreferredAlignment(GV);
|
||||||
unsigned Size = TM.getTargetData()->getABITypeSize(GVType);
|
unsigned Size = TM.getTargetData()->getABITypeSize(GVType);
|
||||||
|
|
||||||
// If this global has a zero initializer, it is part of the .bss or common
|
// If this global has a zero initializer, it is part of the .bss or common
|
||||||
|
@ -334,10 +334,8 @@ MachOWriter::~MachOWriter() {
|
|||||||
void MachOWriter::AddSymbolToSection(MachOSection *Sec, GlobalVariable *GV) {
|
void MachOWriter::AddSymbolToSection(MachOSection *Sec, GlobalVariable *GV) {
|
||||||
const Type *Ty = GV->getType()->getElementType();
|
const Type *Ty = GV->getType()->getElementType();
|
||||||
unsigned Size = TM.getTargetData()->getABITypeSize(Ty);
|
unsigned Size = TM.getTargetData()->getABITypeSize(Ty);
|
||||||
unsigned Align = GV->getAlignment();
|
unsigned Align = TM.getTargetData()->getPreferredAlignment(GV);
|
||||||
if (Align == 0)
|
|
||||||
Align = TM.getTargetData()->getPrefTypeAlignment(Ty);
|
|
||||||
|
|
||||||
// Reserve space in the .bss section for this symbol while maintaining the
|
// Reserve space in the .bss section for this symbol while maintaining the
|
||||||
// desired section alignment, which must be at least as much as required by
|
// desired section alignment, which must be at least as much as required by
|
||||||
// this symbol.
|
// this symbol.
|
||||||
|
@ -355,7 +355,7 @@ void *JIT::getOrEmitGlobalVariable(const GlobalVariable *GV) {
|
|||||||
// compilation.
|
// compilation.
|
||||||
const Type *GlobalType = GV->getType()->getElementType();
|
const Type *GlobalType = GV->getType()->getElementType();
|
||||||
size_t S = getTargetData()->getABITypeSize(GlobalType);
|
size_t S = getTargetData()->getABITypeSize(GlobalType);
|
||||||
size_t A = getTargetData()->getPrefTypeAlignment(GlobalType);
|
size_t A = getTargetData()->getPreferredAlignment(GV);
|
||||||
if (A <= 8) {
|
if (A <= 8) {
|
||||||
Ptr = malloc(S);
|
Ptr = malloc(S);
|
||||||
} else {
|
} else {
|
||||||
|
@ -271,8 +271,8 @@ bool IA64AsmPrinter::doFinalization(Module &M) {
|
|||||||
std::string name = Mang->getValueName(I);
|
std::string name = Mang->getValueName(I);
|
||||||
Constant *C = I->getInitializer();
|
Constant *C = I->getInitializer();
|
||||||
unsigned Size = TD->getABITypeSize(C->getType());
|
unsigned Size = TD->getABITypeSize(C->getType());
|
||||||
unsigned Align = TD->getPreferredTypeAlignmentShift(C->getType());
|
unsigned Align = TD->getPreferredAlignmentLog(I);
|
||||||
|
|
||||||
if (C->isNullValue() &&
|
if (C->isNullValue() &&
|
||||||
(I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
|
(I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
|
||||||
I->hasWeakLinkage() /* FIXME: Verify correct */)) {
|
I->hasWeakLinkage() /* FIXME: Verify correct */)) {
|
||||||
|
@ -229,7 +229,7 @@ bool SparcAsmPrinter::doFinalization(Module &M) {
|
|||||||
std::string name = Mang->getValueName(I);
|
std::string name = Mang->getValueName(I);
|
||||||
Constant *C = I->getInitializer();
|
Constant *C = I->getInitializer();
|
||||||
unsigned Size = TD->getABITypeSize(C->getType());
|
unsigned Size = TD->getABITypeSize(C->getType());
|
||||||
unsigned Align = TD->getPrefTypeAlignment(C->getType());
|
unsigned Align = TD->getPreferredAlignment(I);
|
||||||
|
|
||||||
if (C->isNullValue() &&
|
if (C->isNullValue() &&
|
||||||
(I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
|
(I->hasLinkOnceLinkage() || I->hasInternalLinkage() ||
|
||||||
|
@ -101,6 +101,7 @@ unsigned StructLayout::getElementContainingOffset(uint64_t Offset) const {
|
|||||||
TargetAlignElem
|
TargetAlignElem
|
||||||
TargetAlignElem::get(AlignTypeEnum align_type, unsigned char abi_align,
|
TargetAlignElem::get(AlignTypeEnum align_type, unsigned char abi_align,
|
||||||
unsigned char pref_align, uint32_t bit_width) {
|
unsigned char pref_align, uint32_t bit_width) {
|
||||||
|
assert(abi_align <= pref_align && "Preferred alignment worse than ABI!");
|
||||||
TargetAlignElem retval;
|
TargetAlignElem retval;
|
||||||
retval.AlignType = align_type;
|
retval.AlignType = align_type;
|
||||||
retval.ABIAlign = abi_align;
|
retval.ABIAlign = abi_align;
|
||||||
@ -242,6 +243,7 @@ TargetData::TargetData(const Module *M)
|
|||||||
void
|
void
|
||||||
TargetData::setAlignment(AlignTypeEnum align_type, unsigned char abi_align,
|
TargetData::setAlignment(AlignTypeEnum align_type, unsigned char abi_align,
|
||||||
unsigned char pref_align, uint32_t bit_width) {
|
unsigned char pref_align, uint32_t bit_width) {
|
||||||
|
assert(abi_align <= pref_align && "Preferred alignment worse than ABI!");
|
||||||
for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
|
for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
|
||||||
if (Alignments[i].AlignType == align_type &&
|
if (Alignments[i].AlignType == align_type &&
|
||||||
Alignments[i].TypeBitWidth == bit_width) {
|
Alignments[i].TypeBitWidth == bit_width) {
|
||||||
@ -576,22 +578,29 @@ uint64_t TargetData::getIndexedOffset(const Type *ptrTy, Value* const* Indices,
|
|||||||
return Result;
|
return Result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
/// getPreferredAlignment - Return the preferred alignment of the specified
|
||||||
/// specified global, returned in log form. This includes an explicitly
|
/// global. This includes an explicitly requested alignment (if the global
|
||||||
/// requested alignment (if the global has one).
|
/// has one).
|
||||||
unsigned TargetData::getPreferredAlignmentLog(const GlobalVariable *GV) const {
|
unsigned TargetData::getPreferredAlignment(const GlobalVariable *GV) const {
|
||||||
const Type *ElemType = GV->getType()->getElementType();
|
const Type *ElemType = GV->getType()->getElementType();
|
||||||
unsigned Alignment = getPreferredTypeAlignmentShift(ElemType);
|
unsigned Alignment = getPrefTypeAlignment(ElemType);
|
||||||
if (GV->getAlignment() > (1U << Alignment))
|
if (GV->getAlignment() > Alignment)
|
||||||
Alignment = Log2_32(GV->getAlignment());
|
Alignment = GV->getAlignment();
|
||||||
|
|
||||||
if (GV->hasInitializer()) {
|
if (GV->hasInitializer()) {
|
||||||
if (Alignment < 4) {
|
if (Alignment < 16) {
|
||||||
// If the global is not external, see if it is large. If so, give it a
|
// If the global is not external, see if it is large. If so, give it a
|
||||||
// larger alignment.
|
// larger alignment.
|
||||||
if (getTypeSizeInBits(ElemType) > 128)
|
if (getTypeSizeInBits(ElemType) > 128)
|
||||||
Alignment = 4; // 16-byte alignment.
|
Alignment = 16; // 16-byte alignment.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Alignment;
|
return Alignment;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// getPreferredAlignmentLog - Return the preferred alignment of the
|
||||||
|
/// specified global, returned in log form. This includes an explicitly
|
||||||
|
/// requested alignment (if the global has one).
|
||||||
|
unsigned TargetData::getPreferredAlignmentLog(const GlobalVariable *GV) const {
|
||||||
|
return Log2_32(getPreferredAlignment(GV));
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user