/external/v8/test/cctest/ |
D | test-disasm-ppc.cc | 104 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/ |
D | assembler-ppc.h | 804 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 …]
|
D | constants-ppc.h | 369 LeaveOE = 0 << 10 // No overflow exception enumerator
|
D | assembler-ppc.cc | 888 xo_form(EXT2 | MULHWX, dst, src1, src2, LeaveOE, r); in mulhw() 894 xo_form(EXT2 | MULHWUX, dst, src1, src2, LeaveOE, r); in mulhwu()
|
D | code-stubs-ppc.cc | 1838 __ 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()
|
D | macro-assembler-ppc.cc | 2914 sub(r0, end_address, current_address, LeaveOE, SetRC); in InitializeFieldsWithFiller()
|
/external/v8/src/regexp/ppc/ |
D | regexp-macro-assembler-ppc.cc | 234 __ 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/ |
D | code-generator-ppc.cc | 394 __ 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/ |
D | lithium-codegen-ppc.cc | 946 __ 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()
|