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

1 2 3 4

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Argument.h 98 bool onlyReadsMemory() const;
CallSite.h 454 bool onlyReadsMemory() const {
455 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
623 bool onlyReadsMemory(unsigned OpNo) const {
  /external/llvm/include/llvm/IR/
Argument.h 112 bool onlyReadsMemory() const;
CallSite.h 417 bool onlyReadsMemory() const {
418 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
564 bool onlyReadsMemory(unsigned OpNo) const {
Function.h 294 bool onlyReadsMemory() const {
425 bool onlyReadsMemory(unsigned n) const {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h 214 bool onlyReadsMemory() const {
215 CALLSITE_DELEGATE_GETTER(onlyReadsMemory());
217 void setOnlyReadsMemory(bool onlyReadsMemory = true) {
218 CALLSITE_DELEGATE_SETTER(setOnlyReadsMemory(onlyReadsMemory));
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Argument.h 112 bool onlyReadsMemory() const;
Function.h 317 bool onlyReadsMemory() const {
448 bool onlyReadsMemory(unsigned n) const {
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 251 /// OnlyReadsMemory - This function does not perform any non-local stores or
257 OnlyReadsMemory = Anywhere | Ref,
293 /// onlyReadsMemory - If the specified call is known to only read from
302 bool onlyReadsMemory(ImmutableCallSite CS) {
303 return onlyReadsMemory(getModRefBehavior(CS));
306 /// onlyReadsMemory - If the specified function is known to only read from
310 bool onlyReadsMemory(const Function *F) {
311 return onlyReadsMemory(getModRefBehavior(F));
314 /// onlyReadsMemory - Return true if functions with the specified behavior are
317 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 190 return CS.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser;
192 return CS.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call;
AliasAnalysis.h 299 bool onlyReadsMemory(ImmutableCallSite CS) {
300 return onlyReadsMemory(getModRefBehavior(CS));
312 bool onlyReadsMemory(const Function *F) {
313 return onlyReadsMemory(getModRefBehavior(F));
318 static bool onlyReadsMemory(FunctionModRefBehavior MRB) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysis.cpp 84 if (onlyReadsMemory(MRB))
132 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
139 if (onlyReadsMemory(CS1B))
CaptureTracking.cpp 77 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 81 !JCS.onlyReadsMemory() &&
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 81 !JCS.onlyReadsMemory() &&
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
ObjCARCAnalysisUtils.h 203 return CS.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser;
205 return CS.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call;
AliasAnalysis.h 437 bool onlyReadsMemory(ImmutableCallSite CS) {
438 return onlyReadsMemory(getModRefBehavior(CS));
450 bool onlyReadsMemory(const Function *F) {
451 return onlyReadsMemory(getModRefBehavior(F));
456 static bool onlyReadsMemory(FunctionModRefBehavior MRB) {
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 144 if (onlyReadsMemory(MRB))
206 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
211 if (onlyReadsMemory(CS1B))
470 if (CS.onlyReadsMemory(ArgNo)) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
AliasAnalysis.cpp 175 if (onlyReadsMemory(MRB))
243 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B))
248 if (onlyReadsMemory(CS1B))
598 if (CS.onlyReadsMemory(ArgNo)) {
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 76 if (AliasAnalysis::onlyReadsMemory(MRB))
204 if (F->onlyReadsMemory() && ReadsMemory)
415 if (CS.onlyReadsMemory()) {
455 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(UseIndex))
506 if (F->onlyReadsMemory() && F->doesNotThrow() &&
548 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 113 if (AliasAnalysis::onlyReadsMemory(MRB))
251 if (F->onlyReadsMemory() && ReadsMemory)
460 if (CS.onlyReadsMemory()) {
500 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(UseIndex))
643 if (F->onlyReadsMemory() && F->doesNotThrow() &&
684 if (!HasNonLocalUses && !A->onlyReadsMemory()) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 32 if (Call->onlyReadsMemory())
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 33 if (Call->onlyReadsMemory())
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
FunctionAttrs.cpp 112 if (!AliasAnalysis::onlyReadsMemory(MRB))
207 if (F->onlyReadsMemory() && ReadsMemory)
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Instruction.cpp 345 return !cast<CallInst>(this)->onlyReadsMemory();
347 return !cast<InvokeInst>(this)->onlyReadsMemory();

Completed in 1480 milliseconds

1 2 3 4