HomeSort by relevance Sort by last modified time
    Searched defs:TheCall (Results 1 - 9 of 9) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Analysis/
InlineCost.cpp 432 Instruction *TheCall = CS.getInstruction();
444 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
447 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
481 Instruction *TheCall = CS.getInstruction();
482 Function *Caller = TheCall->getParent()->getParent();
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 522 const Instruction *TheCall = CS.getInstruction();
523 if (!TheCall) { // Not a direct call site?
536 for (const Use &U : TheCall->uses()) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
DeadArgumentElimination.cpp 507 const Instruction *TheCall = CS.getInstruction();
508 if (!TheCall) { // Not a direct call site?
520 for (Value::const_use_iterator I = TheCall->use_begin(),
521 E = TheCall->use_end(); I != E; ++I) {
543 RetValLiveness[0] = SurveyUses(TheCall, MaybeLiveRetUses[0]);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JIT.cpp 536 CallInst *TheCall = CallInst::Create(F, Args, "", StubBB);
537 TheCall->setCallingConv(F->getCallingConv());
538 TheCall->setTailCall();
539 if (!TheCall->getType()->isVoidTy())
541 ReturnInst::Create(F->getContext(), TheCall, StubBB);
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
InlineFunction.cpp 730 static Value *HandleByValArgument(Value *Arg, Instruction *TheCall,
770 Function *Caller = TheCall->getParent()->getParent();
779 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);
780 Value *SrcCast = new BitCastInst(Arg, VoidPtrTy, "tmp", TheCall);
797 IRBuilder<>(TheCall).CreateCall(MemCpyFn, CallArgs);
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 76 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) {
77 if (checkArgCount(S, TheCall, 2))
81 Expr *ValArg = TheCall->getArg(0);
90 Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts();
98 TheCall->setType(Ty);
104 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) {
105 if (checkArgCount(S, TheCall, 1))
108 ExprResult Arg(TheCall->getArg(0));
109 QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getLocStart());
113 TheCall->setArg(0, Arg.get())
    [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]

Completed in 595 milliseconds