/external/clang/lib/Sema/ |
SemaChecking.cpp | 72 static bool SemaBuiltinAnnotation(Sema &S, CallExpr *TheCall) { 73 if (checkArgCount(S, TheCall, 2)) 77 Expr *ValArg = TheCall->getArg(0); 86 Expr *StrArg = TheCall->getArg(1)->IgnoreParenCasts(); 94 TheCall->setType(Ty); 100 static bool SemaBuiltinAddressof(Sema &S, CallExpr *TheCall) { 101 if (checkArgCount(S, TheCall, 1)) 104 ExprResult Arg(S.Owned(TheCall->getArg(0))); 105 QualType ResultType = S.CheckAddressOfOperand(Arg, TheCall->getLocStart()); 109 TheCall->setArg(0, Arg.take()) [all...] |
SemaOverload.cpp | [all...] |
SemaExpr.cpp | [all...] |
TreeTransform.h | [all...] |
/external/llvm/lib/Transforms/Utils/ |
InlineFunction.cpp | 340 static Value *HandleByValArgument(Value *Arg, Instruction *TheCall, 380 Function *Caller = TheCall->getParent()->getParent(); 389 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall); 390 Value *SrcCast = new BitCastInst(Arg, VoidPtrTy, "tmp", TheCall); 407 IRBuilder<>(TheCall).CreateCall(MemCpyFn, CallArgs); 468 Instruction *TheCall) { 469 DebugLoc TheCallDL = TheCall->getDebugLoc(); 501 Instruction *TheCall = CS.getInstruction(); 502 assert(TheCall->getParent() && TheCall->getParent()->getParent() & [all...] |
CloneFunction.cpp | 372 Instruction *TheCall) {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
MallocOverflowSecurityChecker.cpp | 240 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) { 242 const FunctionDecl *FD = TheCall->getDirectCallee(); 253 if (TheCall->getNumArgs() == 1) 254 CheckMallocArgument(PossibleMallocOverflows, TheCall->getArg(0),
|
/external/llvm/include/llvm/Transforms/Utils/ |
Cloning.h | 155 Instruction *TheCall = 0);
|
/external/llvm/lib/ExecutionEngine/JIT/ |
JIT.cpp | 543 CallInst *TheCall = CallInst::Create(F, Args, "", StubBB); 544 TheCall->setCallingConv(F->getCallingConv()); 545 TheCall->setTailCall(); 546 if (!TheCall->getType()->isVoidTy()) 548 ReturnInst::Create(F->getContext(), TheCall, StubBB);
|
/external/llvm/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | 563 const Instruction *TheCall = CS.getInstruction(); 564 if (!TheCall) { // Not a direct call site? 576 for (Value::const_use_iterator I = TheCall->use_begin(), 577 E = TheCall->use_end(); I != E; ++I) { 599 RetValLiveness[0] = SurveyUses(TheCall, MaybeLiveRetUses[0]); [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | [all...] |
/external/clang/lib/CodeGen/ |
CGObjC.cpp | [all...] |