HomeSort by relevance Sort by last modified time
    Searched refs:SetCC (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/v8/test/cctest/
test-disasm-arm.cc 107 COMPARE(and_(r2, r3, Operand(r4), SetCC),
114 COMPARE(eor(r4, r5, Operand(r7, LSL, 1), SetCC),
118 COMPARE(eor(r4, r5, Operand(r9, LSL, 3), SetCC, cs),
123 COMPARE(sub(r5, r6, Operand(r10, LSL, 30), SetCC, cc),
127 COMPARE(sub(r5, r6, Operand(r10, LSL, 16), SetCC, mi),
134 COMPARE(rsb(r6, r7, Operand(fp, LSR, 0), SetCC),
143 COMPARE(add(r7, r8, Operand(ip), SetCC),
145 COMPARE(add(r7, r8, Operand(ip, ASR, 31), SetCC, vs),
152 COMPARE(adc(r5, sp, Operand(ip), SetCC),
154 COMPARE(adc(r8, lr, Operand(ip, ASR, 31), SetCC, vc)
    [all...]
test-assembler-arm.cc 951 __ mov(r1, Operand(r1, ASR, 1), SetCC);
956 __ mov(r2, Operand(r2, ASR, 1), SetCC);
963 __ mov(r3, Operand(r1, ASR, 1), SetCC); // Set the carry.
969 __ mov(r3, Operand(r2, ASR, 1), SetCC); // Unset the carry.
    [all...]
  /external/chromium_org/v8/src/compiler/arm/
code-generator-arm.cc 34 return SetCC;
260 DCHECK_EQ(SetCC, i.OutputSBit());
264 DCHECK_EQ(SetCC, i.OutputSBit());
268 DCHECK_EQ(SetCC, i.OutputSBit());
272 DCHECK_EQ(SetCC, i.OutputSBit());
277 DCHECK_EQ(SetCC, i.OutputSBit());
  /external/chromium_org/v8/src/arm/
codegen-arm.cc 139 __ sub(chars, chars, Operand(64), SetCC);
198 __ bic(temp1, chars, Operand(0x3), SetCC);
206 __ bic(temp2, chars, Operand(0x3), SetCC);
218 __ mov(chars, Operand(chars, LSL, 31), SetCC);
301 __ mov(chars, Operand(chars, LSL, 31), SetCC); // bit0 => ne, bit1 => cs
code-stubs-arm.cc 193 __ rsb(scratch, scratch, Operand(51), SetCC);
370 __ orr(r0, r3, Operand(r2), SetCC);
    [all...]
constants-arm.h 215 SetCC = 1 << 20, // Set condition code.
regexp-macro-assembler-arm.cc 231 __ sub(r1, r1, r0, SetCC); // Length of capture.
342 __ sub(r1, r1, r0, SetCC); // Length to check.
618 __ sub(r0, sp, r0, SetCC);
681 __ sub(r2, r2, Operand(1), SetCC);
    [all...]
lithium-codegen-arm.cc 873 __ sub(r1, r1, Operand(1), SetCC);
    [all...]
macro-assembler-arm.cc     [all...]
full-codegen-arm.cc 179 __ sub(r2, r2, Operand(1), SetCC);
345 __ sub(r3, r3, Operand(Smi::FromInt(delta)), SetCC);
    [all...]
builtins-arm.cc 496 __ sub(r3, r3, Operand(r6), SetCC);
645 __ sub(r3, r3, Operand(2), SetCC);
    [all...]
macro-assembler-arm.h     [all...]
  /external/llvm/lib/Target/Mips/
MipsISelLowering.cpp 215 // setcc operations results (slt, sgt, ...).
233 // Used by legalize types to correctly generate the setcc result.
234 // Without this, every float setcc comes with a AND/OR with the result,
237 AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32);
251 setOperationAction(ISD::SETCC, MVT::f32, Custom);
252 setOperationAction(ISD::SETCC, MVT::f64, Custom);
504 // Creates and returns an FPCmp node from a setcc node.
505 // Returns Op if setcc is not a floating point comparison.
507 // must be a SETCC node
508 if (Op.getOpcode() != ISD::SETCC)
    [all...]
MipsSEISelLowering.cpp 81 setTargetDAGCombine(ISD::SETCC);
175 setOperationAction(ISD::SETCC, MVT::i32, Legal);
179 setOperationAction(ISD::SETCC, MVT::f32, Legal);
184 setOperationAction(ISD::SETCC, MVT::f64, Legal);
220 setOperationAction(ISD::SETCC, MVT::i64, Legal);
282 setOperationAction(ISD::SETCC, Ty, Legal);
319 setOperationAction(ISD::SETCC, Ty, Legal);
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64_test.cc 217 assembler->setcc(static_cast<x86_64::Condition>(i), *reg);
225 TEST_F(AssemblerX86_64Test, SetCC) {
226 DriverFn(&setcc_test_fn, "setcc");
  /external/chromium_org/v8/src/ia32/
disasm-ia32.cc 338 int SetCC(byte* data);
662 int DisassemblerIA32::SetCC(byte* data) {
1100 data += SetCC(data);
    [all...]