• Home
  • Raw
  • Download

Lines Matching full:data

153     explicit PassRunner(T1* data) : data_(data) {}  in PassRunner()  argument
168 bool Run(PassData* data) in Run() argument
170 …TimeScope timescope("TypeInferPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog(… in Run()
171 if (data->HasTypes()) { in Run()
172 bool enableLog = data->GetLog()->GetEnableMethodLog() && data->GetLog()->OutputType(); in Run()
173 …TypeInfer typeInfer(data->GetBuilder(), data->GetCircuit(), data->GetInfo(), data->GetMethodInfoIn… in Run()
174 enableLog, data->GetMethodName(), data->GetRecordName()); in Run()
183 bool Run(PassData *data) in Run() argument
185 …TimeScope timescope("TSTypeLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->Ge… in Run()
186 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
187 TSTypeLowering lowering(data->GetCircuit(), data->GetInfo(), enableLog, in Run()
188 data->GetMethodName()); in Run()
196 bool Run(PassData *data) in Run() argument
198 …TimeScope timescope("TypeLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->GetL… in Run()
199 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
200 TypeLowering lowering(data->GetCircuit(), data->GetCompilerConfig(), data->GetTSManager(), in Run()
201 enableLog, data->GetMethodName()); in Run()
209 bool Run(PassData *data, PassInfo *info) in Run() argument
211 …TimeScope timescope("TSInlineLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->… in Run()
212 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
213 TSInlineLowering inlining(data->GetCircuit(), info, enableLog, data->GetMethodName()); in Run()
221 bool Run(PassData* data) in Run() argument
223 …TimeScope timescope("SlowPathLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->… in Run()
224 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
225 … SlowPathLowering lowering(data->GetCircuit(), data->GetCompilerConfig(), data->GetTSManager(), in Run()
226 data->GetMethodLiteral(), enableLog, data->GetMethodName()); in Run()
234 bool Run(PassData* data) in Run() argument
236 …TimeScope timescope("VerifierPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()… in Run()
237 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
238 bool isQualified = Verifier::Run(data->GetCircuit(), data->GetMethodName(), enableLog); in Run()
249 bool Run(PassData* data) in Run() argument
251 …TimeScope timescope("EarlyEliminationPass", data->GetMethodName(), data->GetMethodOffset(), data->… in Run()
252 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
253 …EarlyElimination(data->GetCircuit(), enableLog, data->GetMethodName(), data->GetNativeAreaAllocato… in Run()
260 bool Run(PassData* data) in Run() argument
262 …TimeScope timescope("SchedulingPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog… in Run()
263 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
264 Scheduler::Run(data->GetCircuit(), data->GetCfg(), data->GetMethodName(), enableLog); in Run()
276 bool Run(PassData *data) in Run() argument
278 auto module = data->GetAotModule(); in Run()
279 …TimeScope timescope("LLVMIRGenPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog(… in Run()
280 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
282 CodeGenerator codegen(llvmImpl_, data->GetMethodName()); in Run()
283 … codegen.Run(data->GetCircuit(), data->GetConstScheduleResult(), module->GetCompilationConfig(), in Run()
284 data->GetMethodLiteral(), data->GetJSPandaFile()); in Run()
293 bool Run(PassData* data) in Run() argument
295 TimeScope timescope("AsyncFunctionLoweringPass", data->GetMethodName(), in Run()
296 data->GetMethodOffset(), data->GetLog()); in Run()
297 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run()
298 … AsyncFunctionLowering lowering(data->GetBuilder(), data->GetCircuit(), data->GetCompilerConfig(), in Run()
299 enableLog, data->GetMethodName()); in Run()