HomeSort by relevance Sort by last modified time
    Searched refs:Mod (Results 26 - 50 of 62) sorted by null

12 3

  /external/llvm/lib/Transforms/Scalar/
Sink.cpp 167 if (AA->getModRefInfo(*I, Loc) & AliasAnalysis::Mod)
MemCpyOptimizer.cpp 846 Module *Mod = M->getParent()->getParent()->getParent();
850 M->setCalledFunction(Intrinsic::getDeclaration(Mod, Intrinsic::memcpy
    [all...]
LoopIdiomRecognize.cpp 593 if (mayLoopAccessLocation(LoadBasePtr, AliasAnalysis::Mod, CurLoop, BECount,
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 12 // implemented by all alias analysis implementations. Mod/Ref information is
212 /// Simple mod/ref information...
215 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are
218 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 };
318 return !(MRB & Mod);
466 /// Higher level methods for querying mod/ref information.
  /external/llvm/include/llvm/MC/
MCExpr.h 321 Mod, ///< Signed remainder.
386 return Create(Mod, LHS, RHS, Ctx);
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 139 return AliasAnalysis::Mod;
156 return AliasAnalysis::Mod;
168 // These intrinsics don't really modify the memory, but returning Mod
170 return AliasAnalysis::Mod;
176 // These intrinsics don't really modify the memory, but returning Mod
178 return AliasAnalysis::Mod;
226 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
568 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
573 case AliasAnalysis::Mod:
629 bool isLoad = !(MR & AliasAnalysis::Mod);
    [all...]
BasicAliasAnalysis.cpp 698 // then the call can not mod/ref the pointer unless the call takes the pointer
750 Min = Mod;
764 Min = Mod;
838 Min = Mod;
    [all...]
Lint.cpp 103 Module *Mod;
132 WriteAsOperand(MessagesStr, V, true, Mod);
177 Mod = F.getParent();
  /external/clang/lib/Sema/
Sema.cpp 501 Module *Mod = Stack.back();
508 ModMap.resolveExports(Mod, /*Complain=*/false);
511 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
512 SubEnd = Mod->submodule_end();
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 51 import org.apache.xpath.operations.Mod;
150 expr = mod(opPos); break;
411 * Compile a 'mod' operation.
415 * @return reference to {@link org.apache.xpath.operations.Mod} instance.
419 protected Expression mod(int opPos) throws TransformerException method in class:Compiler
421 return compileOperation(new Mod(), opPos);
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 390 unsigned getSubmoduleID(Module *Mod);
688 void ModuleRead(serialization::SubmoduleID ID, Module *Mod);
  /external/llvm/lib/MC/
MCExpr.cpp 116 case MCBinaryExpr::Mod: OS << '%'; break;
571 case MCBinaryExpr::Mod: Result = LHS % RHS; break;
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 148 if (MRB & AliasAnalysis::Mod)
160 if (MRB & AliasAnalysis::Mod)
  /external/llvm/lib/VMCore/
Verifier.cpp 123 Module *Mod; // Module we are verifying right now
147 action(AbortProcessAction), Mod(0), Context(0), DT(0),
152 : FunctionPass(ID), Broken(false), action(ctn), Mod(0),
158 Mod = &M;
170 Mod = F.getParent();
308 WriteAsOperand(MessagesStr, V, true, Mod);
    [all...]
Core.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 347 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode,
349 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!");
350 return RM | (RegOpcode << 3) | (Mod << 6);
542 // MOD=0, BASE=4, to JUST get the index, scale, and displacement.
571 else // Examples: [ESP+1*<noreg>+4] or [scaled idx]+disp32 (MOD=0,BASE=5)
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
HeaderSearch.cpp 836 if (Module *Mod = ModMap.findModuleForHeader(File))
837 return Mod;
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCCodeEmitter.cpp 99 inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode,
101 assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!");
102 return RM | (RegOpcode << 3) | (Mod << 6);
322 // Since an immediate can follow the mod/rm byte for an instruction, this
387 // MOD=0, BASE=5, to JUST get the index, scale, and displacement.
419 else // Examples: [ESP+1*<noreg>+4] or [scaled idx]+disp32 (MOD=0,BASE=5)
    [all...]
  /external/clang/lib/AST/
Decl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 63 void init(CodeGenModule *Mod, const char *name,
65 CGM =Mod;
560 CGObjCGCC(CodeGenModule &Mod) : CGObjCGNU(Mod, 8, 2) {
633 CGObjCGNUstep(CodeGenModule &Mod) : CGObjCGNU(Mod, 9, 3) {
    [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]

Completed in 407 milliseconds

12 3