Home
last modified time | relevance | path

Searched full:pipeline (Results 1 – 25 of 27) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/compiler/
Dpass_manager.cpp100 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 …]
Dstub_compiler.cpp111 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()
Dts_inline_lowering.cpp242 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/
Dpipeline.h28 * 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);
Dpipeline.cpp16 #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/
Doptimizer_run.h19 #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()
Dinplace_task_runner.h32 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};
Dbackground_task_runner.h25 #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_;
DCMakeLists.txt154 optimizer/pipeline.cpp
DBUILD.gn160 "optimizer/pipeline.cpp",
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvmbackend.yaml41 - name: llvm-pipeline
46 pipeline.
DCMakeLists.txt66 COMMAND ruby ${CMAKE_CURRENT_LIST_DIR}/templates/pipeline.rb
DBUILD.gn227 script = "$llvmbackend_templates_dir/pipeline.rb"
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/
Dllvm_optimizer.cpp72 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()
Dpipeline_irtoc.cfg121 # Continue default pipeline
/arkcompiler/runtime_core/static_core/libllvmbackend/templates/
Dpipeline.rb37 lines = "constexpr std::string_view PIPELINE#{options.suffix} = R\"__MAGIC__(#{lines})__MAGIC__\";"
/arkcompiler/runtime_core/static_core/compiler/docs/
Dscheduler_doc.md8pipeline 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
Dif_conversion_doc.md8 …itself. If the prediction is incorrect(named branch misprediction), the pipeline stops and the sta…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/napi/
DCMakeLists.txt22 # Testin pipeline:
/arkcompiler/ets_frontend/test262/
Dharness.patch30 -// Test Pipeline
42 +// Test Pipeline
/arkcompiler/runtime_core/bytecode_optimizer/
Dreg_encoder.h47 * is of course constant throughout optimization pipeline.
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dreg_encoder.h47 * is of course constant throughout optimization pipeline.
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dscheduler.cpp30 * 4. No CPU pipeline/resource modeling, only having dependency costs.
Dlocations_builder.cpp287 * 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/
Daarch64_schedule.cpp620 /* The priority of free-reg node is higher than pipeline */ in SelectNode()
915 /* strategy CSP -- code schedule for CPU pipeline */ in CompareDepNode()

12