HomeSort by relevance Sort by last modified time
    Searched refs:doesNotAccessMemory (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/IR/
CallSite.h 317 bool doesNotAccessMemory() const {
318 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
429 bool doesNotAccessMemory(unsigned OpNo) const {
Function.h 262 bool doesNotAccessMemory() const {
272 return doesNotAccessMemory() ||
395 bool doesNotAccessMemory(unsigned n) const {
403 return doesNotAccessMemory(n) ||
Instructions.h     [all...]
  /external/llvm/lib/IR/
Instruction.cpp 426 return !cast<CallInst>(this)->doesNotAccessMemory();
428 return !cast<InvokeInst>(this)->doesNotAccessMemory();
Verifier.cpp     [all...]
  /external/llvm/lib/Analysis/
GlobalsModRef.cpp 382 if (!CalleeF->doesNotAccessMemory()) {
519 if (F->doesNotAccessMemory() || F->onlyAccessesInaccessibleMemory()) {
    [all...]
AliasAnalysis.cpp 350 if (CS.doesNotAccessMemory(ArgNo))
BasicAliasAnalysis.cpp 552 if (CS.doesNotAccessMemory())
574 if (F->doesNotAccessMemory())
    [all...]
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 245 if (F->doesNotAccessMemory())
454 if (CS.doesNotAccessMemory()) {
503 if (!CS.doesNotAccessMemory(UseIndex))
953 if (!F.doesNotAccessMemory()) {
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 266 bool doesNotAccessMemory(ImmutableCallSite CS) {
281 bool doesNotAccessMemory(const Function *F) {
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
SafeStack.cpp 325 if (!(CS.doesNotCapture(A - B) && (CS.doesNotAccessMemory(A - B) ||
326 CS.doesNotAccessMemory()))) {
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 309 if (!IsNoTail && CI->doesNotAccessMemory()) {
    [all...]
DeadStoreElimination.cpp 883 if (AA->doesNotAccessMemory(CS))
    [all...]
EarlyCSE.cpp 68 return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy();
    [all...]
GVN.cpp 285 if (AA->doesNotAccessMemory(C)) {
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 582 if (ICS.doesNotAccessMemory())
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 970 milliseconds