Searched defs:NewCI (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp80 CallInst *NewCI = Builder.CreateCall(FCache, Args); local
81 NewCI->setName(CI->getName());
83 CI->replaceAllUsesWith(NewCI);
84 return NewCI;
H A DAtomicExpandPass.cpp746 // %NewCI = cmpxchg i32* %PMV.AlignedAddr, i32 %FullWord_Cmp,
748 // %OldVal = extractvalue { i32, i1 } %NewCI, 0
749 // %Success = extractvalue { i32, i1 } %NewCI, 1
809 AtomicCmpXchgInst *NewCI = Builder.CreateAtomicCmpXchg( local
812 NewCI->setVolatile(CI->isVolatile());
818 NewCI->setWeak(CI->isWeak());
820 Value *OldVal = Builder.CreateExtractValue(NewCI, 0);
821 Value *Success = Builder.CreateExtractValue(NewCI, 1);
931 auto *NewCI = Builder.CreateAtomicCmpXchg(NewAddr, NewCmp, NewNewVal, local
935 NewCI
937 DEBUG(dbgs() << "Replaced " << *CI << " with " << *NewCI << "\\n"); local
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DIntrinsicLowering.cpp80 CallInst *NewCI = Builder.CreateCall(FCache, Args); local
81 NewCI->setName(CI->getName());
83 CI->replaceAllUsesWith(NewCI);
84 return NewCI;
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DAutoUpgrade.cpp316 CallInst *NewCI = CallInst::Create(NewFn, Operands, local
318 NewCI->setTailCall(CI->isTailCall());
319 NewCI->setCallingConv(CI->getCallingConv());
324 CI->replaceAllUsesWith(NewCI);
/external/llvm/lib/Target/X86/
H A DX86WinEHState.cpp492 CallInst *NewCI = Builder.CreateCall(SetJmp3, Args, OpBundles); local
493 NewCI->setTailCallKind(CI->getTailCallKind());
494 NewCS = NewCI;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp102 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(), local
104 NewCI->setDebugLoc(FirstInst->getDebugLoc());
105 return NewCI;
550 CastInst *NewCI = CastInst::Create(FirstCI->getOpcode(), PhiVal, local
552 NewCI->setDebugLoc(FirstInst->getDebugLoc());
553 return NewCI;
568 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(), local
570 NewCI->setDebugLoc(FirstInst->getDebugLoc());
571 return NewCI;
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp114 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(), local
116 NewCI->setDebugLoc(FirstInst->getDebugLoc());
117 return NewCI;
484 CastInst *NewCI = CastInst::Create(FirstCI->getOpcode(), PhiVal, local
486 NewCI->setDebugLoc(FirstInst->getDebugLoc());
487 return NewCI;
500 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(), local
502 NewCI->setDebugLoc(FirstInst->getDebugLoc());
503 return NewCI;
/external/spirv-llvm/lib/SPIRV/
H A DOCL20ToSPIRV.cpp583 CallInst *NewCI = nullptr; local
596 NewCI = NCI;
602 return NewCI;
982 [=](CallInst *NewCI) -> Instruction * {
983 if (NewCI->getType()->isIntegerTy() && CI->getType()->isIntegerTy())
984 return CastInst::CreateIntegerCast(NewCI, CI->getType(),
988 NewCI, CI->getType(), "", CI);
1289 [=](CallInst *NewCI) -> Instruction * {
1291 if (NewCI->getType()->isVectorTy()) {
1293 if (cast<VectorType>(NewCI
[all...]
H A DSPIRVUtil.cpp654 auto NewCI = addCallInst(M, NewName, CI->getType(), Args, Attrs, CI, Mangle, local
656 DEBUG(dbgs() << " => " << *NewCI << '\n');
657 CI->replaceAllUsesWith(NewCI);
660 return NewCI;
679 auto NewCI = addCallInst(M, NewName, RetTy, Args, Attrs, local
681 auto NewI = RetMutate(NewCI);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolutionExpander.cpp45 Instruction *NewCI = CastInst::Create(Op, V, Ty, "", IP); local
46 NewCI->takeName(CI);
47 CI->replaceAllUsesWith(NewCI);
49 rememberInstruction(NewCI);
50 return NewCI;

Completed in 561 milliseconds