HomeSort by relevance Sort by last modified time
    Searched defs:CallSite (Results 1 - 22 of 22) sorted by null

  /art/runtime/mirror/
call_site.h 29 // C++ mirror of java.lang.invoke.CallSite
30 class MANAGED CallSite : public Object {
32 static mirror::CallSite* Create(Thread* const self,
50 return MemberOffset(OFFSETOF_MEMBER(CallSite, target_));
55 static GcRoot<mirror::Class> static_class_; // java.lang.invoke.CallSite.class
58 DISALLOW_IMPLICIT_CONSTRUCTORS(CallSite);
  /external/clang/test/CodeGenCXX/
2003-11-27-MultipleInheritanceThunk.cpp 5 struct CallSite {
8 CallSite(const CallSite &CS);
14 virtual int getModRefInfo(CallSite CS);
24 int getModRefInfo(CallSite CS) {
x86_32-arguments.cpp 34 // CHECK: %struct.CallSite* byval align 4 %CS)
35 struct CallSite {
37 CallSite(unsigned XX) : Ptr(XX) {}
42 virtual void getModRefInfo(CallSite CS) = 0;
50 void getModRefInfo(CallSite CS);
53 void BasicAliasAnalysis::getModRefInfo(CallSite CS) {
  /libcore/ojluni/src/lambda/java/java/lang/invoke/
CallSite.java 29 public class CallSite {
  /frameworks/base/tools/aapt2/link/
Linkers.h 40 struct CallSite {
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 25 const StackFrameContext *CallSite;
30 : CallSite(CS), BlockID(ID) {}
33 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID);
37 return std::tie(CallSite, BlockID) < std::tie(RHS.CallSite, RHS.BlockID);
41 ID.AddPointer(CallSite);
58 unsigned BlockCounter::getNumVisited(const StackFrameContext *CallSite,
61 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID));
75 const StackFrameContext *CallSite,
    [all...]
CallEvent.cpp     [all...]
PathDiagnostic.cpp     [all...]
BugReporter.cpp     [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
CallSite.java 34 * A {@code CallSite} is a holder for a variable {@link MethodHandle},
36 * An {@code invokedynamic} instruction linked to a {@code CallSite} delegates
38 * A {@code CallSite} may be associated with several {@code invokedynamic}
43 * {@code CallSite} is an abstract class which does not allow
79 private static CallSite bootstrapDynamic(MethodHandles.Lookup caller, String name, MethodType type) {
87 public class CallSite {
100 * Before this {@code CallSite} object is returned from a bootstrap method,
102 * via a call to {@link CallSite#setTarget(MethodHandle) setTarget}.
106 CallSite(MethodType type) {
129 CallSite(MethodHandle target)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h 1 //===-- 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.
240 /// hasArgument - Returns true if this CallSite passes the given Value* as an
266 class CallSite : public CallSiteBase<Function, Value, User, Instruction,
271 CallSite() {}
272 CallSite(Base B) : Base(B) {}
273 CallSite(Value* V) : Base(V) {}
274 CallSite(CallInst *CI) : Base(CI) {}
275 CallSite(InvokeInst *II) : Base(II) {
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 279 // The callsite where this stack frame is established.
280 const Stmt *CallSite;
282 // The parent block of the callsite.
285 // The index of the callsite in the CFGBlock.
292 : LocationContext(StackFrame, ctx, parent), CallSite(s),
298 const Stmt *getCallSite() const { return CallSite; }
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 111 Value *CallSite =
117 Builder.CreateStore(CallSiteNoC, CallSite, true /*volatile*/);
  /external/llvm/include/llvm/IR/
CallSite.h 1 //===- 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.
582 /// hasArgument - Returns true if this CallSite passes the given Value* as an
601 class CallSite : public CallSiteBase<Function, BasicBlock, Value, User, Use,
605 CallSite() {}
606 CallSite(CallSiteBase B) : CallSiteBase(B) {}
607 CallSite(CallInst *CI) : CallSiteBase(CI) {}
608 CallSite(InvokeInst *II) : CallSiteBase(II) {}
609 explicit CallSite(Instruction *II) : CallSiteBase(II) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SjLjEHPrepare.cpp 62 Value *CallSite;
82 void insertCallSiteStore(Instruction *I, int Number, Value *CallSite);
83 void markInvokeCallSite(InvokeInst *II, int InvokeNo, Value *CallSite,
140 Value *CallSite) {
144 new StoreInst(CallSiteNoC, CallSite, true, I); // volatile
185 Value *CallSite,
210 insertCallSiteStore(II, InvokeNo, CallSite);
517 CallSite = GetElementPtrInst::Create(FunctionContext, Idxs, "call_site",
572 // Insert a load of the callsite in the dispatch block, and a switch on its
580 Value *DispatchLoad = new LoadInst(CallSite, "invoke.num", true
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp 418 llvm::CallInst *CallSite = Builder.CreateCall(
421 "callsite");
425 CallSite
    [all...]
CGObjCMac.cpp 32 #include "llvm/IR/CallSite.h"
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.3/
findbugs-2.0.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/3.0.0/
findbugs-3.0.0.jar 
  /external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar 

Completed in 903 milliseconds