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 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);
99 Sema::CheckBuiltinFunctionCall(unsigned BuiltinID, CallExpr *TheCall) {
100 ExprResult TheCallResult(Owned(TheCall));
115 if (SemaBuiltinConstantArg(TheCall, ArgNo, Result))
122 assert(TheCall->getNumArgs() == 1 &&
124 if (CheckObjCString(TheCall->getArg(0))
    [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp     [all...]
TreeTransform.h     [all...]
  /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...]
CloneFunction.cpp 371 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 154 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 553 const Instruction *TheCall = CS.getInstruction();
554 if (!TheCall) { // Not a direct call site?
566 for (Value::const_use_iterator I = TheCall->use_begin(),
567 E = TheCall->use_end(); I != E; ++I) {
589 RetValLiveness[0] = SurveyUses(TheCall, MaybeLiveRetUses[0]);
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp     [all...]

Completed in 173 milliseconds