Searched defs:CS (Results 1 - 25 of 170) sorted by relevance

1234567

/external/llvm/include/llvm/Analysis/
H A DTypeMetadataUtils.h28 CallSite CS; member in struct:llvm::DevirtCallSite
H A DIndirectCallSiteVisitor.h23 void visitCallSite(CallSite CS) { argument
24 if (CS.getCalledFunction() || !CS.getCalledValue())
26 Instruction *I = CS.getInstruction();
31 if (isa<Constant>(CS.getCalledValue()))
/external/clang/test/CodeGenCXX/
H A D2003-11-27-MultipleInheritanceThunk.cpp8 CallSite(const CallSite &CS);
14 virtual int getModRefInfo(CallSite CS);
24 int getModRefInfo(CallSite CS) { argument
/external/llvm/lib/Transforms/IPO/
H A DInlineAlways.cpp54 InlineCost getInlineCost(CallSite CS) override;
92 InlineCost AlwaysInliner::getInlineCost(CallSite CS) { argument
93 Function *Callee = CS.getCalledFunction();
99 CS.hasFnAttr(Attribute::AlwaysInline) && isInlineViable(*Callee))
/external/jsilver/src/org/clearsilver/
H A DCS.java22 public interface CS extends Closeable { interface in inherits:Closeable
35 * Clean up CS object state.
50 * Parse the given string as a CS template.
56 * Generate output from the CS templates and HDF objects that have been read
69 * Set the CS file loader to use
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
H A Downer_less.pass.cpp66 typedef std::owner_less<std::shared_ptr<int> > CS; typedef
67 CS cs;
69 static_assert((std::is_same<std::shared_ptr<int>, CS::first_argument_type>::value), "" );
70 static_assert((std::is_same<std::shared_ptr<int>, CS::second_argument_type>::value), "" );
71 static_assert((std::is_same<bool, CS::result_type>::value), "" );
87 typedef std::owner_less<std::weak_ptr<int> > CS; typedef
88 CS cs;
90 static_assert((std::is_same<std::weak_ptr<int>, CS::first_argument_type>::value), "" );
91 static_assert((std::is_same<std::weak_ptr<int>, CS::second_argument_type>::value), "" );
92 static_assert((std::is_same<bool, CS
[all...]
/external/llvm/lib/IR/
H A DStatepoint.cpp21 static const Function *getCalledFunction(ImmutableCallSite CS) { argument
22 if (!CS.getInstruction())
24 return CS.getCalledFunction();
27 bool llvm::isStatepoint(ImmutableCallSite CS) { argument
28 if (auto *F = getCalledFunction(CS))
34 if (auto CS = ImmutableCallSite(V))
35 return isStatepoint(CS);
43 bool llvm::isGCRelocate(ImmutableCallSite CS) { argument
44 return CS.getInstruction() && isa<GCRelocateInst>(CS
47 isGCResult(ImmutableCallSite CS) argument
[all...]
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyOptimizeReturned.cpp46 void visitCallSite(CallSite CS);
55 void OptimizeReturned::visitCallSite(CallSite CS) { argument
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);
/external/clang/lib/Analysis/
H A DCFGStmtMap.cpp53 Optional<CFGStmt> CS = CE.getAs<CFGStmt>(); local
54 if (!CS)
57 CFGBlock *&Entry = SM[CS->getStmt()];
/external/llvm/lib/Analysis/
H A DMemoryLocation.cpp93 MemoryLocation MemoryLocation::getForArgument(ImmutableCallSite CS, argument
97 CS->getAAMetadata(AATags);
98 const Value *Arg = CS.getArgument(ArgIdx);
101 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(CS.getInstruction())) {
146 if (CS.getCalledFunction() && TLI.getLibFunc(*CS.getCalledFunction(), F) &&
152 if (const ConstantInt *LenCI = dyn_cast<ConstantInt>(CS.getArgument(2)))
157 return MemoryLocation(CS.getArgument(ArgIdx), UnknownSize, AATags);
H A DObjCARCAliasAnalysis.cpp109 ModRefInfo ObjCARCAAResult::getModRefInfo(ImmutableCallSite CS, argument
112 return AAResultBase::getModRefInfo(CS, Loc);
114 switch (GetBasicARCInstKind(CS.getInstruction())) {
131 return AAResultBase::getModRefInfo(CS, Loc);
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp44 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
71 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) { argument
72 if (const Function *Callee = CS.getCalledFunction()) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_urb.c43 #define CS 4 macro
91 } limits[CS+1] = {
121 if (csize < limits[CS].min_entry_size)
122 csize = limits[CS].min_entry_size;
146 brw->urb.nr_cs_entries = limits[CS].preferred_nr_entries;
175 brw->urb.nr_cs_entries = limits[CS].min_nr_entries;
199 "URB fence: %d ..VS.. %d ..GS.. %d ..CLP.. %d ..SF.. %d ..CS.. %d\n",
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DSolaris.h20 #undef CS macro
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLibCallAliasAnalysis.cpp46 ImmutableCallSite CS,
69 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
90 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
120 LibCallAliasAnalysis::getModRefInfo(ImmutableCallSite CS, argument
127 if (const Function *F = CS.getCalledFunction()) {
129 MRInfo = ModRefResult(MRInfo & AnalyzeLibCallDetails(FI, CS, Loc));
136 return (ModRefResult)(MRInfo | AliasAnalysis::getModRefInfo(CS, Loc));
45 AnalyzeLibCallDetails(const LibCallFunctionInfo *FI, ImmutableCallSite CS, const Location &Loc) argument
H A DAliasDebugger.cpp105 ModRefResult getModRefInfo(ImmutableCallSite CS, argument
108 return AliasAnalysis::getModRefInfo(CS, Loc);
H A DNoAliasAnalysis.cpp46 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS) { argument
57 virtual ModRefResult getModRefInfo(ImmutableCallSite CS, argument
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DInlineAlways.cpp44 InlineCost getInlineCost(CallSite CS) { argument
45 return CA.getInlineCost(CS, NeverInline);
47 float getInlineFudgeFactor(CallSite CS) { argument
48 return CA.getInlineFudgeFactor(CS);
H A DInlineSimple.cpp44 InlineCost getInlineCost(CallSite CS) { argument
45 return CA.getInlineCost(CS, NeverInline);
47 float getInlineFudgeFactor(CallSite CS) { argument
48 return CA.getInlineFudgeFactor(CS);
/external/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp29 CountKey(const StackFrameContext *CS, unsigned ID) argument
30 : CallSite(CS), BlockID(ID) {}
/external/llvm/include/llvm/Support/
H A DSolaris.h29 #undef CS macro
/external/llvm/lib/ExecutionEngine/Orc/
H A DExecutionUtils.cpp47 ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(I)); local
48 assert(CS && "Unrecognized type in llvm.global_ctors/llvm.global_dtors");
50 Constant *FuncC = CS->getOperand(1);
69 ConstantInt *Priority = dyn_cast<ConstantInt>(CS->getOperand(0));
70 Value *Data = CS->getOperand(2);
/external/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp75 ConstantStruct *CS = cast<ConstantStruct>(*i); local
76 Result.push_back(dyn_cast<Function>(CS->getOperand(1)));
100 ConstantStruct *CS = cast<ConstantStruct>(*i); local
101 if (isa<ConstantPointerNull>(CS->getOperand(1)))
105 if (!isa<Function>(CS->getOperand(1)))
109 ConstantInt *CI = cast<ConstantInt>(CS->getOperand(0));
/external/ltp/testcases/realtime/stress/pi-tests/
H A Dlookup_pi_state.c46 pthread_cond_t CS; variable
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/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DBasicInliner.cpp85 CallSite CS(cast<Value>(I));
86 if (CS && CS.getCalledFunction()
87 && !CS.getCalledFunction()->isDeclaration())
88 CallSites.push_back(CS);
100 CallSite CS = CallSites[index]; local
101 if (Function *Callee = CS.getCalledFunction()) {
105 CS.getInstruction()->getParent()->getParent() == Callee) {
110 InlineCost IC = CA.getInlineCost(CS, NeverInline);
113 <<", call: " << *CS
[all...]

Completed in 582 milliseconds

1234567