HomeSort by relevance Sort by last modified time
    Searched full:bovc (Results 1 - 24 of 24) sorted by null

  /external/llvm/test/MC/Mips/mips32r6/
valid-xfail.s 10 bovc $0, $2, 4 # TODO: bovc $0, $2, 4 # encoding: [0x20,0x40,0x00,0x01]
11 bovc $2, $4, 4 # TODO: bovc $2, $4, 4 # encoding: [0x20,0x82,0x00,0x01]
valid.s 36 # beqc requires rs < rt && rs != 0 but we also accept when this is not true. See also bovc
63 # bovc requires that rs >= rt but we accept both. See also beqc
64 bovc $0, $0, 4 # CHECK: bovc $zero, $zero, 4 # encoding: [0x20,0x00,0x00,0x01]
65 bovc $2, $0, 4 # CHECK: bovc $2, $zero, 4 # encoding: [0x20,0x40,0x00,0x01]
66 bovc $4, $2, 4 # CHECK: bovc $4, $2, 4 # encoding: [0x20,0x82,0x00,0x01]
  /external/llvm/test/MC/Mips/mips64r6/
valid-xfail.s 10 bovc $0, $2, 4 # TODO: bovc $0, $2, 4 # encoding: [0x20,0x40,0x00,0x01]
11 bovc $2, $4, 4 # TODO: bovc $2, $4, 4 # encoding: [0x20,0x82,0x00,0x01]
valid.s 36 # beqc requires rs < rt && rs != 0 but we also accept when this is not true. See also bovc
63 # bovc requires that rs >= rt but we accept both. See also beqc
64 bovc $0, $0, 4 # CHECK: bovc $zero, $zero, 4 # encoding: [0x20,0x00,0x00,0x01]
65 bovc $2, $0, 4 # CHECK: bovc $2, $zero, 4 # encoding: [0x20,0x40,0x00,0x01]
66 bovc $4, $2, 4 # CHECK: bovc $4, $2, 4 # encoding: [0x20,0x82,0x00,0x01]
  /external/llvm/test/MC/Disassembler/Mips/mips32r6/
valid-xfail-mips32r6.txt 6 0x20 0x40 0x00 0x01 # CHECK: bovc $0, $2, 4
7 0x20 0x82 0x00 0x01 # CHECK: bovc $2, $4, 4
valid-mips32r6-el.txt 42 0x01 0x00 0x00 0x20 # CHECK: bovc $zero, $zero, 4
43 0x01 0x00 0x40 0x20 # CHECK: bovc $2, $zero, 4
44 0x01 0x00 0x82 0x20 # CHECK: bovc $4, $2, 4
valid-mips32r6.txt 42 0x20 0x00 0x00 0x01 # CHECK: bovc $zero, $zero, 4
43 0x20 0x40 0x00 0x01 # CHECK: bovc $2, $zero, 4
44 0x20 0x82 0x00 0x01 # CHECK: bovc $4, $2, 4
  /external/llvm/test/MC/Disassembler/Mips/mips64r6/
valid-xfail-mips64r6.txt 6 0x20 0x40 0x00 0x01 # CHECK: bovc $0, $2, 4
7 0x20 0x82 0x00 0x01 # CHECK: bovc $2, $4, 4
valid-mips64r6-el.txt 42 0x01 0x00 0x00 0x20 # CHECK: bovc $zero, $zero, 4
43 0x01 0x00 0x40 0x20 # CHECK: bovc $2, $zero, 4
44 0x01 0x00 0x82 0x20 # CHECK: bovc $4, $2, 4
valid-mips64r6.txt 42 0x20 0x00 0x00 0x01 # CHECK: bovc $zero, $zero, 4
43 0x20 0x40 0x00 0x01 # CHECK: bovc $2, $zero, 4
44 0x20 0x82 0x00 0x01 # CHECK: bovc $4, $2, 4
  /external/v8/test/cctest/
test-disasm-mips.cc 203 COMPARE(bovc(a0, a0, static_cast<int16_t>(0)),
204 "20840000 bovc a0, a0, 0");
205 COMPARE(bovc(a1, a0, static_cast<int16_t>(0)),
206 "20a40000 bovc a1, a0, 0");
207 COMPARE(bovc(a1, a0, 32767),
208 "20a47fff bovc a1, a0, 32767");
209 COMPARE(bovc(a1, a0, -32768),
210 "20a48000 bovc a1, a0, -32768");
test-disasm-mips64.cc 284 COMPARE(bovc(a0, a0, static_cast<int16_t>(0)),
285 "20840000 bovc a0, a0, 0");
286 COMPARE(bovc(a1, a0, static_cast<int16_t>(0)),
287 "20a40000 bovc a1, a0, 0");
288 COMPARE(bovc(a1, a0, 32767),
289 "20a47fff bovc a1, a0, 32767");
290 COMPARE(bovc(a1, a0, -32768),
291 "20a48000 bovc a1, a0, -32768");
  /external/llvm/test/MC/Disassembler/Mips/
mips32r6.txt 50 0x20 0x00 0x00 0x01 # CHECK: bovc $zero, $zero, 4
51 0x20 0x40 0x00 0x01 # CHECK: bovc $2, $zero, 4
52 0x20 0x82 0x00 0x01 # CHECK: bovc $4, $2, 4
mips64r6.txt 50 0x20 0x00 0x00 0x01 # CHECK: bovc $zero, $zero, 4
51 0x20 0x40 0x00 0x01 # CHECK: bovc $2, $zero, 4
52 0x20 0x82 0x00 0x01 # CHECK: bovc $4, $2, 4
  /external/v8/src/mips/
assembler-mips.h 726 void bovc(Register rs, Register rt, int16_t offset);
727 void bovc(Register rs, Register rt, Label* L) { function in class:v8::internal::Assembler
728 bovc(rs, rt, branch_offset_compact(L, false)>>2);
    [all...]
disasm-mips.cc     [all...]
assembler-mips.cc 1298 void Assembler::bovc(Register rs, Register rt, int16_t offset) { function in class:v8::Assembler
    [all...]
  /external/v8/src/mips64/
assembler-mips64.h 718 void bovc(Register rs, Register rt, int16_t offset);
719 void bovc(Register rs, Register rt, Label* L) { function in class:v8::internal::Assembler
720 bovc(rs, rt, branch_offset_compact(L, false)>>2);
    [all...]
disasm-mips64.cc     [all...]
assembler-mips64.cc 1277 void Assembler::bovc(Register rs, Register rt, int16_t offset) { function in class:v8::Assembler
    [all...]
  /external/v8/src/base/
cpu.cc 146 // which is encoding for "bovc $v0, %v0, 1" on r6.
  /external/llvm/lib/Target/Mips/
Mips32r6InstrInfo.td 372 class BOVC_DESC : CMP_BC_DESC_BASE<"bovc", brtarget, GPR32Opnd>;
677 def BOVC : BOVC_ENC, BOVC_DESC, ISA_MIPS32R6;
    [all...]
  /external/llvm/lib/Target/Mips/Disassembler/
MipsDisassembler.cpp 514 // BOVC if rs >= rt
524 MI.setOpcode(Mips::BOVC);
    [all...]
  /prebuilts/android-emulator/linux-x86_64/qemu/linux-x86/
qemu-system-mips64el 

Completed in 366 milliseconds