Home
last modified time | relevance | path

Searched full:isdynamicmethod (Results 1 – 21 of 21) sorted by relevance

/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.cpp254 if (GetGraph()->IsDynamicMethod()) { in EncodeSpillFillData()
288 if (enc->GetGraph()->IsDynamicMethod()) { in VisitConstant()
300 if (enc->GetGraph()->IsDynamicMethod()) { in VisitConstant()
308 if (enc->GetGraph()->IsDynamicMethod()) { in VisitConstant()
322 if (enc->GetGraph()->IsDynamicMethod()) { in VisitConstant()
330 if (enc->GetGraph()->IsDynamicMethod()) { in VisitConstant()
370 if (enc->GetGraph()->IsDynamicMethod()) { in VisitIf()
486 ASSERT(enc->GetGraph()->IsDynamicMethod()); in IfImmZero()
526 if (enc->GetGraph()->IsDynamicMethod()) { in VisitLoadString()
535 if (enc->GetGraph()->IsDynamicMethod()) { in VisitLoadString()
[all …]
Dcommon.cpp38 ASSERT(inst->GetBasicBlock()->GetGraph()->IsDynamicMethod()); in AccReadIndex()
Doptimize_bytecode.cpp70 ASSERT(graph->IsDynamicMethod()); in RunOptimizations()
246 if (graph->IsDynamicMethod()) { in DebugInfoPropagate()
Dreg_acc_alloc.cpp235 if (!GetGraph()->IsDynamicMethod()) { in RunImpl()
/arkcompiler/runtime_core/runtime/include/
Dstack_walker-inl.h71 ASSERT(!IsDynamicMethod()); in IterateRegsForCFrameStatic()
105 ASSERT(IsDynamicMethod()); in IterateRegsForCFrameDynamic()
173 if (IsDynamicMethod()) { in IterateRegs()
Dstack_walker.h205 bool IsDynamicMethod() const;
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml122 if (GetGraph()->IsBytecodeOptimizer() && GetGraph()->IsDynamicMethod()) {
139 if (GetGraph()->IsBytecodeOptimizer() && GetGraph()->IsDynamicMethod()) {
148 if (GetGraph()->IsBytecodeOptimizer() && GetGraph()->IsDynamicMethod()) {
160 if (GetGraph()->IsBytecodeOptimizer() && GetGraph()->IsDynamicMethod()) {
226 …if (GetGraph()->IsBytecodeOptimizer() && GetGraph()->IsDynamicMethod() && GetGraph()->GetRuntime()…
Dinst_builder-inl.h72 if (GetGraph()->IsDynamicMethod()) { in BuildLoadFromPool()
Dinst_builder.h133 ASSERT(GetGraph()->IsDynamicMethod()); in TryFillInstIdTypePair()
Dir_builder.cpp87 ASSERT(GetGraph()->IsDynamicMethod()); in CheckMethodLimitations()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dcodegen_native.cpp60 if (GetGraph()->IsDynamicMethod()) { in GeneratePrologue()
84 if (GetGraph()->IsDynamicMethod()) { in GenerateEpilogue()
Dspill_fill_encoder.cpp159 if (graph_->IsDynamicMethod() && const_inst->GetType() == DataType::INT64) { in EncodeImmToX()
Dcodegen.cpp374 if (GetGraph()->IsDynamicMethod()) { in GeneratePrologue()
404 if (GetGraph()->IsDynamicMethod()) { in GenerateEpilogue()
2647 if (enc->cg_->GetGraph()->IsDynamicMethod() && type == DataType::INT64) { in VisitConstant()
2982 …if (codegen->GetGraph()->GetMode().SupportManagedCode() && codegen->GetGraph()->IsDynamicMethod() … in VisitParameter()
/arkcompiler/runtime_core/bytecode_optimizer/templates/
Dcodegen_intrinsics.cpp.erb26 if (!enc->GetGraph()->IsDynamicMethod()) {
/arkcompiler/runtime_core/runtime/
Dstack_walker.cpp297 if (IsDynamicMethod()) { in SetVRegValue()
554 if (IsDynamicMethod()) { in ConvertToIFrame()
608 bool StackWalker::IsDynamicMethod() const in IsDynamicMethod() function in panda::StackWalker
622 ASSERT(IsDynamicMethod()); in Verify()
647 if (IsDynamicMethod()) { in Verify()
753 os << (IsDynamicMethod() ? "[dynamic function]" : GetMethod()->GetFullName()); in DumpFrame()
/arkcompiler/runtime_core/compiler/
Doptimizer_run.cpp92 if (graph->IsDynamicMethod()) { in RunOptimizations()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dgraph_checker.cpp84 if (!GetGraph()->IsDynamicMethod()) { in Check()
146 if (!GetGraph()->IsLowLevelInstructionsEnabled() && !GetGraph()->IsDynamicMethod()) { in CheckBlock()
240 … (block->GetGraph()->IsDynamicMethod() && user_input_type == DataType::ANY), in CheckDataFlow()
406 ASSERT_DO(GetGraph()->IsDynamicMethod() || inst->GetType() != DataType::ANY, in CheckDataFlow()
1445 … [[maybe_unused]] auto is_dynamic = static_cast<GraphChecker *>(v)->GetGraph()->IsDynamicMethod(); in CheckDataFlow()
1731 ASSERT_DO(static_cast<GraphChecker *>(v)->GetGraph()->IsDynamicMethod(), in CheckDataFlow()
1877 … [[maybe_unused]] bool is_dynamic = static_cast<GraphChecker *>(v)->GetGraph()->IsDynamicMethod(); in CheckDataFlow()
1992 …(static_cast<GraphChecker *>(v)->GetGraph()->IsDynamicMethod() && op1->GetType() == DataType::ANY), in CheckDataFlow()
2035 ASSERT_DO(static_cast<GraphChecker *>(v)->GetGraph()->IsDynamicMethod(), in CheckDataFlow()
2041 ASSERT_DO(static_cast<GraphChecker *>(v)->GetGraph()->IsDynamicMethod(), in CheckDataFlow()
[all …]
Dgraph.h946 bool IsDynamicMethod() const in IsDynamicMethod() function
948 return mode_.IsDynamicMethod(); in IsDynamicMethod()
Dgraph_checker.h232 if (inst1->GetBasicBlock()->GetGraph()->IsDynamicMethod() && in CheckCommonTypes()
Dinst.cpp594 if (GetBasicBlock()->GetGraph()->IsDynamicMethod() && IsConst()) { in IsAccWrite()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dlowering.cpp104 ASSERT(!graph->SupportManagedCode() || graph->IsDynamicMethod()); in LowerIf()