/arkcompiler/runtime_core/compiler/tests/ |
H A D | osr_test.cpp | 103 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 118 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 155 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 169 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 206 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 262 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 279 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 297 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 345 auto osr_events = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 349 auto deopt_events = events->Select<event in TEST_F() [all...] |
H A D | inst_generator.h | 218 {Opcode::Select, ref_int_types_},
|
/arkcompiler/runtime_core/static_core/compiler/tests/ |
H A D | osr_test.cpp | 111 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 126 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 163 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 177 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 214 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 270 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 287 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 305 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 354 auto osrEvents = events->Select<events::EventsMemory::OsrEntryEvent>(); in TEST_F() 358 auto deoptEvents = events->Select<event in TEST_F() [all...] |
H A D | inlining_test.cpp | 404 auto inlineEvents = events->Select<events::EventsMemory::InlineEvent>(); in TEST_F() 442 auto inlineEvents = events->Select<events::EventsMemory::InlineEvent>(); in TEST_F() 479 auto inlineEvents = events->Select<events::EventsMemory::InlineEvent>(); in TEST_F() 512 auto inlineEvents = events->Select<events::EventsMemory::InlineEvent>(); in TEST_F() 542 auto inlineEvents = events->Select<events::EventsMemory::InlineEvent>(); in TEST_F() 584 auto inlineEvents = events->Select<events::EventsMemory::InlineEvent>(); in TEST_F()
|
H A D | if_conversion_test.cpp | 126 INST(3U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_NE).Inputs(4U, 0U, 0U, 1U); in TEST_F() 220 INST(3U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_LT).Inputs(0U, 4U, 0U, 1U); in TEST_F() 344 INST(5U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_NE).Inputs(6U, 3U, 3U, 2U); in TEST_F() 345 INST(4U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_NE).Inputs(5U, 0U, 3U, 1U); in TEST_F() 369 INST(6U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_NE).Inputs(7U, 5U, 5U, 2U); in CreateExpJointTriangleWithTrickFloatPhi() 578 INST(4U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_GT).Inputs(5U, 6U, 3U, 1U); in CreateExpectedJointDiamond() 641 INST(4U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_GT).Inputs(5U, 6U, 3U, 1U); in CreateExpJointDiamondWithDroppedSelect() 642 // Second Select not needed in CreateExpJointDiamondWithDroppedSelect() 729 INST(2U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(CC_GE).Inputs(3U, 0U, 0U, 1U); in TEST_F() 1175 INST(114U, Opcode::Select) in TEST_F() [all...] |
H A D | graph_comparator.h | 140 CHECK_OR_RETURN(Select, GetCc) in InstPropertiesCompare() 141 CHECK_OR_RETURN(Select, GetOperandsType) in InstPropertiesCompare()
|
H A D | inst_generator.cpp | 31 case Opcode::Select: in GenerateGraph() 489 } else if (opc == Opcode::Select) { in PopulateGraph() 1250 case Opcode::Select: in Generate()
|
H A D | inst_generator.h | 263 {Opcode::Select, refIntTypes_},
|
H A D | alias_analysis_test.cpp | 1200 /// Select instruction is very similar to Phi. 1201 TEST_F(AliasAnalysisTest, Select) in TEST_F()
|
H A D | reg_alloc_linear_scan_test.cpp | 1587 INST(4U, Opcode::Select).s64().SrcType(DataType::Type::INT64).CC(CC_LT).Inputs(0U, 1U, 2U, 3U); in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_plural_rules.h | 31 static JSTaggedValue Select(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_plural_rules.cpp | 75 JSTaggedValue BuiltinsPluralRules::Select(EcmaRuntimeCallInfo *argv) in Select() function in panda::ecmascript::builtins::BuiltinsPluralRules 78 BUILTINS_API_TRACE(thread, PluralRules, Select); in Select()
|
H A D | builtins.cpp | 3507 SetFunction(env, prPrototype, "select", PluralRules::Select, FunctionLength::ONE); in InitializePluralRules()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
H A D | aarch64_fixup_sdiv.cpp | 69 ASSERT(instruction.getOpcode() == llvm::Instruction::Select); in run()
|
H A D | gep_propagation.cpp | 81 case Instruction::Select: in AddToVector() 365 /// Basic optimization of generated PHI and Select instructions that have identical inputs.
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_plural_rules_test.cpp | 91 JSTaggedValue result = BuiltinsPluralRules::Select(ecmaRuntimeCallInfo); in SelectTest()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
H A D | ir_constructor.h | 333 case Opcode::Select: in CC() 890 case Opcode::Select: 939 op == Opcode::Select || op == Opcode::SelectImm)) {
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | ir_constructor.h | 414 case Opcode::Select: in CC() 1020 case Opcode::Select: in SrcType() 1207 case Opcode::Select: 1251 op == Opcode::IfImm || op == Opcode::Select || op == Opcode::SelectImm)) {
|
/arkcompiler/runtime_core/static_core/compiler/tests/codegen/ |
H A D | codegen_test_1.cpp | 1160 ASSERT_EQ(INS(6U).GetInput(0U).GetInst()->GetOpcode(), Opcode::Select); in TEST_F() member in ark::compiler::Opcode 1263 SRC_GRAPH(Select, Graph *graph, ConditionCode cc) in SRC_GRAPH() 1273 INST(5U, Opcode::Select).u64().SrcType(DataType::UINT64).CC(cc).Inputs(3U, 2U, 0U, 1U); in SRC_GRAPH() 1278 TEST_F(CodegenTest, Select) in TEST_F() 1286 src_graph::Select::CREATE(graph, cc); in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 681 V(PluralRules, Select) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 700 reinterpret_cast<uintptr_t>(PluralRules::Select),
|