Home
last modified time | relevance | path

Searched refs:cbz (Results 1 – 12 of 12) sorted by relevance

/art/runtime/arch/arm64/
Dmemcmp16_arm64.S51 cbz limit, .Lret0
68 cbz endloop, .Lloop_aligned
Djni_entrypoints_arm64.S52 cbz x17, 1f // is method code null ?
Dquick_entrypoints_arm64.S358 cbz x0, 1f // result zero branch over
494 cbz x0, 1f // did we find the target? if not go to exception delivery
717 cbz w17, .LcallFunction // Exit at end of signature. Shorty 0 terminated.
850 cbz w17, .LcallFunction2 // Exit at end of signature. Shorty 0 terminated.
1004 cbz w0, .Lslow_lock
1052 cbz x0, .Lslow_unlock
1122 cbz x0, .Lthrow_class_cast_exception
1180 cbz x2, .Ldo_aput_null
1221 cbz x0, .Lthrow_array_store_exception
1349 cbz w0, 1f // result zero branch over
[all …]
/art/runtime/arch/arm/
Djni_entrypoints_arm.S37 cbz r0, 1f @ is method code null?
Dquick_entrypoints_arm.S175 cbz r0, 1f @ result zero branch over
343 cbz r0, 1f @ did we find the target? if not go to exception delivery
468 cbz r0, .Lslow_lock
514 cbz r0, .Lslow_unlock
910 cbz r0, 1f @ is code pointer null? goto exception
949 cbz r0, .Lexception_in_native
/art/compiler/utils/
Dassembler_thumb_test.cc858 __ cbz(R2, &l1); in TEST() local
1113 __ cbz(R4, &l1); in TEST() local
1132 __ cbz(R4, &l1); in TEST() local
1151 __ cbz(R4, &l1); in TEST() local
Dassembler_thumb_test_expected.cc.inc389 " 0: b10a cbz r2, 6 <CbzCbnz+0x6>\n",
2548 " 0: b3fc cbz r4, 82 <CompareAndBranchMax+0x82>\n",
/art/compiler/utils/arm/
Dassembler_arm32.h136 void cbz(Register rn, Label* target) OVERRIDE;
Dassembler_thumb2.h173 void cbz(Register rn, Label* target) OVERRIDE;
Dassembler_arm.h454 virtual void cbz(Register rn, Label* target) = 0;
Dassembler_thumb2.cc2174 void Thumb2Assembler::cbz(Register rn, Label* label) { in cbz() function in art::arm::Thumb2Assembler
2725 cbz(r, label); in CompareAndBranchIfZero()
Dassembler_arm32.cc1594 void Arm32Assembler::cbz(Register rn ATTRIBUTE_UNUSED, Label* target ATTRIBUTE_UNUSED) { in cbz() function in art::arm::Arm32Assembler