| /arkcompiler/runtime_core/compiler/tests/ |
| D | inst_generator.h | 184 {Opcode::CheckCast, {DataType::NO_TYPE}}, 185 {Opcode::NullCheck, {DataType::NO_TYPE}}, 186 {Opcode::ZeroCheck, {DataType::NO_TYPE}}, 187 {Opcode::NegativeCheck, {DataType::NO_TYPE}}, 188 {Opcode::BoundsCheck, {DataType::NO_TYPE}}, 189 {Opcode::BoundsCheckI, {DataType::NO_TYPE}}, 190 {Opcode::SaveState, {DataType::NO_TYPE}}, 191 {Opcode::ReturnVoid, {DataType::NO_TYPE}}, 192 {Opcode::Throw, {DataType::NO_TYPE}}, 206 {Opcode::SpillFill, {DataType::NO_TYPE}}, [all …]
|
| D | call_input_types_test.cpp | 53 ASSERT_EQ(call_inst->GetInputType(2), DataType::NO_TYPE); // SaveState instruction in TEST_F() 73 ASSERT_EQ(call_inst->GetInputType(0), DataType::NO_TYPE); // SaveState instruction in TEST_F()
|
| D | unit_test.h | 40 return DataType::NO_TYPE; in GetMethodTotalArgumentType() 64 DataType::Type return_type {DataType::NO_TYPE};
|
| D | vixl_exec_module.h | 42 case (DataType::NO_TYPE): in CutValue() 114 return DataType::NO_TYPE; in GetType()
|
| D | reg_alloc_common_test.cpp | 248 … Opcode::Intrinsic).any().Inputs({{DataType::ANY, 1}, {DataType::ANY, 0}, {DataType::NO_TYPE, 2}}); in TEST_F()
|
| D | ir_builder_test.cpp | 823 … INST(6, Opcode::CallStatic).s64().Inputs({{DataType::INT32, 4}, {DataType::NO_TYPE, 5}}); in TEST_F() 828 INST(8, Opcode::CallStatic).s64().Inputs({{DataType::NO_TYPE, 7}}); in TEST_F() 4305 … INST(3, Opcode::CallStatic).v0id().Inputs({{DataType::REFERENCE, 2}, {DataType::NO_TYPE, 4}}); in TEST_F() 4338 …ts({{DataType::REFERENCE, 3}, {DataType::INT32, 1}, {DataType::INT32, 0}, {DataType::NO_TYPE, 2}}); in TEST_F() 4864 INST(2, Opcode::CallStatic).s32().Inputs({{INT64, 0}, {NO_TYPE, 1}}); in TEST_F() 4866 INST(4, Opcode::CallStatic).s32().Inputs({{INT64, 0}, {INT64, 0}, {NO_TYPE, 3}}); in TEST_F() 4902 INST(2, Opcode::CallStatic).s64().Inputs({{INT32, 0}, {NO_TYPE, 1}}); in TEST_F() 4904 INST(4, Opcode::CallStatic).s64().Inputs({{INT32, 0}, {INT32, 0}, {NO_TYPE, 3}}); in TEST_F() 4936 … INST(3, Opcode::CallStatic).s64().Inputs({{DataType::INT32, 0}, {DataType::NO_TYPE, 2}}); in TEST_F()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | phi_resolver.h | 104 if (input_type != DataType::NO_TYPE) { in SetTypeByInputs() 144 if (input_inst->GetType() != DataType::NO_TYPE) { in FindInputsRec() 170 DataType::Type type = DataType::NO_TYPE; in CheckPhiInputs() 180 if (input_type == DataType::NO_TYPE) { in CheckPhiInputs() 184 if (type != DataType::NO_TYPE && DataType::GetCommonType(type) != DataType::INT64) { in CheckPhiInputs() 190 if (type == DataType::NO_TYPE) { in CheckPhiInputs() 200 if (type == DataType::NO_TYPE) { in CheckPhiInputs()
|
| D | inst_templates.yaml | 87 …auto inst_jump = graph_->CreateInstIfImm(DataType::NO_TYPE, GetPc(instruction->GetAddress()), Cond… 213 …auto jmp_inst = graph_->CreateInstIfImm(DataType::NO_TYPE, GetPc(instruction->GetAddress()), Condi…
|
| D | inst_builder.cpp | 250 if (input_type != DataType::NO_TYPE) { in FixInstructions()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | datatype.h | 30 NO_TYPE = 0, enumerator 64 "", // NO_TYPE 193 return NO_TYPE;
|
| D | spill_fill_data.h | 92 DataType::Type type_ {DataType::NO_TYPE};
|
| D | inst.h | 781 return GetType() != DataType::Type::NO_TYPE; in HasType() 1348 explicit Inst(Opcode opcode) : Inst(opcode, DataType::Type::NO_TYPE, INVALID_PC) {} in Inst() 2009 ASSERT(GetTypeFromCType<T>() != DataType::NO_TYPE); in Inst() 2093 return DataType::NO_TYPE; 2415 return DataType::NO_TYPE; in GetInputType() 2669 return DataType::NO_TYPE; in GetInputType()
|
| D | graph_checker.cpp | 771 ASSERT_DO(inst->GetInputType(i) != DataType::NO_TYPE, in VisitIf() 804 ASSERT_DO(inst->GetInputType(0) != DataType::NO_TYPE, in VisitIfImm()
|
| D | graph.cpp | 538 if (inst->GetInputType(i) != DataType::NO_TYPE) { in InitDefaultLocations()
|
| D | ir_constructor.h | 876 if (prev_type == DataType::Type::NO_TYPE) { in CheckInputType()
|
| /arkcompiler/runtime_core/compiler/optimizer/templates/ |
| D | instructions.rb | 239 'none' => 'DataType::NO_TYPE'}
|
| D | inst_builder_gen.cpp.erb | 83 'none' => 'DataType::NO_TYPE'} 364 inst->AddInputType(DataType::NO_TYPE);
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | reg_encoder.h | 76 RegContent() : reg(compiler::INVALID_REG), type(compiler::DataType::NO_TYPE) {} in RegContent()
|
| D | codegen.cpp | 246 ASSERT(sf.GetType() != compiler::DataType::NO_TYPE); in EncodeSpillFillData()
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | lowering.cpp | 122 auto replace = graph->CreateInstIf(DataType::NO_TYPE, inst->GetPc(), cc); in LowerIf()
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | spill_fills_resolver.cpp | 173 …ll(moves_table_.begin(), moves_table_.end(), MoveInfo {INVALID_LOCATION_INDEX, DataType::NO_TYPE}); in CollectSpillFillsData()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | liveness_analyzer.h | 98 type_(DataType::NO_TYPE), in LifeIntervals()
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
| D | cocos_worker_test.js | 30688 this.type = RS.NO_TYPE; 30710 RS.NO_TYPE = "no_type";
|