Home
last modified time | relevance | path

Searched refs:LeaveOE (Results 1 – 9 of 9) sorted by relevance

/external/v8/test/cctest/
Dtest-disasm-ppc.cc104 COMPARE(addze(r0, r0, LeaveOE, SetRC), "7c000195 addze. r0, r0"); in TEST()
150 COMPARE(sub(r0, r9, r8, LeaveOE, SetRC), "7c084851 subf. r0, r8, r9"); in TEST()
/external/v8/src/ppc/
Dassembler-ppc.h804 void sub(Register dst, Register src1, Register src2, OEBit s = LeaveOE,
809 void subfc(Register dst, Register src1, Register src2, OEBit s = LeaveOE,
812 void add(Register dst, Register src1, Register src2, OEBit s = LeaveOE,
815 void addc(Register dst, Register src1, Register src2, OEBit o = LeaveOE,
820 void mullw(Register dst, Register src1, Register src2, OEBit o = LeaveOE,
826 void divw(Register dst, Register src1, Register src2, OEBit o = LeaveOE,
828 void divwu(Register dst, Register src1, Register src2, OEBit o = LeaveOE,
885 void neg(Register rt, Register ra, OEBit o = LeaveOE, RCBit c = LeaveRC);
916 void mulld(Register dst, Register src1, Register src2, OEBit o = LeaveOE,
918 void divd(Register dst, Register src1, Register src2, OEBit o = LeaveOE,
[all …]
Dconstants-ppc.h369 LeaveOE = 0 << 10 // No overflow exception enumerator
Dassembler-ppc.cc888 xo_form(EXT2 | MULHWX, dst, src1, src2, LeaveOE, r); in mulhw()
894 xo_form(EXT2 | MULHWUX, dst, src1, src2, LeaveOE, r); in mulhwu()
Dcode-stubs-ppc.cc1838 __ sub(r11, r8, r9, LeaveOE, SetRC); in GenerateNewSloppyFast()
2914 __ add(count, count, count, LeaveOE, SetRC); in GenerateCopyCharacters()
3293 __ sub(scratch3, scratch1, scratch2, LeaveOE, SetRC); in GenerateCompareFlatOneByteStrings()
Dmacro-assembler-ppc.cc2914 sub(r0, end_address, current_address, LeaveOE, SetRC); in InitializeFieldsWithFiller()
/external/v8/src/regexp/ppc/
Dregexp-macro-assembler-ppc.cc234 __ sub(r4, r4, r3, LeaveOE, SetRC); // Length of capture. in CheckNotBackReferenceIgnoreCase()
248 __ add(r0, r4, current_input_offset(), LeaveOE, SetRC); in CheckNotBackReferenceIgnoreCase()
373 __ sub(r4, r4, r3, LeaveOE, SetRC); // Length to check. in CheckNotBackReference()
387 __ add(r0, r4, current_input_offset(), LeaveOE, SetRC); in CheckNotBackReference()
687 __ sub(r3, sp, r3, LeaveOE, SetRC); in GetCode()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc394 __ sub(i.OutputRegister(), i.InputRegister(0), scratch, LeaveOE, \
941 LeaveOE, i.OutputRCBit()); in AssembleArchInstruction()
964 LeaveOE, i.OutputRCBit()); in AssembleArchInstruction()
981 LeaveOE, i.OutputRCBit()); in AssembleArchInstruction()
986 LeaveOE, i.OutputRCBit()); in AssembleArchInstruction()
1045 __ neg(i.OutputRegister(), i.InputRegister(0), LeaveOE, i.OutputRCBit()); in AssembleArchInstruction()
/external/v8/src/crankshaft/ppc/
Dlithium-codegen-ppc.cc946 __ neg(dividend, dividend, LeaveOE, SetRC); in DoModByPowerOf2I()
982 __ sub(result, dividend, result, LeaveOE, SetRC); in DoModByConstI()
1038 __ sub(result_reg, left_reg, scratch, LeaveOE, SetRC); in DoModI()
1209 OEBit oe = LeaveOE; in DoFlooringDivByPowerOf2I()