Home
last modified time | relevance | path

Searched full:label1 (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/
Dassembler_aarch64_test.cpp257 Label label1; in HWTEST_F_L0() local
260 __ B(Condition::EQ, &label1); in HWTEST_F_L0()
262 __ B(Condition::GT, &label1); in HWTEST_F_L0()
264 __ Bind(&label1); in HWTEST_F_L0()
290 Label label1; in HWTEST_F_L0() local
296 __ B(Condition::EQ, &label1); in HWTEST_F_L0()
306 __ Bind(&label1); in HWTEST_F_L0()
327 Label label1; in HWTEST_F_L0() local
330 __ Tbz(Register(X1), 15, &label1); in HWTEST_F_L0()
333 __ Cbz(Register(X3).W(), &label1); in HWTEST_F_L0()
[all …]
/arkcompiler/runtime_core/libpandafile/tests/
Dbytecode_emitter_tests.cpp263 * label1:
266 * jmp label1
320 * label1:
323 * jmp label1
331 Label label1 = emitter.CreateLabel(); in TestJmpFwdBwd() local
334 emitter.Bind(label1); in TestJmpFwdBwd()
339 emitter.Jmp(label1); in TestJmpFwdBwd()
588 Label label1 = emitter.CreateLabel(); variable
590 emitter.Jmp(label1);
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dldobj.obj.yaml445 jeq.obj v3, label1
448 label1:
534 jeq.obj v3, label1
537 label1:
Dldobj.v.obj.yaml443 jeq.obj v3, label1
446 label1:
539 jeq.obj v3, label1
542 label1:
Dldstatic.obj.yaml331 jeq.obj v3, label1
334 label1:
417 jeq.obj v3, label1
420 label1:
Djnez.yaml56 label1:
61 jnez label1
Djgtz.yaml54 label1:
59 jgtz label1
Djeqz.yaml54 label1:
59 jeqz label1
Djltz.yaml54 label1:
59 jltz label1
Djlez.yaml54 label1:
59 jlez label1
Djgez.yaml54 label1:
59 jgez label1
/arkcompiler/runtime_core/runtime/tests/
Dinterpreter_test.cpp558 Label label1 = emitter.CreateLabel(); in TestConditionalJmp() local
561 emitter.Jmp(label1); in TestConditionalJmp()
565 emitter.Bind(label1); in TestConditionalJmp()
630 Label label1 = emitter.CreateLabel(); in TestConditionalJmpz() local
633 emitter.Jmp(label1); in TestConditionalJmpz()
637 emitter.Bind(label1); in TestConditionalJmpz()
/arkcompiler/runtime_core/verification/absint/
Dabs_int_inl.h111 jmp label1
116 jmp label1
118 label1:
121 Here we have context incompatibility on label1, but it does not harm, because conflicting reg is
/arkcompiler/ets_frontend/ts2panda/tests/watch_expression/
DaddWatch.test.ts211 let ifTrueLabel = new Label(); //label1
/arkcompiler/runtime_core/assembler/tests/
Dparser_test.cpp324 v.push_back(l.TokenizeString("label1:").first); in TEST()
354 …ASSERT_EQ(item.Value().function_table.at(sig_main).label_table.at("label1").file_location->line_nu… in TEST()
355 …ASSERT_EQ(item.Value().function_table.at(sig_main).label_table.at("label1").file_location->is_defi… in TEST()
361 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].label, "label1"); in TEST()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dcodegen.cpp2146 auto label1 = GetEncoder()->CreateLabel(); in CreatePostInterRegionBarrier() local
2148 enc->EncodeJump(label1, reg2, Condition::EQ); in CreatePostInterRegionBarrier()
2155 enc->EncodeJump(label1, tmp2, Condition::EQ); in CreatePostInterRegionBarrier()
2158 enc->BindLabel(label1); in CreatePostInterRegionBarrier()