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

  /external/clang/lib/Sema/
SemaChecking.cpp 51 bool Sema::CheckablePrintfAttr(const FormatAttr *Format, CallExpr *TheCall) {
57 if (isa<CXXMemberCallExpr>(TheCall)) {
62 if (format_idx < TheCall->getNumArgs()) {
63 Expr *Format = TheCall->getArg(format_idx)->IgnoreParenCasts();
106 Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
107 ExprResult TheCallResult(Owned(TheCall));
122 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
129 assert(TheCall->getNumArgs() == 1 &&
131 if (CheckObjCString(TheCall->getArg(0)))
136 if (SemaBuiltinVAStart(TheCall))
    [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]
  /external/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...]
CloneFunction.cpp 354 Instruction *TheCall) {
396 if (TheCall)
397 TheCallDL = TheCall->getDebugLoc();
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 241 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) {
243 const FunctionDecl *FD = TheCall->getDirectCallee();
254 if (TheCall->getNumArgs() == 1)
255 CheckMallocArgument(PossibleMallocOverflows, TheCall->getArg(0),
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 168 Instruction *TheCall = 0);
  /external/llvm/lib/Analysis/
InlineCost.cpp 431 Instruction *TheCall = CS.getInstruction();
443 if (InvokeInst *II = dyn_cast<InvokeInst>(TheCall)) {
446 } else if (isa<UnreachableInst>(++BasicBlock::iterator(TheCall)))
480 Instruction *TheCall = CS.getInstruction();
481 Function *Caller = TheCall->getParent()->getParent();
  /external/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/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/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 726 milliseconds