| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | pass_manager.cpp | 100 PassRunner<PassData> pipeline(data_); in Compile() local 105 pipeline.RunPass<RunFlowCyclesVerifierPass>(); in Compile() 106 pipeline.RunPass<RedundantPhiEliminationPass>(); in Compile() 108 pipeline.RunPass<LoopOptimizationPass>(); in Compile() 109 pipeline.RunPass<RedundantPhiEliminationPass>(); in Compile() 111 pipeline.RunPass<TypeInferPass>(); in Compile() 116 pipeline.RunPass<PGOTypeInferPass>(); in Compile() 117 pipeline.RunPass<TSClassAnalysisPass>(); in Compile() 118 pipeline.RunPass<TSInlineLoweringPass>(); in Compile() 119 pipeline.RunPass<RedundantPhiEliminationPass>(); in Compile() [all …]
|
| D | stub_compiler.cpp | 111 PassRunner<StubPassData> pipeline(&data); in RunPipeline() local 112 pipeline.RunPass<StubBuildCircuitPass>(); in RunPipeline() 113 pipeline.RunPass<VerifierPass>(); in RunPipeline() 114 pipeline.RunPass<SchedulingPass>(); in RunPipeline() 115 pipeline.RunPass<StubLLVMIRGenPass>(i); in RunPipeline()
|
| D | ts_inline_lowering.cpp | 242 PassRunner<PassData> pipeline(&data); in InlineCall() local 243 pipeline.RunPass<RedundantPhiEliminationPass>(); in InlineCall() 245 pipeline.RunPass<LoopOptimizationPass>(); in InlineCall() 246 pipeline.RunPass<RedundantPhiEliminationPass>(); in InlineCall() 248 pipeline.RunPass<TypeInferPass>(); in InlineCall() 249 pipeline.RunPass<PGOTypeInferPass>(); in InlineCall()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ |
| D | pipeline.h | 28 * Run optimization pipeline. 29 * New pipeline is created by inheriting this class and overriding needed methods. 31 class Pipeline { 33 explicit Pipeline(Graph *graph) : graph_(graph) {} in Pipeline() function 34 virtual ~Pipeline() = default; 36 NO_COPY_SEMANTIC(Pipeline); 37 NO_MOVE_SEMANTIC(Pipeline); 49 static std::unique_ptr<Pipeline> Create(Graph *graph);
|
| D | pipeline.cpp | 16 #include "pipeline.h" 68 std::unique_ptr<Pipeline> Pipeline::Create(Graph *graph) in Create() 73 return std::make_unique<Pipeline>(graph); in Create() 87 void Pipeline::Run(CompilerTaskRunner<RUNNER_MODE> taskRunner) in Run() 89 auto pipeline = taskRunner.GetContext().GetPipeline(); in Run() local 90 auto *graph = pipeline->GetGraph(); in Run() 108 Pipeline::RunRegAllocAndCodeGenPass<RUNNER_MODE>(std::move(nextRunner)); in Run() 110 bool success = pipeline->RunOptimizations(); in Run() 123 Pipeline::RunRegAllocAndCodeGenPass<RUNNER_MODE>(std::move(taskRunner)); in Run() 128 void Pipeline::RunRegAllocAndCodeGenPass(CompilerTaskRunner<RUNNER_MODE> taskRunner) in RunRegAllocAndCodeGenPass() [all …]
|
| /arkcompiler/runtime_core/static_core/compiler/ |
| D | optimizer_run.h | 19 #include "optimizer/pipeline.h" 31 auto pipeline = Pipeline::Create(taskCtx.GetGraph()); in RunOptimizations() local 33 taskCtx.SetPipeline(std::move(pipeline)); in RunOptimizations() 35 taskCtx.SetPipeline(pipeline.get()); in RunOptimizations() 37 Pipeline::Run<RUNNER_MODE>(std::move(taskRunner)); in RunOptimizations()
|
| D | inplace_task_runner.h | 32 class Pipeline; variable 72 void SetPipeline(Pipeline *pipeline) in SetPipeline() argument 74 pipeline_ = pipeline; in SetPipeline() 117 Pipeline *GetPipeline() const in GetPipeline() 135 Pipeline *pipeline_ {nullptr};
|
| D | background_task_runner.h | 25 #include "compiler/optimizer/pipeline.h" 78 void SetPipeline(std::unique_ptr<Pipeline> pipeline) in SetPipeline() argument 80 pipeline_ = std::move(pipeline); in SetPipeline() 123 Pipeline *GetPipeline() const in GetPipeline() 140 std::unique_ptr<Pipeline> pipeline_;
|
| D | CMakeLists.txt | 154 optimizer/pipeline.cpp
|
| D | BUILD.gn | 160 "optimizer/pipeline.cpp",
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/ |
| D | llvmbackend.yaml | 41 - name: llvm-pipeline 46 pipeline.
|
| D | CMakeLists.txt | 66 COMMAND ruby ${CMAKE_CURRENT_LIST_DIR}/templates/pipeline.rb
|
| D | BUILD.gn | 227 script = "$llvmbackend_templates_dir/pipeline.rb"
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/ |
| D | llvm_optimizer.cpp | 72 llvm::report_fatal_error(llvm::Twine("Cant open pipeline file: `") + filename + "`", false); in PreprocessPipelineFile() 102 std::string pipeline; in GetOptimizationPipeline() local 104 pipeline = PreprocessPipelineFile(filename); in GetOptimizationPipeline() 107 pipeline = std::string {PIPELINE_IRTOC}; in GetOptimizationPipeline() 109 return pipeline; in GetOptimizationPipeline()
|
| D | pipeline_irtoc.cfg | 121 # Continue default pipeline
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/templates/ |
| D | pipeline.rb | 37 lines = "constexpr std::string_view PIPELINE#{options.suffix} = R\"__MAGIC__(#{lines})__MAGIC__\";"
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | scheduler_doc.md | 8 …pipeline when input registers are not ready yet, because they are written by one of the previous i… 23 * No CPU pipeline/resource modeling, only having dependency costs
|
| D | if_conversion_doc.md | 8 …itself. If the prediction is incorrect(named branch misprediction), the pipeline stops and the sta…
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/napi/ |
| D | CMakeLists.txt | 22 # Testin pipeline:
|
| /arkcompiler/ets_frontend/test262/ |
| D | harness.patch | 30 -// Test Pipeline 42 +// Test Pipeline
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | reg_encoder.h | 47 * is of course constant throughout optimization pipeline.
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | reg_encoder.h | 47 * is of course constant throughout optimization pipeline.
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | scheduler.cpp | 30 * 4. No CPU pipeline/resource modeling, only having dependency costs.
|
| D | locations_builder.cpp | 287 * during optimizations pipeline. Thus, locations is set by IR builder before optimizations. in LOCATIONS_BUILDER()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_schedule.cpp | 620 /* The priority of free-reg node is higher than pipeline */ in SelectNode() 915 /* strategy CSP -- code schedule for CPU pipeline */ in CompareDepNode()
|