diff options
author | Craig Topper <craig.topper@intel.com> | 2018-09-07 19:14:15 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-09-07 19:14:15 +0000 |
commit | 4863313b350bd32f787d443c7ea24f102fb7a0fc (patch) | |
tree | 39adab548940491563bf1a9adff1cb5b0637312d /llvm/lib/IR/AutoUpgrade.cpp | |
parent | 49c2add9fb08f4acfabc9d2093fa37c8375460f3 (diff) | |
download | bcm5719-llvm-4863313b350bd32f787d443c7ea24f102fb7a0fc.tar.gz bcm5719-llvm-4863313b350bd32f787d443c7ea24f102fb7a0fc.zip |
[X86] Modify the the rdtscp intrinsic to return values instead of taking a pointer argument
Similar to what was recently done for addcarry/subborrow and has been done for rdrand/rdseed for a while. It's better to use two results and an explicit store in IR when the store isn't part of the semantics of the instruction. This allows store->load forwarding to happen in the middle end. Or the store to be removed if its never loaded.
Differential Revision: https://reviews.llvm.org/D51803
llvm-svn: 341698
Diffstat (limited to 'llvm/lib/IR/AutoUpgrade.cpp')
-rw-r--r-- | llvm/lib/IR/AutoUpgrade.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/llvm/lib/IR/AutoUpgrade.cpp b/llvm/lib/IR/AutoUpgrade.cpp index 171f82edf20..10cb1ac698d 100644 --- a/llvm/lib/IR/AutoUpgrade.cpp +++ b/llvm/lib/IR/AutoUpgrade.cpp @@ -395,6 +395,17 @@ static bool UpgradeX86IntrinsicFunction(Function *F, StringRef Name, if (Name == "subborrow.u64") return UpgradeADCSBBIntrinsic(F, Intrinsic::x86_subborrow_u64, NewFn); + if (Name == "rdtscp") { + // If this intrinsic has 0 operands, it's the new version. + if (F->getFunctionType()->getNumParams() == 0) + return false; + + rename(F); + NewFn = Intrinsic::getDeclaration(F->getParent(), + Intrinsic::x86_rdtscp); + return true; + } + // SSE4.1 ptest functions may have an old signature. if (Name.startswith("sse41.ptest")) { // Added in 3.2 if (Name.substr(11) == "c") @@ -3441,6 +3452,32 @@ void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) { break; } + case Intrinsic::x86_rdtscp: { + // This used to take 1 arguments. If we have no arguments, it is already + // upgraded. + if (CI->getNumOperands() == 0) + return; + + NewCall = Builder.CreateCall(NewFn); + // Extract the second result and store it. + Value *Data = Builder.CreateExtractValue(NewCall, 1); + // Cast the pointer to the right type. + Value *Ptr = Builder.CreateBitCast(CI->getArgOperand(0), + llvm::PointerType::getUnqual(Data->getType())); + Builder.CreateAlignedStore(Data, Ptr, 1); + // Replace the original call result with the first result of the new call. + Value *TSC = Builder.CreateExtractValue(NewCall, 0); + + std::string Name = CI->getName(); + if (!Name.empty()) { + CI->setName(Name + ".old"); + NewCall->setName(Name); + } + CI->replaceAllUsesWith(TSC); + CI->eraseFromParent(); + return; + } + case Intrinsic::x86_addcarryx_u32: case Intrinsic::x86_addcarryx_u64: case Intrinsic::x86_addcarry_u32: |