mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
Try to reduce the compile time impact of r161232.
The previous change caused fast isel to not attempt handling any calls to builtin functions. That included things like "printf" and caused some noticable regressions in compile time. I wanted to avoid having fast isel keep a separate list of functions that had to be kept in sync with what the code in SelectionDAGBuilder.cpp was handling. I've resolved that here by moving the list into TargetLibraryInfo. This is somewhat redundant in SelectionDAGBuilder but it will ensure that we keep things consistent. llvm-svn: 161263
This commit is contained in:
parent
7d92f01d57
commit
7e2fb62620
@ -285,6 +285,31 @@ public:
|
||||
return getState(F) != Unavailable;
|
||||
}
|
||||
|
||||
/// hasOptimizedCodeGen - Return true if the function is both available as
|
||||
/// a builtin and a candidate for optimized code generation.
|
||||
bool hasOptimizedCodeGen(LibFunc::Func F) const {
|
||||
if (getState(F) == Unavailable)
|
||||
return false;
|
||||
switch (F) {
|
||||
default: break;
|
||||
case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl:
|
||||
case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl:
|
||||
case LibFunc::sin: case LibFunc::sinf: case LibFunc::sinl:
|
||||
case LibFunc::cos: case LibFunc::cosf: case LibFunc::cosl:
|
||||
case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl:
|
||||
case LibFunc::floor: case LibFunc::floorf: case LibFunc::floorl:
|
||||
case LibFunc::nearbyint: case LibFunc::nearbyintf: case LibFunc::nearbyintl:
|
||||
case LibFunc::ceil: case LibFunc::ceilf: case LibFunc::ceill:
|
||||
case LibFunc::rint: case LibFunc::rintf: case LibFunc::rintl:
|
||||
case LibFunc::trunc: case LibFunc::truncf: case LibFunc::truncl:
|
||||
case LibFunc::log2: case LibFunc::log2f: case LibFunc::log2l:
|
||||
case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
|
||||
case LibFunc::memcmp:
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
StringRef getName(LibFunc::Func F) const {
|
||||
AvailabilityState State = getState(F);
|
||||
if (State == Unavailable)
|
||||
|
@ -790,15 +790,14 @@ FastISel::SelectInstruction(const Instruction *I) {
|
||||
|
||||
MachineBasicBlock::iterator SavedInsertPt = FuncInfo.InsertPt;
|
||||
|
||||
// As a special case, don't even try to handle calls to builtin library
|
||||
// functions so that calls to builtin functions get translated to
|
||||
// instructions when supported by the target.
|
||||
// As a special case, don't handle calls to builtin library functions that
|
||||
// may be translated directly to target instructions.
|
||||
if (const CallInst *Call = dyn_cast<CallInst>(I)) {
|
||||
const Function *F = Call->getCalledFunction();
|
||||
LibFunc::Func Func;
|
||||
if (F && !F->hasLocalLinkage() && F->hasName() &&
|
||||
LibInfo->getLibFunc(F->getName(), Func) &&
|
||||
LibInfo->has(Func))
|
||||
LibInfo->hasOptimizedCodeGen(Func))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -5541,11 +5541,15 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
|
||||
// Check for well-known libc/libm calls. If the function is internal, it
|
||||
// can't be a library call.
|
||||
if (!F->hasLocalLinkage() && F->hasName()) {
|
||||
StringRef Name = F->getName();
|
||||
if ((LibInfo->has(LibFunc::copysign) && Name == "copysign") ||
|
||||
(LibInfo->has(LibFunc::copysignf) && Name == "copysignf") ||
|
||||
(LibInfo->has(LibFunc::copysignl) && Name == "copysignl")) {
|
||||
LibFunc::Func Func;
|
||||
if (!F->hasLocalLinkage() && F->hasName() &&
|
||||
LibInfo->getLibFunc(F->getName(), Func) &&
|
||||
LibInfo->hasOptimizedCodeGen(Func)) {
|
||||
switch (Func) {
|
||||
default: break;
|
||||
case LibFunc::copysign:
|
||||
case LibFunc::copysignf:
|
||||
case LibFunc::copysignl:
|
||||
if (I.getNumArgOperands() == 2 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType() &&
|
||||
@ -5556,9 +5560,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
LHS.getValueType(), LHS, RHS));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::fabs) && Name == "fabs") ||
|
||||
(LibInfo->has(LibFunc::fabsf) && Name == "fabsf") ||
|
||||
(LibInfo->has(LibFunc::fabsl) && Name == "fabsl")) {
|
||||
break;
|
||||
case LibFunc::fabs:
|
||||
case LibFunc::fabsf:
|
||||
case LibFunc::fabsl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType()) {
|
||||
@ -5567,9 +5572,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::sin) && Name == "sin") ||
|
||||
(LibInfo->has(LibFunc::sinf) && Name == "sinf") ||
|
||||
(LibInfo->has(LibFunc::sinl) && Name == "sinl")) {
|
||||
break;
|
||||
case LibFunc::sin:
|
||||
case LibFunc::sinf:
|
||||
case LibFunc::sinl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType() &&
|
||||
@ -5579,9 +5585,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::cos) && Name == "cos") ||
|
||||
(LibInfo->has(LibFunc::cosf) && Name == "cosf") ||
|
||||
(LibInfo->has(LibFunc::cosl) && Name == "cosl")) {
|
||||
break;
|
||||
case LibFunc::cos:
|
||||
case LibFunc::cosf:
|
||||
case LibFunc::cosl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType() &&
|
||||
@ -5591,9 +5598,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::sqrt) && Name == "sqrt") ||
|
||||
(LibInfo->has(LibFunc::sqrtf) && Name == "sqrtf") ||
|
||||
(LibInfo->has(LibFunc::sqrtl) && Name == "sqrtl")) {
|
||||
break;
|
||||
case LibFunc::sqrt:
|
||||
case LibFunc::sqrtf:
|
||||
case LibFunc::sqrtl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType() &&
|
||||
@ -5603,9 +5611,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::floor) && Name == "floor") ||
|
||||
(LibInfo->has(LibFunc::floorf) && Name == "floorf") ||
|
||||
(LibInfo->has(LibFunc::floorl) && Name == "floorl")) {
|
||||
break;
|
||||
case LibFunc::floor:
|
||||
case LibFunc::floorf:
|
||||
case LibFunc::floorl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType()) {
|
||||
@ -5614,9 +5623,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::nearbyint) && Name == "nearbyint") ||
|
||||
(LibInfo->has(LibFunc::nearbyintf) && Name == "nearbyintf") ||
|
||||
(LibInfo->has(LibFunc::nearbyintl) && Name == "nearbyintl")) {
|
||||
break;
|
||||
case LibFunc::nearbyint:
|
||||
case LibFunc::nearbyintf:
|
||||
case LibFunc::nearbyintl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType()) {
|
||||
@ -5625,9 +5635,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::ceil) && Name == "ceil") ||
|
||||
(LibInfo->has(LibFunc::ceilf) && Name == "ceilf") ||
|
||||
(LibInfo->has(LibFunc::ceill) && Name == "ceill")) {
|
||||
break;
|
||||
case LibFunc::ceil:
|
||||
case LibFunc::ceilf:
|
||||
case LibFunc::ceill:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType()) {
|
||||
@ -5636,9 +5647,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::rint) && Name == "rint") ||
|
||||
(LibInfo->has(LibFunc::rintf) && Name == "rintf") ||
|
||||
(LibInfo->has(LibFunc::rintl) && Name == "rintl")) {
|
||||
break;
|
||||
case LibFunc::rint:
|
||||
case LibFunc::rintf:
|
||||
case LibFunc::rintl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType()) {
|
||||
@ -5647,9 +5659,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::trunc) && Name == "trunc") ||
|
||||
(LibInfo->has(LibFunc::truncf) && Name == "truncf") ||
|
||||
(LibInfo->has(LibFunc::truncl) && Name == "truncl")) {
|
||||
break;
|
||||
case LibFunc::trunc:
|
||||
case LibFunc::truncf:
|
||||
case LibFunc::truncl:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType()) {
|
||||
@ -5658,9 +5671,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::log2) && Name == "log2") ||
|
||||
(LibInfo->has(LibFunc::log2f) && Name == "log2f") ||
|
||||
(LibInfo->has(LibFunc::log2l) && Name == "log2l")) {
|
||||
break;
|
||||
case LibFunc::log2:
|
||||
case LibFunc::log2f:
|
||||
case LibFunc::log2l:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType() &&
|
||||
@ -5670,9 +5684,10 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::exp2) && Name == "exp2") ||
|
||||
(LibInfo->has(LibFunc::exp2f) && Name == "exp2f") ||
|
||||
(LibInfo->has(LibFunc::exp2l) && Name == "exp2l")) {
|
||||
break;
|
||||
case LibFunc::exp2:
|
||||
case LibFunc::exp2f:
|
||||
case LibFunc::exp2l:
|
||||
if (I.getNumArgOperands() == 1 && // Basic sanity checks.
|
||||
I.getArgOperand(0)->getType()->isFloatingPointTy() &&
|
||||
I.getType() == I.getArgOperand(0)->getType() &&
|
||||
@ -5682,9 +5697,11 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
||||
Tmp.getValueType(), Tmp));
|
||||
return;
|
||||
}
|
||||
} else if ((LibInfo->has(LibFunc::memcmp) && Name == "memcmp")) {
|
||||
break;
|
||||
case LibFunc::memcmp:
|
||||
if (visitMemCmpCall(I))
|
||||
return;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user