| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/compiler/ |
| D | interop_peepholes_test.cpp | 39 INST(2U, Opcode::LoadString).Inputs(1U).ref(); in TEST_F() 61 INST(2U, Opcode::LoadString).Inputs(1U).ref(); in TEST_F() 81 INST(2U, Opcode::LoadString).Inputs(1U).ref(); in TEST_F() 123 INST(8U, Opcode::LoadString).ref().Inputs(6U); in SetPropertyStringBuildInitialGraph() 155 INST(8U, Opcode::LoadString).ref().Inputs(6U); in SetPropertyStringBuildExpectedGraph()
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/ |
| D | const_array_resolver_test.cpp | 227 INST(7, Opcode::LoadString).ref().Inputs(6); in TEST_F() 231 INST(10, Opcode::LoadString).ref().Inputs(9); in TEST_F() 235 INST(13, Opcode::LoadString).ref().Inputs(12); in TEST_F() 265 INST(8, Opcode::LoadString).ref().Inputs(7); in TEST_F() 267 INST(10, Opcode::LoadString).ref().Inputs(9); in TEST_F() 269 INST(12, Opcode::LoadString).ref().Inputs(11); in TEST_F()
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | module_constant_analyzer.cpp | 73 case Opcode::LoadString: in GetInstConstValue() 81 inst->GetDataFlowInput(0)->GetOpcode() == compiler::Opcode::LoadString) { in GetInstConstValue()
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
| D | const_array_resolver_test.cpp | 270 INST(7U, Opcode::LoadString).ref().Inputs(6U); in TEST_F() 274 INST(10U, Opcode::LoadString).ref().Inputs(9U); in TEST_F() 278 INST(13U, Opcode::LoadString).ref().Inputs(12U); in TEST_F() 308 INST(8U, Opcode::LoadString).ref().Inputs(7U); in TEST_F() 310 INST(10U, Opcode::LoadString).ref().Inputs(9U); in TEST_F() 312 INST(12U, Opcode::LoadString).ref().Inputs(11U); in TEST_F()
|
| D | reg_acc_alloc_test.cpp | 895 INST(4U, Opcode::LoadString).ref().Inputs(3U).TypeId(42U); in TEST_F() 899 INST(6U, Opcode::LoadString).ref().Inputs(3U).TypeId(43U); in TEST_F() 901 INST(8U, Opcode::LoadString).ref().Inputs(3U).TypeId(44U); in TEST_F() 903 INST(10U, Opcode::LoadString).ref().Inputs(3U).TypeId(45U); in TEST_F()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/ |
| D | ets_const_array.sts | 21 //! INST_COUNT "LoadString", 3 27 //! INST_NOT "LoadString"
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | ref_check_elim_test.pa | 23 #! INST "LoadString" 26 #! INST "LoadString"
|
| /arkcompiler/runtime_core/static_core/tests/checked/ |
| D | ref_check_elim_test.pa | 23 #! INST "LoadString" 26 #! INST "LoadString"
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/ |
| D | builtins.h | 32 llvm::Function *LoadString(llvm::Module *module);
|
| /arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
| D | loop_peeling.cpp | 59 … llvmbackend::builtins::LoadString(module), llvmbackend::builtins::ResolveVirtual(module)}; in ContainsGvnBuiltin()
|
| D | ark_gvn.cpp | 41 using builtins::LoadString; 57 LoadString(function.getParent()), ResolveVirtual(function.getParent())}; in run()
|
| /arkcompiler/runtime_core/compiler/optimizer/ir_builder/ |
| D | inst_builder-inl.h | 33 static_assert(opcode == Opcode::LoadString); in BuildLoadFromPool()
|
| /arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
| D | const_array_resolver.cpp | 50 case Opcode::LoadString: in IsPatchAllowedOpcode() 335 …if ((rawElemInst->GetOpcode() == Opcode::LoadString) && (componentTypeDescriptor == stringDescript… in FillLiteral()
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | method_properties_test.cpp | 140 INST(1U, Opcode::LoadString).ref().Inputs(0U).TypeId(42U); in TEST_F()
|
| D | graph_comparator.h | 190 CHECK_OR_RETURN(LoadString, GetNeedBarrier) in InstAdditionalPropertiesCompare()
|
| D | inst_generator.h | 257 {Opcode::LoadString, {DataType::REFERENCE}},
|
| /arkcompiler/runtime_core/compiler/docs/ |
| D | aot_resolve_string.md | 11 During AOT compilation `LoadString` instruction could be either encoded as regular `ResolveString` …
|
| /arkcompiler/runtime_core/static_core/compiler/docs/ |
| D | aot_resolve_string.md | 11 During AOT compilation `LoadString` instruction could be either encoded as regular `ResolveString` …
|
| D | simplify_sb_doc.md | 392 4.ref LoadString 63726 v5 -> (v8p) 438 4.ref LoadString 63726 ss -> (v22)
|
| /arkcompiler/runtime_core/bytecode_optimizer/constant_propagation/ |
| D | constant_propagation.cpp | 297 ASSERT(inst->GetDataFlowInput(0)->GetOpcode() == compiler::Opcode::LoadString); in VisitCastValueToAnyType() 341 ASSERT(inst && inst->GetOpcode() == compiler::Opcode::LoadString); in VisitLoadString()
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | graph_comparator.h | 160 CHECK(LoadString, GetNeedBarrier) in Compare()
|
| D | dump_test.cpp | 657 loadFromPool.SetOpcode(Opcode::LoadString); in __anona6029c600d02() 658 EXPECT_EQ(loadFromPool.GetOpcode(), Opcode::LoadString); in __anona6029c600d02()
|
| D | inst_generator.h | 212 {Opcode::LoadString, {DataType::REFERENCE}},
|
| /arkcompiler/runtime_core/docs/ |
| D | PBC2IR.md | 19 | lda.str | ref LoadString |
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | PBC2IR.md | 19 | lda.str | ref LoadString |
|