Home
last modified time | relevance | path

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

12

/openbsd/src/gnu/llvm/llvm/tools/llvm-diff/
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()
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
Ddebug9.C32 class Engine
35 Engine (T val = T()) {}
40 Engine<1, std::complex<double> > e; in main()
/openbsd/src/gnu/llvm/clang/lib/Tooling/Refactoring/Rename/
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()
/openbsd/src/gnu/llvm/libcxx/include/
Drandom200 template<class Engine, size_t p, size_t r>
205 typedef typename Engine::result_type result_type;
210 static constexpr result_type min() { return Engine::min(); }
211 static constexpr result_type max() { return Engine::max(); }
215 explicit discard_block_engine(const Engine& e);
216 explicit discard_block_engine(Engine&& e);
228 const Engine& base() const noexcept;
231 template<class Engine, size_t p, size_t r>
234 const discard_block_engine<Engine, p, r>& x,
235 const discard_block_engine<Engine, p, r>& y);
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
Ddefarg7.C4 class Engine {};
10 static const int dimensions = Engine<Dim, T, EngineTag>::dimensions;
/openbsd/src/gnu/llvm/llvm/cmake/modules/
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")
/openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h145 CoreEngine Engine; variable
190 return Engine.ExecuteWorkList(L, Steps, nullptr);
200 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst); in ExecuteWorkListWithInitialState()
434 DataTag::Factory &getDataTags() { return Engine.getDataTags(); } in getDataTags()
437 bool wasBlocksExhausted() const { return Engine.wasBlocksExhausted(); } in wasBlocksExhausted()
438 bool hasEmptyWorkList() const { return !Engine.getWorkList()->hasWork(); } in hasEmptyWorkList()
439 bool hasWorkRemaining() const { return Engine.hasWorkRemaining(); } in hasWorkRemaining()
441 const CoreEngine &getCoreEngine() const { return Engine; } in getCoreEngine()
868 bool isSecondPhaseCTU() { return IsCTUEnabled && !Engine.getCTUWorkList(); } in isSecondPhaseCTU()
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp71 Engine.enqueue(DstBegin); in processCallEnter()
394 NodeBuilderContext Ctx(Engine, calleeCtx->getCallSiteBlock(), CEENode); in processCallExit()
435 Engine.getWorkList()->enqueue(*PSI, calleeCtx->getCallSiteBlock(), Idx); in processCallExit()
514 inlineCall(Engine.getWorkList(), Call, D, Bldr, Pred, State); in REGISTER_MAP_WITH_PROGRAMSTATE()
520 inlineCall(Engine.getCTUWorkList(), Call, D, Bldr, Pred, State); in REGISTER_MAP_WITH_PROGRAMSTATE()
529 inlineCall(Engine.getWorkList(), Call, D, Bldr, Pred, State); in REGISTER_MAP_WITH_PROGRAMSTATE()
577 Engine.FunctionSummaries->bumpNumTimesInlined(D); in inlineCall()
1093 std::optional<bool> MayInline = Engine.FunctionSummaries->mayInline(D); in shouldInlineCall()
1102 Engine.FunctionSummaries->markMayInline(D); in shouldInlineCall()
1104 Engine.FunctionSummaries->markShouldNotInline(D); in shouldInlineCall()
[all …]
DCallEvent.cpp523 ExprEngine &Engine = getState()->getStateManager().getOwningEngine(); in getReturnValueUnderConstruction() local
524 SVal RetVal = Engine.computeObjectUnderConstruction( in getReturnValueUnderConstruction()
525 getOriginExpr(), getState(), &Engine.getBuilderContext(), in getReturnValueUnderConstruction()
555 ExprEngine &Engine = getState()->getStateManager().getOwningEngine(); in getRuntimeDefinition() local
557 *Engine.getCrossTranslationUnitContext(); in getRuntimeDefinition()
559 AnalyzerOptions &Opts = Engine.getAnalysisManager().options; in getRuntimeDefinition()
DExprEngine.cpp225 Engine(*this, FS, mgr.getAnalyzerOptions()), G(Engine.getGraph()), in ExprEngine()
1130 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessStmt()
1148 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessLoopExit()
1236 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessInitializer()
1300 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessImplicitDtor()
1319 Engine.enqueue(Dst, currBldrCtx->getBlock(), currStmtIdx); in ProcessNewAllocator()
1804 Engine.addAbortedBlock(node, currBldrCtx->getBlock()); in Visit()
2060 Engine.addAbortedBlock(node, currBldrCtx->getBlock()); in Visit()
2462 Engine.enqueueStmtNode(NewNode, CalleeSF->getCallSiteBlock(), in replayWithoutInlining()
2522 Engine.FunctionSummaries->markReachedMaxBlockCount(CalleeSF->getDecl()); in processCFGBlockEntrance()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
Dunroll1.C394 class Engine : public BrickBase
397 explicit Engine(const Interval &dom)
414 Engine A(I);
/openbsd/src/gnu/llvm/llvm/lib/Support/
DLockFileManager.cpp307 std::default_random_engine Engine(Device()); in waitForUnlock() local
318 unsigned long WaitDurationMS = MinWaitDurationMS * Distribution(Engine); in waitForUnlock()
/openbsd/src/gnu/llvm/llvm/lib/
DCMakeLists.txt55 add_llvm_component_group(Engine)
/openbsd/src/gnu/llvm/llvm/lib/Target/PowerPC/
DP10InstrResources.td1478 // 10 Cycles SIMD Matrix Multiply Engine operations, 0 input operands
1484 // 10 Cycles SIMD Matrix Multiply Engine operations, 2 input operands
1497 // 10 Cycles SIMD Matrix Multiply Engine operations, 3 input operands
1523 // 10 Cycles SIMD Matrix Multiply Engine operations, 4 input operands
1530 // 10 Cycles SIMD Matrix Multiply Engine operations, 5 input operands
1549 // 10 Cycles SIMD Matrix Multiply Engine operations, 6 input operands
1568 // 10 Cycles SIMD Matrix Multiply Engine operations, and 3 Cycles ALU operations, 1 input operands
1575 // 10 Cycles SIMD Matrix Multiply Engine operations, 3 Cycles ALU operations, 10 Cycles SIMD Matrix…
DPPCScheduleP10.td38 // Do not support SPE (Signal Procesing Engine) on Power 10.
DPPCScheduleP9.td41 // Do not support SPE (Signal Processing Engine) or prefixed instructions on
DP9InstrResources.td1352 // Signal Processing Engine (SPE) Instructions
DPPCInstrSPE.td9 // This file describes the Signal Processing Engine extension to
/openbsd/src/gnu/llvm/clang/tools/clang-fuzzer/
DREADME.txt128 function (optimized and not), llvm-proto-fuzzer uses LLVM's JIT Engine to
/openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
DSmartPtrModeling.cpp332 auto &Engine = State->getStateManager().getOwningEngine(); in evalCall() local
333 State = Engine.updateObjectsUnderConstruction( in evalCall()
/openbsd/src/gnu/llvm/llvm/docs/
DMCJITDesignAndImplementation.rst13 Engine Creation
DCompilerWriterInfo.rst82 * `Signal Processing Engine (SPE) Programming Environments Manual: A Supplement to the EREF <https:…
/openbsd/src/etc/
Dpf.os609 S4:64:0:48:M1460,N,N,S: Cisco:Content Engine::Cisco Content Engine
/openbsd/src/gnu/usr.bin/perl/cpan/Encode/t/
Dmime-header.t34 if ($] < 5.009004) { # perl versions without Regular expressions Engine de-recursivised which cause…
/openbsd/src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
Dperlfaq.pod532 A non-free, commercial product, ``The Velocity Engine for Perl'',

12