/art/runtime/interpreter/mterp/mips64/ |
op_monitor_enter.S | 11 bnezc v0, MterpException
|
invoke.S | 18 bnezc v0, MterpFallback
|
op_monitor_exit.S | 15 bnezc v0, MterpException
|
op_sput.S | 17 bnezc v0, MterpException # 0 on success
|
op_sput_wide.S | 15 bnezc v0, MterpException # 0 on success, -1 on failure
|
op_goto.S | 17 bnezc v0, MterpOnStackReplacement # Note: offset must be in rINST
|
op_goto_16.S | 16 bnezc v0, MterpOnStackReplacement # Note: offset must be in rINST
|
bincmp.S | 24 bnezc v0, MterpOnStackReplacement # Note: offset must be in rINST
|
op_goto_32.S | 21 bnezc v0, MterpOnStackReplacement # Note: offset must be in rINST
|
op_packed_switch.S | 28 bnezc v0, MterpOnStackReplacement # Note: offset must be in rINST
|
zcmp.S | 22 bnezc v0, MterpOnStackReplacement # Note: offset must be in rINST
|
footer.S | 65 bnezc v0, MterpFallback 88 bnezc v0, MterpFallback # Something in the environment changed, switch interpreters
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
undefweak-overflow.s | 10 bnezc $2, foo
|
/external/llvm/test/CodeGen/Mips/ |
micromips-compact-branches.ll | 19 ; CHECK: bnezc
|
/external/llvm/test/MC/Mips/mips32r6/ |
relocations.s | 20 # CHECK-FIXUP: bnezc $9, bar # encoding: [0xf9,0b001AAAAA,A,A] 64 bnezc $9, bar
|
/external/v8/src/mips/ |
constants-mips.cc | 147 case POP76: // bnezc, jialc 194 return false; // BNEZC
|
/external/v8/src/mips64/ |
constants-mips64.cc | 147 case POP76: // bnezc, jialc 194 return false; // BNEZC
|
/external/llvm/test/ExecutionEngine/RuntimeDyld/Mips/ |
ELF_N64R6_relocations.s | 37 bnezc $5,foo
|
ELF_O32R6_relocations.s | 32 bnezc $5,foo
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
r6.s | 235 bnezc $2, ext 236 bnezc $2, . + 4 + (-1048576 << 2) 237 bnezc $2, . + 4 + (1048575 << 2) 238 bnezc $2, 1f
|
micromips-branch-relax.s | 85 bnezc $3, test3
|
/external/llvm/test/MC/Mips/mips64r6/ |
relocations.s | 20 # CHECK-FIXUP: bnezc $9, bar # encoding: [0xf9,0b001AAAAA,A,A] 69 bnezc $9, bar
|
/art/disassembler/ |
disassembler_mips.cc | 337 { kITypeMask | (1 << 21), (62u << kOpcodeShift) | (1 << 21), "bnezc", "Sb" }, // TODO: de-dup? 338 { kITypeMask | (1 << 22), (62u << kOpcodeShift) | (1 << 22), "bnezc", "Sb" }, 339 { kITypeMask | (1 << 23), (62u << kOpcodeShift) | (1 << 23), "bnezc", "Sb" }, 340 { kITypeMask | (1 << 24), (62u << kOpcodeShift) | (1 << 24), "bnezc", "Sb" }, 341 { kITypeMask | (1 << 25), (62u << kOpcodeShift) | (1 << 25), "bnezc", "Sb" },
|
/art/compiler/utils/mips64/ |
assembler_mips64.h | 232 void Bnezc(GpuRegister rs, uint32_t imm21); 350 void Bnezc(GpuRegister rs, Mips64Label* label); 555 // an exception: use kOffset23 for beqzc/bnezc). 605 // Branch instructions have signed offsets of 16, 19 (addiupc), 21 (beqzc/bnezc),
|
/external/v8/test/cctest/ |
test-disasm-mips.cc | 288 COMPARE_PC_REL_COMPACT(bnezc(a0, 0), "f8800000 bnezc a0, 0", 0); 289 COMPARE_PC_REL_COMPACT(bnezc(a0, 1048575), // int21 maximal value. 290 "f88fffff bnezc a0, 1048575", 1048575); 291 COMPARE_PC_REL_COMPACT(bnezc(a0, -1048576), // int21 minimal value. 292 "f8900000 bnezc a0, -1048576", -1048576); [all...] |