| /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 | memory_barriers_test.cpp | 37 INST(7, Opcode::CallStatic).v0id().Inputs({{DataType::NO_TYPE, 6}}); in TEST_F() 44 … .Inputs({{DataType::REFERENCE, 2}, {DataType::REFERENCE, 5}, {DataType::NO_TYPE, 6}}); 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 | method_properties_test.cpp | 33 INST(3, opcode).v0id().Inputs({{DataType::REFERENCE, 2}, {DataType::NO_TYPE, 5}}); in CheckCall()
|
| D | inst_generator.cpp | 151 if (inst->GetType() == DataType::NO_TYPE || inst->IsStore()) { in GenerateGraph() 258 call_inst->AddInputType(DataType::NO_TYPE); in GenerateOperation() 280 call_inst->AddInputType(DataType::NO_TYPE); in GenerateOperation() 655 arrays_inst->AddInputType(DataType::NO_TYPE); in GenerateMultiArrayOperation() 1184 constexpr std::array<const char *, 15> LABELS = {"NO_TYPE", "REF", "BOOL", "UINT8", "INT8",
|
| D | reg_alloc_common_test.cpp | 262 … Opcode::Intrinsic).any().Inputs({{DataType::ANY, 1}, {DataType::ANY, 0}, {DataType::NO_TYPE, 2}}); in TEST_F()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | phi_resolver.h | 103 if (input_type != DataType::NO_TYPE) { in SetTypeByInputs() 143 if (input_inst->GetType() != DataType::NO_TYPE) { in FindInputsRec() 169 DataType::Type type = DataType::NO_TYPE; in CheckPhiInputs() 179 if (input_type == DataType::NO_TYPE) { in CheckPhiInputs() 183 if (type != DataType::NO_TYPE && DataType::GetCommonType(type) != DataType::INT64) { in CheckPhiInputs() 189 if (type == DataType::NO_TYPE) { in CheckPhiInputs() 199 if (type == DataType::NO_TYPE) { in CheckPhiInputs()
|
| D | inst_templates.yaml | 87 …auto inst_jump = graph_->CreateInstIfImm(DataType::NO_TYPE, GetPc(instruction->GetAddress()), Cond… 217 …auto jmp_inst = graph_->CreateInstIfImm(DataType::NO_TYPE, GetPc(instruction->GetAddress()), Condi…
|
| D | inst_builder.cpp | 255 if (input_type != DataType::NO_TYPE) { in FixInstructions()
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/ |
| D | bytecodeopt_peepholes_test.cpp | 103 INST(5, Opcode::CallStatic).v0id().Inputs({{REFERENCE, 2}, {NO_TYPE, 3}}); in TEST_F() 121 INST(8, Opcode::InitObject).ref().Inputs({{REFERENCE, 1}, {NO_TYPE, 3}}); in TEST_F() 147 INST(5, Opcode::CallStatic).v0id().Inputs({{REFERENCE, 2}, {NO_TYPE, 3}}); in TEST_F() 174 INST(5, Opcode::CallStatic).v0id().Inputs({{REFERENCE, 2}, {NO_TYPE, 3}}); in TEST_F() 198 INST(5, Opcode::CallStatic).v0id().Inputs({{REFERENCE, 2}, {NO_TYPE, 4}}); in TEST_F() 222 INST(5, Opcode::CallStatic).v0id().Inputs({{REFERENCE, 2}, {NO_TYPE, 3}}); in TEST_F()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| D | datatype.h | 30 NO_TYPE = 0, enumerator 64 "", // NO_TYPE 193 return NO_TYPE;
|
| D | inst.h | 836 return GetType() != DataType::Type::NO_TYPE; in HasType() 1552 explicit Inst(Opcode opcode) : Inst(opcode, DataType::Type::NO_TYPE, INVALID_PC) {} in Inst() 2737 return (index == 0) ? DataType::ANY : DataType::NO_TYPE; in GetInputType() 2764 ASSERT(GetTypeFromCType<T>() != DataType::NO_TYPE); in Inst() 2853 return DataType::NO_TYPE; 3194 return DataType::NO_TYPE; in GetInputType() 3336 return DataType::NO_TYPE; in GetInputType() 3383 return DataType::NO_TYPE; in GetInputType() 3409 return DataType::NO_TYPE; in GetInputType() 3455 return DataType::NO_TYPE; in GetInputType() [all …]
|
| D | runtime_interface.h | 168 return DataType::NO_TYPE; in GetMethodReturnType() 175 return DataType::NO_TYPE; in GetMethodTotalArgumentType() 185 return DataType::NO_TYPE; in GetMethodReturnType() 190 return DataType::NO_TYPE; in GetMethodArgumentType() 760 return DataType::NO_TYPE; in GetFieldType() 765 return DataType::NO_TYPE; in GetFieldTypeById()
|
| D | spill_fill_data.h | 92 DataType::Type type_ {DataType::NO_TYPE};
|
| D | graph_checker.cpp | 1424 ASSERT_DO(inst->GetType() == DataType::NO_TYPE, in CheckDataFlow() 1482 ASSERT_DO(inst->GetType() != DataType::NO_TYPE, in CheckDataFlow() 1491 ASSERT_DO(inst->GetInputType(i) != DataType::NO_TYPE, in CheckDataFlow() 1567 ASSERT_DO(inst->GetInputType(i) != DataType::NO_TYPE, in CheckDataFlow() 1823 ASSERT_DO(inst->GetInputType(i) != DataType::NO_TYPE, in CheckDataFlow() 1880 ASSERT_DO(inst->GetInputType(i) != DataType::NO_TYPE, in CheckDataFlow() 1939 ASSERT_DO(inst->GetInputType(i) != DataType::NO_TYPE, in CheckDataFlow() 1973 ASSERT_DO(inst->GetInputType(0) != DataType::NO_TYPE, in CheckDataFlow()
|
| /arkcompiler/runtime_core/irtoc/lang/ |
| D | ir_generator.rb | 151 … Output << "auto #{save_state_var_name} = graph->CreateInstSaveState(DataType::Type::NO_TYPE, pc);" 153 Output << "#{var_name}->AddInputType(DataType::NO_TYPE);"
|
| D | instruction.rb | 148 nil => :NO_TYPE, 269 Output.println("#{local_var_name}->AddInputType(DataType::NO_TYPE);")
|
| /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'} 389 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()
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | lowering.cpp | 143 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 | 99 type_(DataType::NO_TYPE), in LifeIntervals()
|