/external/llvm/test/CodeGen/AArch64/ |
D | fast-isel-tbz.ll | 66 ; CHECK: tbnz w0, #0, {{LBB.+_2}} 78 ; CHECK: tbnz w0, #1, {{LBB.+_2}} 90 ; CHECK: tbnz w0, #2, {{LBB.+_2}} 102 ; CHECK: tbnz w0, #3, {{LBB.+_2}} 114 ; CHECK: tbnz x0, #32, {{LBB.+_2}} 126 ; FAST: tbnz w0, #7, {{LBB.+_2}} 137 ; FAST: tbnz w0, #15, {{LBB.+_2}} 148 ; CHECK: tbnz w0, #31, {{LBB.+_2}} 159 ; CHECK: tbnz x0, #63, {{LBB.+_2}} 192 ; FAST: tbnz w0, #7, {{LBB.+_2}} [all …]
|
D | tbz-tbnz.ll | 49 ; CHECK: tbnz [[CMP]], #31 67 ; CHECK: tbnz [[CMP]], #63 85 ; CHECK: tbnz [[CMP]], #31 103 ; CHECK: tbnz [[CMP]], #63 147 ; CHECK: tbnz [[CMP]], #63
|
D | branch-relax-asm.ll | 5 ; It would be more natural to use just one "tbnz %false" here, but if the
|
D | analyze-branch.ll | 149 ; CHECK: tbnz {{w[0-9]+}}, #15, [[FALSE:.LBB[0-9]+_[0-9]+]] 216 ; CHECK: tbnz {{[wx][0-9]+}}, #15, [[TRUE:.LBB[0-9]+_[0-9]+]]
|
/external/llvm/test/MC/AArch64/ |
D | arm64-branch-encoding.s | 115 tbnz x1, #63, foo 120 tbnz w1, #31, foo 127 tbnz x3, #8, #-32768 128 ; CHECK: tbnz w3, #8, #-32768 ; encoding: [0x03,0x00,0x44,0x37]
|
D | elf-reloc-tstb.s | 5 tbnz w3, #15, somewhere
|
D | basic-a64-diagnostics.s | 3724 tbnz w3, #-1, addr 3725 tbnz w3, #32, nowhere 3726 tbnz x9, #-1, there 3727 tbnz x20, #64, dont
|
D | basic-a64-instructions.s | 4818 tbnz x5, #45, nowhere 4828 tbnz w3, #2, there 4829 tbnz wzr, #31, nowhere
|
/external/llvm/test/MC/Disassembler/AArch64/ |
D | arm64-branch.txt | 20 # CHECK: tbnz w11, #3, #0 58 # CHECK: tbnz w0, #1, #12
|
D | basic-a64-instructions.txt | 4187 # CHECK: tbnz x12, #60, #32764
|
/external/v8/test/cctest/ |
D | test-disasm-arm64.cc | 822 COMPARE_PREFIX(tbnz(w8, 0, INST_OFF(0x7ffc)), "tbnz w8, #0, #+0x7ffc"); in TEST_() 823 COMPARE_PREFIX(tbnz(x9, 63, INST_OFF(-0x8000)), "tbnz x9, #63, #-0x8000"); in TEST_() 824 COMPARE_PREFIX(tbnz(w10, 31, INST_OFF(0)), "tbnz w10, #31, #+0x0"); in TEST_() 825 COMPARE_PREFIX(tbnz(x11, 31, INST_OFF(0x4)), "tbnz w11, #31, #+0x4"); in TEST_() 826 COMPARE_PREFIX(tbnz(x12, 32, INST_OFF(0x8)), "tbnz x12, #32, #+0x8"); in TEST_()
|
/external/v8/src/arm64/ |
D | assembler-arm64.cc | 1056 void Assembler::tbnz(const Register& rt, in tbnz() function in v8::internal::Assembler 1065 void Assembler::tbnz(const Register& rt, in tbnz() function in v8::internal::Assembler 1069 tbnz(rt, bit_pos, LinkAndGetInstructionOffsetTo(label)); in tbnz()
|
D | assembler-arm64.h | 1075 void tbnz(const Register& rt, unsigned bit_pos, Label* label); 1076 void tbnz(const Register& rt, unsigned bit_pos, int imm14);
|
D | macro-assembler-arm64.cc | 782 tbnz(rt, bit_pos, label); in Tbnz() 796 tbnz(rt, bit_pos, &done); in Tbz() 1323 tbnz(StackPointer(), kXSignBit, &ok); // Ok if csp < StackPointer(). in AssertStackConsistency()
|
D | full-codegen-arm64.cc | 63 __ tbnz(xzr, 0, target); // Never taken before patched. in EmitJumpIfSmi() local
|
/external/vixl/src/vixl/a64/ |
D | macro-assembler-a64.cc | 575 tbnz(rt, bit_pos, label); in Tbnz() 587 tbnz(rt, bit_pos, &done); in Tbz()
|
D | assembler-a64.h | 1207 void tbnz(const Register& rt, unsigned bit_pos, Label* label); 1210 void tbnz(const Register& rt, unsigned bit_pos, int imm14);
|
D | assembler-a64.cc | 824 void Assembler::tbnz(const Register& rt, in tbnz() function in vixl::Assembler 832 void Assembler::tbnz(const Register& rt, in tbnz() function in vixl::Assembler 835 tbnz(rt, bit_pos, LinkAndGetInstructionOffsetTo(label)); in tbnz()
|
/external/v8/src/ic/arm64/ |
D | ic-arm64.cc | 1029 patcher.tbnz(smi_reg, 0, branch_imm); in PatchInlinedSmiCode()
|
/external/vixl/test/ |
D | test-disasm-a64.cc | 939 COMPARE_PREFIX(tbnz(w8, 0, INST_OFF(0x7ffc)), "tbnz w8, #0, #+0x7ffc"); in TEST() 940 COMPARE_PREFIX(tbnz(x9, 63, INST_OFF(-0x8000)), "tbnz x9, #63, #-0x8000"); in TEST() 941 COMPARE_PREFIX(tbnz(w10, 31, INST_OFF(0)), "tbnz w10, #31, #+0x0"); in TEST() 942 COMPARE_PREFIX(tbnz(x11, 31, INST_OFF(0x4)), "tbnz w11, #31, #+0x4"); in TEST() 943 COMPARE_PREFIX(tbnz(x12, 32, INST_OFF(0x8)), "tbnz x12, #32, #+0x8"); in TEST()
|
/external/vixl/doc/ |
D | supported-instructions.md | 1289 void tbnz(const Register& rt, unsigned bit_pos, int imm14) 1296 void tbnz(const Register& rt, unsigned bit_pos, Label* label)
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.td | 1100 defm TBNZ : TestBranch<1, "tbnz", AArch64tbnz>;
|