Searched defs:Call (Results 51 - 75 of 87) sorted by relevance

1234

/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h316 enum Kind { ControlFlow, Event, Macro, Call }; enumerator in enum:clang::ento::PathDiagnosticPiece::Kind
503 : PathDiagnosticPiece(Call), Caller(callerD), Callee(0),
507 : PathDiagnosticPiece(Call), Caller(caller), Callee(0),
565 return P->getKind() == Call;
/external/clang/lib/AST/
H A DStmtPrinter.cpp863 void StmtPrinter::PrintCallArgs(CallExpr *Call) { argument
864 for (unsigned i = 0, e = Call->getNumArgs(); i != e; ++i) {
865 if (isa<CXXDefaultArgExpr>(Call->getArg(i))) {
871 PrintExpr(Call->getArg(i));
875 void StmtPrinter::VisitCallExpr(CallExpr *Call) { argument
876 PrintExpr(Call->getCallee());
878 PrintCallArgs(Call);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp130 void checkPreObjCMessage(const ObjCMethodCall &Call, CheckerContext &C) const;
146 const CallEvent *Call) const;
207 bool doesNotFreeMemory(const CallEvent *Call,
490 static bool isFreeWhenDoneSetToZero(const ObjCMethodCall &Call) { argument
491 Selector S = Call.getSelector();
494 if (Call.getArgSVal(i).isConstant(0))
500 void MallocChecker::checkPreObjCMessage(const ObjCMethodCall &Call, argument
508 Selector S = Call.getSelector();
512 !isFreeWhenDoneSetToZero(Call)){
514 C.addTransition(FreeMemAux(C, Call
1306 doesNotFreeMemory(const CallEvent *Call, ProgramStateRef State) const argument
[all...]
H A DRetainCountChecker.cpp758 const RetainSummary *getSummary(const CallEvent &Call,
805 const CallEvent &Call);
928 const CallEvent &Call) {
929 if (Call.hasNonZeroCallbackArg()) {
949 if (const FunctionCall *FC = dyn_cast<FunctionCall>(&Call)) {
973 if (const ObjCMethodCall *MC = dyn_cast<ObjCMethodCall>(&Call)) {
992 RetainSummaryManager::getSummary(const CallEvent &Call, argument
995 switch (Call.getKind()) {
997 Summ = getFunctionSummary(cast<FunctionCall>(Call).getDecl());
1008 const ObjCMethodCall &Msg = cast<ObjCMethodCall>(Call);
927 updateSummaryForCall(const RetainSummary *&S, const CallEvent &Call) argument
1948 CallEventRef<ObjCMethodCall> Call local
2726 checkPostCall(const CallEvent &Call, CheckerContext &C) const argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp188 const CallEvent *Call) {
190 Explicits, Regions, Call);
284 // Call checkers with the non-cleaned state so that they could query the
1966 Out << "\\|Call to function marked \"noreturn\".";
1968 Out << "\\|Call to NULL/Undefined.";
184 processRegionChanges(ProgramStateRef state, const StoreManager::InvalidatedSymbols *invalidated, ArrayRef<const MemRegion *> Explicits, ArrayRef<const MemRegion *> Regions, const CallEvent *Call) argument
H A DPathDiagnostic.cpp69 case PathDiagnosticPiece::Call: {
70 PathDiagnosticCallPiece *Call = cast<PathDiagnosticCallPiece>(Piece); local
72 Call->getCallEnterEvent();
75 Call->path.flattenTo(Primary, Primary, ShouldFlattenMacros);
77 Call->getCallExitEvent();
287 case clang::ento::PathDiagnosticPiece::Call:
H A DRegionStore.cpp227 const CallEvent *Call,
806 const CallEvent *Call,
830 if (Call && Call->isInSystemHeader()) {
801 invalidateRegions(Store store, ArrayRef<const MemRegion *> Regions, const Expr *Ex, unsigned Count, const LocationContext *LCtx, InvalidatedSymbols &IS, const CallEvent *Call, InvalidatedRegions *Invalidated) argument
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp198 // Call handling routines.
215 bool ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call);
1825 // Call Handling Code
2160 bool ARMFastISel::ARMEmitLibcall(const Instruction *I, RTLIB::Libcall Call) { argument
2161 CallingConv::ID CC = TLI.getLibcallCallingConv(Call);
2217 CalleeReg = getLibcallReg(TLI.getLibcallName(Call));
2231 MIB.addExternalSymbol(TLI.getLibcallName(Call));
2717 case Instruction::Call:
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp364 SDValue Call, SDValue OrigChain) {
386 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
390 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
391 Ops.push_back(Call.getOperand(i));
392 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
363 MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load, SDValue Call, SDValue OrigChain) argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1207 CallInst *Call = dyn_cast<CallInst>(CI.getOperand(0)); local
1208 if (Call && Call->getCalledFunction() && TLI->has(LibFunc::sqrtf) &&
1209 Call->getCalledFunction()->getName() == TLI->getName(LibFunc::sqrt) &&
1210 Call->getNumArgOperands() == 1 &&
1211 Call->hasOneUse()) {
1212 CastInst *Arg = dyn_cast<CastInst>(Call->getArgOperand(0));
1215 Call->getType()->isDoubleTy() &&
1218 Function *Callee = Call->getCalledFunction();
1230 // Remove the old Call
[all...]
H A DInstCombineCompares.cpp1731 CallInst *Call = Builder->CreateCall2(F, TruncA, TruncB, "sadd"); local
1732 Value *Add = Builder->CreateExtractValue(Call, 0, "sadd.result");
1740 return ExtractValueInst::Create(Call, 1, "sadd.overflow");
1763 CallInst *Call = Builder->CreateCall2(F, LHS, RHS, "uadd"); local
1764 Value *Add = Builder->CreateExtractValue(Call, 0);
1769 return ExtractValueInst::Create(Call, 1, "uadd.overflow");
2989 case Instruction::Call: {
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp445 CallInst *Call = IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex], local
447 // We don't do Call->setDoesNotReturn() because the BB already has
451 return Call;
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp794 // Call LLVM's EH setjmp, which is lightweight.
803 // Call LLVM's EH longjmp, which is lightweight.
1010 // Call "bool __atomic_is_lock_free(size_t size, void *ptr)". For the
1691 // Call the appropriate intrinsic.
2615 Value *Call = Builder.CreateCall(CGM.getIntrinsic(ID)); local
2616 Builder.CreateStore(Builder.CreateExtractValue(Call, 0), Ops[0]);
2617 return Builder.CreateExtractValue(Call, 1);
H A DCGException.cpp542 // Call __cxa_call_unexpected. This doesn't need to be an invoke
925 llvm::CallInst *Call = CGF.Builder.CreateCall(getBeginCatchFn(CGF), Exn); local
926 Call->setDoesNotThrow();
930 return Call;
1082 // Call the copy ctor in a terminate scope.
H A DCGDebugInfo.cpp1409 // Call it the FieldNo+1 due to how debuggers use the information,
2325 llvm::Instruction *Call = local
2327 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2341 llvm::Instruction *Call = local
2343 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2354 llvm::Instruction *Call = local
2356 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2384 llvm::Instruction *Call = local
2386 Call->setDebugLoc(llvm::DebugLoc::get(Line, Column, Scope));
2452 llvm::Instruction *Call local
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml190 | Call Constructor in type:Opcode/t
/external/valgrind/main/VEX/priv/
H A Dhost_amd64_defs.h483 /* Pseudo-insn. Call target (an absolute address), on given
489 } Call; member in union:__anon13043::__anon13044
H A Dhost_arm_defs.h693 /* Pseudo-insn. Call target (an absolute address), on given
699 } Call; member in union:__anon13130::__anon13131
H A Dhost_ppc_defs.h570 /* Pseudo-insn. Call target (an absolute address), on given
579 } Call; member in union:__anon13211::__anon13212
H A Dhost_x86_defs.h440 /* Pseudo-insn. Call target (an absolute address), on given
446 } Call; member in union:__anon13328::__anon13329
/external/llvm/lib/Transforms/Scalar/
H A DObjCARC.cpp288 case Instruction::Call: {
2154 const Instruction *Call = CS.getInstruction(); local
2155 if (!Call) return;
2156 if (Call->getParent() != Retain->getParent()) return;
2159 BasicBlock::const_iterator I = Call;
2179 if (const Instruction *Call = CS.getInstruction()) {
2180 if (Call->getParent() == RetainRV->getParent()) {
2181 BasicBlock::const_iterator I = Call;
2186 } else if (const InvokeInst *II = dyn_cast<InvokeInst>(Call)) {
2322 CallInst *Call local
3109 CallInst *Call = local
3126 CallInst *Call = CallInst::Create(getReleaseCallee(M), MyArg, local
3396 CallInst *Call = cast<CallInst>(Inst); local
3426 CallInst *Call = cast<CallInst>(Inst); local
3478 CallInst *Call = cast<CallInst>(Inst); local
3621 CallInst *Call = local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp299 case Instruction::Call:
2597 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, "", II); local
2598 Call->takeName(II);
2599 Call->setCallingConv(II->getCallingConv());
2600 Call->setAttributes(II->getAttributes());
2601 Call->setDebugLoc(II->getDebugLoc());
2607 II->replaceAllUsesWith(Call);
/external/v8/src/arm/
H A Dsimulator-arm.cc800 // reference to a svc (Supervisor Call) instruction that is handled by
1790 PrintF("Call to host function at %p with args %f, %f",
1795 PrintF("Call to host function at %p with arg %f",
1800 PrintF("Call to host function at %p with args %f, %d",
1834 PrintF("Call to host function at %p args %08x",
1851 PrintF("Call to host function at %p args %08x %08x",
1871 "Call to host function at %p"
3324 int32_t Simulator::Call(byte* entry, int argument_count, ...) { function in class:v8::internal::Simulator
/external/v8/src/
H A Ddebug.cc1106 // Call HandleBreakPointx.
2618 // Call UpdateScriptBreakPoints expect no exceptions.
2867 cmd_processor = v8::Object::Cast(*fun->Call(api_exec_state, kArgc, argv));
2913 v8::Local<v8::Value> response_val = fun->Call(cmd_processor, kArgc, argv);
2936 v8::Local<v8::Value> running_val = fun->Call(cmd_processor, kArgc, argv);
3118 Handle<Object> Debugger::Call(Handle<JSFunction> fun, function in class:v8::internal::Debugger
3138 Handle<Object> result = Execution::Call(
3255 // JavaScript. This can happen if the v8::Debug::Call is used in which
3369 // Call toJSONProtocol on the debug event object.
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp4624 if (CallExpr *Call = dyn_cast<CallExpr>(E)) {
4625 Expr *Callee = Call->getCallee()->IgnoreParens();
4857 CallExpr *Call = Rec.DelayedDecltypeCalls[I]; local
4858 if (Call == TopCall)
4861 if (CheckCallReturnType(Call->getCallReturnType(),
4862 Call->getLocStart(),
4863 Call, Call->getDirectCallee()))

Completed in 492 milliseconds

1234