Home
last modified time | relevance | path

Searched refs:Engine (Results 1 – 25 of 38) sorted by relevance

12

/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp48 std::unique_ptr<ExecutionEngine> Engine; member in __anon865188df0111::ExecutionEngineTest
54 Engine->addGlobalMapping(G1, &Mem1); in TEST_F()
58 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
62 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
70 Engine->updateGlobalMapping(G2, &Mem1); in TEST_F()
80 Engine->addGlobalMapping(G1, &Mem1); in TEST_F()
83 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F()
88 Engine->updateGlobalMapping(G2, &Mem1); in TEST_F()
106 Engine->addGlobalMapping(G1, &Mem1); in TEST_F()
116 Engine->addGlobalMapping(G2, &Mem1); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.h36 Context(DifferenceEngine &Engine, const Value *L, const Value *R) in Context()
37 : Engine(Engine) { in Context()
38 Engine.consumer.enterContext(L, R); in Context()
42 Engine.consumer.exitContext(); in ~Context()
46 DifferenceEngine &Engine;
H A DDifferenceEngine.cpp114 DifferenceEngine &Engine; member in __anon246d63510111::FunctionDifferenceEngine
181 DifferenceEngine::Context C(Engine, L, R); in unify()
198 DifferenceEngine::Context C(Engine, L, R); in diff()
236 if (Complain) Engine.log("called functions differ"); in diffCallSites()
240 if (Complain) Engine.log("argument counts differ"); in diffCallSites()
246 Engine.logf("arguments %l and %r differ") in diffCallSites()
266 if (Complain) Engine.log("different predicates"); in diff()
609 FunctionDifferenceEngine(DifferenceEngine &Engine, in FunctionDifferenceEngine() argument
612 : Engine(Engine), SavedLHS(SavedLHS), SavedRHS(SavedRHS), in FunctionDifferenceEngine()
617 Engine.log("different argument counts"); in diff()
[all …]
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp154 Engine = nullptr; in SetUp()
159 if (Engine) in TearDown()
160 LLVMDisposeExecutionEngine(Engine); in TearDown()
284 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options, in buildMCJITEngine()
329 LLVMExecutionEngineRef Engine; member in __anon98a3fc8f0111::MCJITCAPITest
343 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
360 uint64_t raw = LLVMGetGlobalValueAddress(Engine, "simple_value"); in TEST_F()
374 uint64_t raw = LLVMGetFunctionAddress(Engine, "simple_function"); in TEST_F()
390 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F()
506 Engine, MappedFn, in TEST_F()
[all …]
/llvm-project-15.0.7/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dctor_engine_move.pass.cpp24 typedef std::mt19937 Engine; in main() typedef
25 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor; in main()
26 Engine e; in main()
27 Engine e0 = e; in main()
H A Dctor_engine_copy.pass.cpp24 typedef std::mt19937 Engine; in main() typedef
25 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor; in main()
26 Engine e; in main()
/llvm-project-15.0.7/llvm/tools/llvm-diff/
H A Dllvm-diff.cpp42 static void diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, in diffGlobal() argument
50 Engine.diff(LFn, RFn); in diffGlobal()
83 DifferenceEngine Engine(Consumer); in main() local
88 diffGlobal(Engine, *LModule, *RModule, GlobalsToCompare[I]); in main()
92 Engine.diff(LModule.get(), RModule.get()); in main()
/llvm-project-15.0.7/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dctor_engine_move.pass.cpp24 typedef std::ranlux24_base Engine; in main() typedef
26 Engine e; in main()
27 Engine e0 = e; in main()
H A Dctor_engine_copy.pass.cpp24 typedef std::ranlux24_base Engine; in main() typedef
26 Engine e; in main()
/llvm-project-15.0.7/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dctor_engine_move.pass.cpp24 typedef std::minstd_rand0 Engine; in main() typedef
26 Engine e; in main()
27 Engine e0 = e; in main()
H A Dctor_engine_copy.pass.cpp24 typedef std::minstd_rand0 Engine; in main() typedef
26 Engine e; in main()
/llvm-project-15.0.7/clang/lib/Tooling/Refactoring/Rename/
H A DUSRFindingAction.cpp237 DiagnosticsEngine &Engine = Context.getDiagnostics(); in FindSymbol() local
242 unsigned InvalidOffset = Engine.getCustomDiagID( in FindSymbol()
245 Engine.Report(SourceLocation(), InvalidOffset) in FindSymbol()
259 unsigned CouldNotFindSymbolAt = Engine.getCustomDiagID( in FindSymbol()
262 Engine.Report(Point, CouldNotFindSymbolAt) << SymbolOffset; in FindSymbol()
273 unsigned CouldNotFindSymbolNamed = Engine.getCustomDiagID( in FindSymbol()
275 Engine.Report(CouldNotFindSymbolNamed) << QualifiedName; in FindSymbol()
/llvm-project-15.0.7/libcxx/include/
H A Drandom200 template<class Engine, size_t p, size_t r>
228 const Engine& base() const noexcept;
231 template<class Engine, size_t p, size_t r>
237 template<class Engine, size_t p, size_t r>
280 const Engine& base() const noexcept;
307 template<class Engine, size_t k>
334 const Engine& base() const noexcept;
337 template<class Engine, size_t k>
343 template<class Engine, size_t k>
350 class Engine, size_t k>
[all …]
/llvm-project-15.0.7/clang/unittests/StaticAnalyzer/
H A DSValTest.cpp76 ExprEngine &Engine) const { in checkEndAnalysis()
78 test(Engine, Engine.getContext()); in checkEndAnalysis()
89 virtual void test(ExprEngine &Engine, const ASTContext &Context) const = 0;
137 void test(ExprEngine &Engine, const ASTContext &Context) const override; \
153 void NAME##SValCollector::test(ExprEngine &Engine, \
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h144 CoreEngine Engine; variable
189 return Engine.ExecuteWorkList(L, Steps, nullptr);
199 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst); in ExecuteWorkListWithInitialState()
433 DataTag::Factory &getDataTags() { return Engine.getDataTags(); } in getDataTags()
436 bool wasBlocksExhausted() const { return Engine.wasBlocksExhausted(); } in wasBlocksExhausted()
437 bool hasEmptyWorkList() const { return !Engine.getWorkList()->hasWork(); } in hasEmptyWorkList()
438 bool hasWorkRemaining() const { return Engine.hasWorkRemaining(); } in hasWorkRemaining()
440 const CoreEngine &getCoreEngine() const { return Engine; } in getCoreEngine()
840 bool isSecondPhaseCTU() { return IsCTUEnabled && !Engine.getCTUWorkList(); } in isSecondPhaseCTU()
/llvm-project-15.0.7/llvm/cmake/modules/
H A DLLVM-Build.cmake14 foreach(llvm_component all-targets Engine Native NativeCodeGen ${LLVM_TARGETS_TO_BUILD})
90 set_property(TARGET Engine APPEND PROPERTY LLVM_LINK_COMPONENTS "MCJIT" "Native")
92 set_property(TARGET Engine APPEND PROPERTY LLVM_LINK_COMPONENTS "Interpreter")
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp70 Engine.enqueue(DstBegin); in processCallEnter()
339 NodeBuilderContext Ctx(Engine, calleeCtx->getCallSiteBlock(), CEENode); in processCallExit()
460 inlineCall(Engine.getWorkList(), Call, D, Bldr, Pred, State); in REGISTER_MAP_WITH_PROGRAMSTATE()
466 inlineCall(Engine.getCTUWorkList(), Call, D, Bldr, Pred, State); in REGISTER_MAP_WITH_PROGRAMSTATE()
475 inlineCall(Engine.getWorkList(), Call, D, Bldr, Pred, State); in REGISTER_MAP_WITH_PROGRAMSTATE()
523 Engine.FunctionSummaries->bumpNumTimesInlined(D); in inlineCall()
1037 Optional<bool> MayInline = Engine.FunctionSummaries->mayInline(D); in shouldInlineCall()
1046 Engine.FunctionSummaries->markMayInline(D); in shouldInlineCall()
1048 Engine.FunctionSummaries->markShouldNotInline(D); in shouldInlineCall()
1061 Engine.FunctionSummaries->markShouldNotInline(D); in shouldInlineCall()
[all …]
H A DCallEvent.cpp487 ExprEngine &Engine = getState()->getStateManager().getOwningEngine(); in getReturnValueUnderConstruction() local
489 Engine.computeObjectUnderConstruction(getOriginExpr(), getState(), in getReturnValueUnderConstruction()
519 ExprEngine &Engine = getState()->getStateManager().getOwningEngine(); in getRuntimeDefinition() local
521 *Engine.getCrossTranslationUnitContext(); in getRuntimeDefinition()
523 AnalyzerOptions &Opts = Engine.getAnalysisManager().options; in getRuntimeDefinition()
H A DExprEngine.cpp218 Engine(*this, FS, mgr.getAnalyzerOptions()), G(Engine.getGraph()), in ExprEngine()
965 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessStmt()
983 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessLoopExit()
1071 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessInitializer()
1098 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessImplicitDtor()
1117 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessNewAllocator()
1483 Engine.addAbortedBlock(node, currBldrCtx->getBlock()); in Visit()
1738 Engine.addAbortedBlock(node, currBldrCtx->getBlock()); in Visit()
2139 Engine.enqueueStmtNode(NewNode, CalleeSF->getCallSiteBlock(), in replayWithoutInlining()
2213 Engine.blocksExhausted.push_back(std::make_pair(L, Sink)); in processCFGBlockEntrance()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/cert/
H A Dmsc51-cpp.cpp33 template <class Engine, size_t p, size_t r>
42 template <class Engine, size_t w, class UIntType>
51 template <class Engine, size_t k>
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/debugger/dbgeng/
H A DREADME.md1 # Debugger Engine backend
3 This directory contains the Dexter backend for the Windows Debugger Engine
/llvm-project-15.0.7/llvm/lib/Support/
H A DLockFileManager.cpp308 std::default_random_engine Engine(Device()); in waitForUnlock() local
319 unsigned long WaitDurationMS = MinWaitDurationMS * Distribution(Engine); in waitForUnlock()
/llvm-project-15.0.7/llvm/lib/
H A DCMakeLists.txt52 add_llvm_component_group(Engine)
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DP10InstrResources.td1475 // 10 Cycles SIMD Matrix Multiply Engine operations, 0 input operands
1481 // 10 Cycles SIMD Matrix Multiply Engine operations, 2 input operands
1494 // 10 Cycles SIMD Matrix Multiply Engine operations, 3 input operands
1520 // 10 Cycles SIMD Matrix Multiply Engine operations, 4 input operands
1527 // 10 Cycles SIMD Matrix Multiply Engine operations, 5 input operands
1546 // 10 Cycles SIMD Matrix Multiply Engine operations, 6 input operands
1565 // 10 Cycles SIMD Matrix Multiply Engine operations, and 3 Cycles ALU operations, 1 input operands
1572 // 10 Cycles SIMD Matrix Multiply Engine operations, 3 Cycles ALU operations, 10 Cycles SIMD Matrix…
/llvm-project-15.0.7/clang/tools/clang-fuzzer/
H A DREADME.txt128 function (optimized and not), llvm-proto-fuzzer uses LLVM's JIT Engine to

12