Searched defs:CallSite (Results 1 - 13 of 13) sorted by relevance

/external/clang/test/CodeGenCXX/
H A D2003-11-27-MultipleInheritanceThunk.cpp4 struct CallSite { struct
7 CallSite(const CallSite &CS);
13 virtual int getModRefInfo(CallSite CS);
23 int getModRefInfo(CallSite CS) {
H A Dx86_32-arguments.cpp34 // CHECK: %struct.CallSite* byval align 4 %CS)
35 struct CallSite { struct
37 CallSite(unsigned XX) : Ptr(XX) {} function in struct:CallSite
42 virtual void getModRefInfo(CallSite CS) = 0;
50 void getModRefInfo(CallSite CS);
53 void BasicAliasAnalysis::getModRefInfo(CallSite CS) {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptExterns.js173 function CallSite() function
179 CallSite.prototype.getFileName = function() { }
183 CallSite.prototype.getLineNumber = function() { }
187 CallSite.prototype.getColumnNumber = function() { }
175 CallSite.prototype.getFileName = function() { } class
/external/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp25 const StackFrameContext *CallSite; member in class:__anon15582::CountKey
30 : CallSite(CS), BlockID(ID) {}
33 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID);
37 return (CallSite == RHS.CallSite) ? (BlockID < RHS.BlockID)
38 : (CallSite < RHS.CallSite);
42 ID.AddPointer(CallSite);
59 unsigned BlockCounter::getNumVisited(const StackFrameContext *CallSite, argument
75 IncrementCount(BlockCounter BC, const StackFrameContext *CallSite, unsigned BlockID) argument
[all...]
H A DCallEvent.cpp917 const Stmt *CallSite = CalleeCtx->getCallSite(); local
919 if (CallSite) {
920 if (const CallExpr *CE = dyn_cast<CallExpr>(CallSite))
923 switch (CallSite->getStmtClass()) {
931 return getCXXConstructorCall(cast<CXXConstructExpr>(CallSite),
935 return getCXXAllocatorCall(cast<CXXNewExpr>(CallSite), State, CallerCtx);
937 return getObjCMethodCall(cast<ObjCMessageExpr>(CallSite),
H A DPathDiagnostic.cpp1113 const Stmt *CallSite = CExit.getCalleeContext()->getCallSite(); local
1114 const CallExpr *CE = dyn_cast_or_null<CallExpr>(CallSite);
H A DBugReporter.cpp1247 const Stmt *CallSite = Callee->getCallSite(); local
1248 if (const CallExpr *CE = dyn_cast_or_null<CallExpr>(CallSite)) {
/external/llvm/include/llvm/Support/
H A DCallSite.h1 //===-- llvm/Support/CallSite.h - Abstract Call & Invoke instrs -*- C++ -*-===//
10 // This file defines the CallSite class, which is a handy wrapper for code that
22 // accessors of CallSite are employed.
269 /// hasArgument - Returns true if this CallSite passes the given Value* as an
295 class CallSite : public CallSiteBase<Function, Value, User, Instruction, class in namespace:llvm
300 CallSite() {} function in class:llvm::CallSite
301 CallSite(Base B) : Base(B) {} function in class:llvm::CallSite
302 CallSite(Value* V) : Base(V) {} function in class:llvm::CallSite
303 CallSite(CallInst *CI) : Base(CI) {} function in class:llvm::CallSite
304 CallSite(InvokeIns function in class:llvm::CallSite
305 CallSite(Instruction *II) : Base(II) {} function in class:llvm::CallSite
[all...]
/external/llvm/lib/CodeGen/
H A DSjLjEHPrepare.cpp134 Value *CallSite = Builder.CreateGEP(FuncCtx, Idxs, "call_site"); local
139 Builder.CreateStore(CallSiteNoC, CallSite, true/*volatile*/);
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h272 const Stmt *CallSite; member in class:clang::StackFrameContext
284 : LocationContext(StackFrame, ctx, parent), CallSite(s),
290 const Stmt *getCallSite() const { return CallSite; }
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp301 llvm::CallInst *CallSite = Builder.CreateCall( local
308 CallSite
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp135 const MutexGuard &locked, void *CallSite) const {
142 CallSiteToFunctionMap.upper_bound(CallSite);
149 void AddCallSite(const MutexGuard &locked, void *CallSite, Function *F) { argument
153 std::make_pair(CallSite, F)).second;
156 FunctionToCallSitesMap[F].insert(CallSite);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 226 milliseconds