Home
last modified time | relevance | path

Searched refs:input_type (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dphi_resolver.h103 auto input_type = input.GetInst()->GetType(); in SetTypeByInputs() local
104 if (input_type != DataType::NO_TYPE) { in SetTypeByInputs()
105 inst->SetType(input_type); in SetTypeByInputs()
179 auto input_type = input_inst->GetType(); in CheckPhiInputs() local
180 if (input_type == DataType::NO_TYPE) { in CheckPhiInputs()
183 if (input_inst->IsConst() && input_type == DataType::INT64) { in CheckPhiInputs()
191 if (has_constant_input && DataType::GetCommonType(input_type) != DataType::INT64) { in CheckPhiInputs()
194 type = input_type; in CheckPhiInputs()
195 } else if (type != input_type) { in CheckPhiInputs()
Dinst_builder.cpp249 auto input_type = inst->GetInputType(input_idx); in FixInstructions() local
250 if (input_type != DataType::NO_TYPE) { in FixInstructions()
251 SetTypeRec(input.GetInst(), input_type); in FixInstructions()
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/benchmark/
Drun_benchmark.py149 if args.input_type == "class":
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/
Drun_benchmark.py149 if args.input_type == "class":
/arkcompiler/ets_frontend/es2panda/test/
Drunner.py1236 def __init__(self, test_path, input_type): argument
1238 self.input_type = input_type
1242 if self.input_type == "file":
1246 elif self.input_type == "string":
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.h1842 for (auto input_type : *input_types_) { in CloneTypes()
1843 target_inst->AddInputType(input_type); in CloneTypes()