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

  /external/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/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 542 CallInst *TheCall = CallInst::Create(F, Args, "", StubBB);
543 TheCall->setCallingConv(F->getCallingConv());
544 TheCall->setTailCall();
545 if (!TheCall->getType()->isVoidTy())
547 ReturnInst::Create(F->getContext(), TheCall, StubBB);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 330 static Value *HandleByValArgument(Value *Arg, Instruction *TheCall,
370 Function *Caller = TheCall->getParent()->getParent();
379 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);
380 Value *SrcCast = new BitCastInst(Arg, VoidPtrTy, "tmp", TheCall);
397 IRBuilder<>(TheCall).CreateCall(MemCpyFn, CallArgs);
458 Instruction *TheCall) {
459 DebugLoc TheCallDL = TheCall->getDebugLoc();
491 Instruction *TheCall = CS.getInstruction();
492 assert(TheCall->getParent() && TheCall->getParent()->getParent() &
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp 73 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) {
74 if (checkArgCount(S, TheCall, 2))
78 Expr *ValArg = TheCall->getArg(0);
87 Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts();
95 TheCall->setType(Ty);
100 Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
101 ExprResult TheCallResult(Owned(TheCall));
116 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
123 assert(TheCall->getNumArgs() == 1 &&
125 if (CheckObjCString(TheCall->getArg(0))
    [all...]
SemaOverload.cpp     [all...]
TreeTransform.h     [all...]
SemaExpr.cpp     [all...]

Completed in 280 milliseconds