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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/IR/
Statepoint.cpp 21 static const Function *getCalledFunction(ImmutableCallSite CS) {
22 if (!CS.getInstruction())
24 return CS.getCalledFunction();
27 bool llvm::isStatepoint(ImmutableCallSite CS) {
28 if (auto *F = getCalledFunction(CS))
34 if (auto CS = ImmutableCallSite(V))
35 return isStatepoint(CS);
43 bool llvm::isGCRelocate(ImmutableCallSite CS) {
44 return CS.getInstruction() && isa<GCRelocateInst>(CS.getInstruction())
    [all...]
  /external/jsilver/src/org/clearsilver/
ClearsilverFactory.java 20 * A factory for constructing new CS and HDF objects. Allows applications to
21 * provide subclasses of HDF or CS to be used by the Java Clearsilver
27 * Create a new CS object.
28 * @param hdf the HDF object to use in constructing the CS object.
29 * @return a new CS object
31 public CS newCs(HDF hdf);
34 * Create a new CS object.
35 * @param hdf the HDF object to use in constructing the CS object.
37 * CS object.
38 * @return a new CS objec
    [all...]
DelegatedCs.java 22 * Utility class that delegates all methods of an CS object. Made to
23 * facilitate the transition to CS being an interface and thus not
26 * This class, and its subclasses must take care to wrap or unwrap HDF and CS
30 public abstract class DelegatedCs implements CS {
31 private final CS cs; field in class:DelegatedCs
33 public DelegatedCs(CS cs) {
35 this.cs = cs;
    [all...]
  /external/clang/test/CodeGenCXX/
2003-11-27-MultipleInheritanceThunk.cpp 8 CallSite(const CallSite &CS);
14 virtual int getModRefInfo(CallSite CS);
24 int getModRefInfo(CallSite CS) {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.isIndirectCall())
25 IndirectCallInsts.push_back(CS.getInstruction());
  /external/llvm/include/llvm/Analysis/
IndirectCallSiteVisitor.h 23 void visitCallSite(CallSite CS) {
24 if (CS.getCalledFunction() || !CS.getCalledValue())
26 Instruction *I = CS.getInstruction();
31 if (isa<Constant>(CS.getCalledValue()))
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 44 CallSite CS(cast<Value>(UI));
45 if (!CS) continue;
47 for (CallSite::arg_iterator AI = CS.arg_begin(),
48 E = CS.arg_end(); AI != E; ++AI) {
  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/IPO/
InlinerPass.h 59 unsigned getInlineThreshold(CallSite CS) const;
66 virtual InlineCost getInlineCost(CallSite CS) = 0;
71 virtual float getInlineFudgeFactor(CallSite CS) = 0;
92 bool shouldInline(CallSite CS);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
reg.h 38 #define CS 13
  /external/ltp/testcases/realtime/stress/pi-tests/
lookup_pi_state.c 46 pthread_cond_t CS;
87 printf("Slave thread %d waiting on CS,MS\n", id);
88 pthread_cond_wait(&CS, &MS); // docs are contradictory on if this
97 pthread_cond_wait(&CS, &MS);
125 pthread_cond_signal(&CS);
126 pthread_cond_signal(&CS);
127 pthread_cond_signal(&CS);
130 pthread_cond_broadcast(&CS);
131 pthread_cond_broadcast(&CS);
132 pthread_cond_broadcast(&CS);
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 78 static bool InlineCallIfPossible(Pass &P, CallSite CS, InlineFunctionInfo &IFI,
81 Function *Callee = CS.getCalledFunction();
82 Function *Caller = CS.getCaller();
94 if (!InlineFunction(CS, IFI, &AAR, InsertLifetime))
122 // When processing our SCC, check to see if CS was inlined from some other
225 static void emitAnalysis(CallSite CS, const Twine &Msg) {
226 Function *Caller = CS.getCaller();
228 DebugLoc DLoc = CS.getInstruction()->getDebugLoc();
232 bool Inliner::shouldBeDeferred(Function *Caller, CallSite CS, InlineCost IC,
303 bool Inliner::shouldInline(CallSite CS) {
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyOptimizeReturned.cpp 46 void visitCallSite(CallSite CS);
55 void OptimizeReturned::visitCallSite(CallSite CS) {
56 for (unsigned i = 0, e = CS.getNumArgOperands(); i < e; ++i)
57 if (CS.paramHasAttr(1 + i, Attribute::Returned)) {
58 Instruction *Inst = CS.getInstruction();
59 Value *Arg = CS.getArgOperand(i);

Completed in 724 milliseconds

1 2 3 4 5 6 7 8 91011>>