HomeSort by: relevance | last modified time | path
    Searched defs:Engine (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DifferenceEngine.h 9 // This header defines the interface to the LLVM difference engine,
36 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
37 Engine.consumer.enterContext(L, R);
41 Engine.consumer.exitContext();
45 DifferenceEngine &Engine;
DifferenceEngine.cpp 10 // engine, which structurally compares global values within a module.
112 /// A function-scope difference engine.
114 DifferenceEngine &Engine;
160 Engine.logf("successor %l cannot be equivalent to %r; "
174 DifferenceEngine::Context C(Engine, L, R);
191 DifferenceEngine::Context C(Engine, L, R);
228 if (Complain) Engine.log("called functions differ");
232 if (Complain) Engine.log("argument counts differ");
238 Engine.logf("arguments %l and %r differ")
250 if (Complain) Engine.log("different instruction types")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRFindingAction.cpp 239 DiagnosticsEngine &Engine = Context.getDiagnostics();
244 unsigned InvalidOffset = Engine.getCustomDiagID(
247 Engine.Report(SourceLocation(), InvalidOffset)
261 unsigned CouldNotFindSymbolAt = Engine.getCustomDiagID(
264 Engine.Report(Point, CouldNotFindSymbolAt) << SymbolOffset;
275 unsigned CouldNotFindSymbolNamed = Engine.getCustomDiagID(
277 Engine.Report(CouldNotFindSymbolNamed) << QualifiedName;
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 9 // This file defines a meta-engine for path-sensitive dataflow analysis that
147 CoreEngine Engine;
171 /// The BugReporter associated with this engine. It is important that
180 /// The flag, which specifies the mode of inlining for the engine.
192 return Engine.ExecuteWorkList(L, Steps, nullptr);
202 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst);
431 NoteTag::Factory &getNoteTags() { return Engine.getNoteTags(); }
435 bool wasBlocksExhausted() const { return Engine.wasBlocksExhausted(); }
436 bool hasEmptyWorkList() const { return !Engine.getWorkList()->hasWork(); }
437 bool hasWorkRemaining() const { return Engine.hasWorkRemaining();
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 527 ExprEngine &Engine = getState()->getStateManager().getOwningEngine();
529 Engine.computeObjectUnderConstruction(getOriginExpr(), getState(),
563 ExprEngine &Engine = getState()->getStateManager().getOwningEngine();
564 AnalyzerOptions &Opts = Engine.getAnalysisManager().options;
571 *Engine.getCrossTranslationUnitContext();

Completed in 83 milliseconds