Add objectsize intrinsic and hook it up through codegen. Doesn't

do anything than return "I don't know" at the moment.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85189 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher
2009-10-27 00:52:25 +00:00
parent dd22a45acc
commit 7b5e61707a
3 changed files with 42 additions and 0 deletions
@@ -508,6 +508,27 @@ static bool IsOnlyUsedInZeroEqualityComparison(Value *V) {
return true;
}
//===----------------------------------------------------------------------===//
// Miscellaneous LibCall/Intrinsic Optimizations
//===----------------------------------------------------------------------===//
namespace {
struct SizeOpt : public LibCallOptimization {
virtual Value *CallOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) {
// TODO: We can do more with this, but delaying to here should be no change
// in behavior.
ConstantInt *Const = dyn_cast<ConstantInt>(CI->getOperand(2));
if (!Const) return 0;
if (Const->getZExtValue() < 2)
return Constant::getAllOnesValue(Const->getType());
else
return ConstantInt::get(Const->getType(), 0);
}
};
}
//===----------------------------------------------------------------------===//
// String and Memory LibCall Optimizations
//===----------------------------------------------------------------------===//
@@ -1548,6 +1569,7 @@ namespace {
// Formatting and IO Optimizations
SPrintFOpt SPrintF; PrintFOpt PrintF;
FWriteOpt FWrite; FPutsOpt FPuts; FPrintFOpt FPrintF;
SizeOpt ObjectSize;
bool Modified; // This is only used by doInitialization.
public:
@@ -1653,6 +1675,9 @@ void SimplifyLibCalls::InitOptimizations() {
Optimizations["fwrite"] = &FWrite;
Optimizations["fputs"] = &FPuts;
Optimizations["fprintf"] = &FPrintF;
// Miscellaneous
Optimizations["llvm.objectsize"] = &ObjectSize;
}