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

1 2

  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.h 33 void InsertProfilingShutdownCall(Function *Callee, Module *Mod);
ProfilingUtils.cpp 132 void llvm::InsertProfilingShutdownCall(Function *Callee, Module *Mod) {
136 Type::getInt32Ty(Mod->getContext()),
137 FunctionType::get(Type::getVoidTy(Mod->getContext()), false)->getPointerTo()
140 StructType::get(Mod->getContext(), GlobalDtorElems, false);
144 ConstantInt::get(Type::getInt32Ty(Mod->getContext()), 65535),
151 if (GlobalVariable *GlobalDtors = Mod->getNamedGlobal("llvm.global_dtors")) {
163 *Mod, ArrayType::get(GlobalDtorElemTy, 1), false,
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Mod.java 19 * $Id: Mod.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'mod' operation expression executer.
30 public class Mod extends Operation
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 29 TargetMachine *EngineBuilder::selectTarget(Module *Mod,
36 Triple TheTriple(Mod->getTargetTriple());
ExecutionEngineBindings.cpp 216 Module *Mod = unwrap(M);
217 unwrap(EE)->removeModule(Mod);
218 *OutMod = wrap(Mod);
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 43 static cl::opt<bool> PrintMod("print-mod", cl::ReallyHidden);
50 unsigned NoModRef, Mod, Ref, ModRef;
65 NoModRef = Mod = Ref = ModRef = 0;
202 // Mod/ref alias analysis: compare all pairs of calls and values
217 case AliasAnalysis::Mod:
218 PrintModRefResults("Just Mod", PrintMod, I, *V, F.getParent());
219 ++Mod; break;
232 // Mod/ref alias analysis: compare all pairs of calls
242 case AliasAnalysis::Mod:
243 PrintModRefResults("Just Mod", PrintMod, *C, *D, F.getParent())
    [all...]
Loads.cpp 215 (AA->getModRefInfo(SI, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
228 (AA->getModRefInfo(Inst, Ptr, AccessSize) & AliasAnalysis::Mod) == 0)
AliasAnalysis.cpp 109 if ((Mask & Mod) && pointsToConstantMemory(Loc))
110 Mask = ModRefResult(Mask & ~Mod);
142 // If CS2 only access memory through arguments, accumulate the mod/ref
314 return Mod;
411 if (getModRefInfo(I, Loc) & Mod)
AliasAnalysisCounter.cpp 65 errs() << " " << MRSum << " Total Mod/Ref Queries Performed\n";
67 printLine("no mod/ref", NoMR, MRSum);
69 printLine("mod", JustMod, MRSum);
70 printLine("mod/ref", MR, MRSum);
71 errs() << " Mod/Ref Analysis Counter Summary: " <<NoMR*100/MRSum
159 default: llvm_unreachable("Unknown mod/ref type!");
162 case Mod: JustMod++; MRString = "JustMod"; break;
MemoryDependenceAnalysis.cpp 137 return AliasAnalysis::Mod;
154 return AliasAnalysis::Mod;
166 // These intrinsics don't really modify the memory, but returning Mod
168 return AliasAnalysis::Mod;
174 // These intrinsics don't really modify the memory, but returning Mod
176 return AliasAnalysis::Mod;
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
480 // See if this instruction (e.g. a call or vaarg) mod/ref's the pointer.
485 case AliasAnalysis::Mod:
541 bool isLoad = !(MR & AliasAnalysis::Mod);
    [all...]
  /external/clang/examples/clang-interpreter/
main.cpp 47 static int Execute(llvm::Module *Mod, char * const *envp) {
52 llvm::ExecutionEngine::createJIT(Mod, &Error));
58 llvm::Function *EntryFn = Mod->getFunction("main");
66 Args.push_back(Mod->getModuleIdentifier());
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 32 import org.apache.xpath.operations.Mod;
106 (pred instanceof Mod) ||
  /external/llvm/tools/lli/
lli.cpp 179 Module *Mod = ParseIRFile(InputFile, Err, Context);
180 if (!Mod) {
188 if (Mod->MaterializeAllPermanently(&ErrorMsg)) {
195 EngineBuilder builder(Mod);
208 Mod->setTargetTriple(Triple::normalize(TargetTriple));
259 Function *EntryFn = Mod->getFunction(EntryFunc);
267 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
278 for (Module::iterator I = Mod->begin(), E = Mod->end(); I != E; ++I) {
  /external/llvm/include/llvm/ADT/
StringExtras.h 53 unsigned char Mod = static_cast<unsigned char>(X) & 15;
54 *--BufPtr = hexdigit(Mod);
  /external/llvm/lib/Analysis/IPA/
CallGraph.cpp 184 Mod = &M;
229 Mod->getFunctionList().remove(F);
255 assert((!F || F->getParent() == Mod) && "Function not in current module!");
GlobalsModRef.cpp 1 //===- GlobalsModRef.cpp - Simple Mod/Ref Analysis for Globals ------------===//
10 // This simple pass provides alias and mod/ref information for global values
48 /// GlobalInfo - Maintain mod/ref info for all of the globals without
129 else if ((FR->FunctionEffect & Mod) == 0)
146 else if ((FR->FunctionEffect & Mod) == 0)
189 "globalsmodref-aa", "Simple mod/ref analysis for globals",
193 "globalsmodref-aa", "Simple mod/ref analysis for globals",
218 // Remember that we are tracking this global, and the mod/ref fns
226 FunctionInfo[Writers[i]].GlobalInfo[I] |= Mod;
319 // TODO: Could try some IP mod/ref of the loaded pointer
    [all...]
  /external/llvm/include/llvm/Analysis/
CallGraph.h 74 Module *Mod; // The module this call graph represents
89 Module &getModule() const { return *Mod; }
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/lib/Transforms/Scalar/
Sink.cpp 166 if (AA->getModRefInfo(*I, Loc) & AliasAnalysis::Mod)
  /external/llvm/include/llvm/MC/
MCExpr.h 299 Mod, ///< Signed remainder.
364 return Create(Mod, LHS, RHS, Ctx);
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 147 if (MRB & AliasAnalysis::Mod)
159 if (MRB & AliasAnalysis::Mod)
  /external/llvm/include/llvm/Support/
CommandLine.h     [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/llvm/lib/MC/
MCExpr.cpp 115 case MCBinaryExpr::Mod: OS << '%'; break;
545 case MCBinaryExpr::Mod: Result = LHS % RHS; break;
  /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), RealPass(true), action(ctn), Mod(0),
158 Mod = &M;
173 Mod = F.getParent();
315 WriteAsOperand(MessagesStr, V, true, Mod);
    [all...]

Completed in 749 milliseconds

1 2