HomeSort by relevance Sort by last modified time
    Searched refs:NewCI (Results 1 - 14 of 14) sorted by null

  /frameworks/compile/libbcc/lib/
RSX86CallConvPass.cpp 149 auto NewCI = llvm::CallInst::Create(NewFn, Args, "", CI);
155 NewCI->addAttribute(i+1, llvm::Attribute::ByVal);
158 NewCI->setTailCall();
161 CI->replaceAllUsesWith(NewCI);
  /external/spirv-llvm/lib/SPIRV/
OCL20ToSPIRV.cpp 583 CallInst *NewCI = nullptr;
596 NewCI = NCI;
602 return NewCI;
    [all...]
SPIRVReader.cpp     [all...]
SPIRVUtil.cpp 654 auto NewCI = addCallInst(M, NewName, CI->getType(), Args, Attrs, CI, Mangle,
656 DEBUG(dbgs() << " => " << *NewCI << '\n');
657 CI->replaceAllUsesWith(NewCI);
660 return NewCI;
679 auto NewCI = addCallInst(M, NewName, RetTy, Args, Attrs,
681 auto NewI = RetMutate(NewCI);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 102 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(),
104 NewCI->setDebugLoc(FirstInst->getDebugLoc());
105 return NewCI;
550 CastInst *NewCI = CastInst::Create(FirstCI->getOpcode(), PhiVal,
552 NewCI->setDebugLoc(FirstInst->getDebugLoc());
553 return NewCI;
568 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(),
570 NewCI->setDebugLoc(FirstInst->getDebugLoc());
571 return NewCI;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombinePHI.cpp 114 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(),
116 NewCI->setDebugLoc(FirstInst->getDebugLoc());
117 return NewCI;
484 CastInst *NewCI = CastInst::Create(FirstCI->getOpcode(), PhiVal,
486 NewCI->setDebugLoc(FirstInst->getDebugLoc());
487 return NewCI;
500 CmpInst *NewCI = CmpInst::Create(CIOp->getOpcode(), CIOp->getPredicate(),
502 NewCI->setDebugLoc(FirstInst->getDebugLoc());
503 return NewCI;
    [all...]
  /external/llvm/lib/CodeGen/
AtomicExpandPass.cpp 746 // %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(
812 NewCI->setVolatile(CI->isVolatile());
818 NewCI->setWeak(CI->isWeak());
820 Value *OldVal = Builder.CreateExtractValue(NewCI, 0)
    [all...]
IntrinsicLowering.cpp 80 CallInst *NewCI = Builder.CreateCall(FCache, Args);
81 NewCI->setName(CI->getName());
83 CI->replaceAllUsesWith(NewCI);
84 return NewCI;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
IntrinsicLowering.cpp 80 CallInst *NewCI = Builder.CreateCall(FCache, Args);
81 NewCI->setName(CI->getName());
83 CI->replaceAllUsesWith(NewCI);
84 return NewCI;
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AutoUpgrade.cpp 316 CallInst *NewCI = CallInst::Create(NewFn, Operands,
318 NewCI->setTailCall(CI->isTailCall());
319 NewCI->setCallingConv(CI->getCallingConv());
324 CI->replaceAllUsesWith(NewCI);
  /external/llvm/lib/Target/X86/
X86WinEHState.cpp 492 CallInst *NewCI = Builder.CreateCall(SetJmp3, Args, OpBundles);
493 NewCI->setTailCallKind(CI->getTailCallKind());
494 NewCS = NewCI;
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolutionExpander.cpp 45 Instruction *NewCI = CastInst::Create(Op, V, Ty, "", IP);
46 NewCI->takeName(CI);
47 CI->replaceAllUsesWith(NewCI);
49 rememberInstruction(NewCI);
50 return NewCI;
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp 324 auto *NewCI = CallInst::Create(CI->getCalledValue(), Args, OpB, CI->getName(),
326 NewCI->setTailCallKind(CI->getTailCallKind());
327 NewCI->setCallingConv(CI->getCallingConv());
328 NewCI->SubclassOptionalData = CI->SubclassOptionalData;
329 NewCI->setAttributes(CI->getAttributes());
330 NewCI->setDebugLoc(CI->getDebugLoc());
331 return NewCI;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]

Completed in 633 milliseconds