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

1 2

  /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...]
  /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...]
CloneFunction.cpp 354 Instruction *TheCall) {
396 if (TheCall)
397 TheCallDL = TheCall->getDebugLoc();
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 309 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) {
311 const FunctionDecl *FD = TheCall->getDirectCallee();
322 if (TheCall->getNumArgs() == 1)
323 CheckMallocArgument(PossibleMallocOverflows, TheCall->getArg(0),
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
Cloning.h 168 Instruction *TheCall = 0);
  /external/llvm/include/llvm/Transforms/Utils/
Cloning.h 172 Instruction *TheCall = nullptr);
  /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/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);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Cloning.h 169 Instruction *TheCall = nullptr);
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 1660 milliseconds

1 2