diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-04 16:13:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-04 16:13:09 +0000 |
commit | 81bbf443fe473ad3f03e5e8ec8752fd3da2995a6 (patch) | |
tree | abcbaecc050fb311bfad70e966b2c4190aaaa8e2 /llvm/lib/Target/TargetLoweringObjectFile.cpp | |
parent | bbabd39cced9f72061ec3ce151636a9ad07844f3 (diff) | |
download | llvm-81bbf443fe473ad3f03e5e8ec8752fd3da2995a6.zip llvm-81bbf443fe473ad3f03e5e8ec8752fd3da2995a6.tar.gz llvm-81bbf443fe473ad3f03e5e8ec8752fd3da2995a6.tar.bz2 |
Add support emiting for 2/4 byte mergable strings to the ".rodata.str*"
section on ELF targets.
llvm-svn: 78066
Diffstat (limited to 'llvm/lib/Target/TargetLoweringObjectFile.cpp')
-rw-r--r-- | llvm/lib/Target/TargetLoweringObjectFile.cpp | 51 |
1 files changed, 39 insertions, 12 deletions
diff --git a/llvm/lib/Target/TargetLoweringObjectFile.cpp b/llvm/lib/Target/TargetLoweringObjectFile.cpp index f2c7988..7d8f529 100644 --- a/llvm/lib/Target/TargetLoweringObjectFile.cpp +++ b/llvm/lib/Target/TargetLoweringObjectFile.cpp @@ -79,18 +79,33 @@ static bool isSuitableForBSS(const GlobalVariable *GV) { return true; } -static bool isConstantString(const Constant *C) { +/// IsNullTerminatedString - Return true if the specified constant (which is +/// known to have a type that is an array of 1/2/4 byte elements) ends with a +/// nul value and contains no other nuls in it. +static bool IsNullTerminatedString(const Constant *C) { + const ArrayType *ATy = cast<ArrayType>(C->getType()); + // First check: is we have constant array of i8 terminated with zero - const ConstantArray *CVA = dyn_cast<ConstantArray>(C); - // Check, if initializer is a null-terminated string - if (CVA && CVA->isCString()) + if (const ConstantArray *CVA = dyn_cast<ConstantArray>(C)) { + if (ATy->getNumElements() == 0) return false; + + ConstantInt *Null = + dyn_cast<ConstantInt>(CVA->getOperand(ATy->getNumElements()-1)); + if (Null == 0 || Null->getZExtValue() != 0) + return false; // Not null terminated. + + // Verify that the null doesn't occur anywhere else in the string. + for (unsigned i = 0, e = ATy->getNumElements()-1; i != e; ++i) + // Reject constantexpr elements etc. + if (!isa<ConstantInt>(CVA->getOperand(i)) || + CVA->getOperand(i) == Null) + return false; return true; + } // Another possibility: [1 x i8] zeroinitializer if (isa<ConstantAggregateZero>(C)) - if (const ArrayType *Ty = dyn_cast<ArrayType>(C->getType())) - return (Ty->getElementType() == Type::Int8Ty && - Ty->getNumElements() == 1); + return ATy->getNumElements() == 1; return false; } @@ -133,11 +148,23 @@ static SectionKind SectionKindForGlobal(const GlobalValue *GV, default: llvm_unreachable("unknown relocation info kind"); case Constant::NoRelocation: // If initializer is a null-terminated string, put it in a "cstring" - // section if the target has it. - if (isConstantString(C)) - return SectionKind::getMergeable1ByteCString(); - - // FIXME: Detect 2/4 byte strings. + // section of the right width. + if (const ArrayType *ATy = dyn_cast<ArrayType>(C->getType())) { + if (const IntegerType *ITy = + dyn_cast<IntegerType>(ATy->getElementType())) { + if ((ITy->getBitWidth() == 8 || ITy->getBitWidth() == 16 || + ITy->getBitWidth() == 32) && + IsNullTerminatedString(C)) { + if (ITy->getBitWidth() == 8) + return SectionKind::getMergeable1ByteCString(); + if (ITy->getBitWidth() == 16) + return SectionKind::getMergeable2ByteCString(); + + assert(ITy->getBitWidth() == 32 && "Unknown width"); + return SectionKind::getMergeable4ByteCString(); + } + } + } // Otherwise, just drop it into a mergable constant section. If we have // a section for this size, use it, otherwise use the arbitrary sized |