OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 2210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2221 | 2221 |
2222 void Assembler::vcvt_f32_f64(const SwVfpRegister dst, | 2222 void Assembler::vcvt_f32_f64(const SwVfpRegister dst, |
2223 const DwVfpRegister src, | 2223 const DwVfpRegister src, |
2224 ConversionMode mode, | 2224 ConversionMode mode, |
2225 const Condition cond) { | 2225 const Condition cond) { |
2226 ASSERT(CpuFeatures::IsEnabled(VFP3)); | 2226 ASSERT(CpuFeatures::IsEnabled(VFP3)); |
2227 emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond)); | 2227 emit(EncodeVCVT(F32, dst.code(), F64, src.code(), mode, cond)); |
2228 } | 2228 } |
2229 | 2229 |
2230 | 2230 |
| 2231 void Assembler::vabs(const DwVfpRegister dst, |
| 2232 const DwVfpRegister src, |
| 2233 const Condition cond) { |
| 2234 emit(cond | 0xE*B24 | 0xB*B20 | dst.code()*B12 | |
| 2235 0x5*B9 | B8 | 0x3*B6 | src.code()); |
| 2236 } |
| 2237 |
| 2238 |
2231 void Assembler::vadd(const DwVfpRegister dst, | 2239 void Assembler::vadd(const DwVfpRegister dst, |
2232 const DwVfpRegister src1, | 2240 const DwVfpRegister src1, |
2233 const DwVfpRegister src2, | 2241 const DwVfpRegister src2, |
2234 const Condition cond) { | 2242 const Condition cond) { |
2235 // Dd = vadd(Dn, Dm) double precision floating point addition. | 2243 // Dd = vadd(Dn, Dm) double precision floating point addition. |
2236 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. | 2244 // Dd = D:Vd; Dm=M:Vm; Dn=N:Vm. |
2237 // Instruction details available in ARM DDI 0406A, A8-536. | 2245 // Instruction details available in ARM DDI 0406A, A8-536. |
2238 // cond(31-28) | 11100(27-23)| D=?(22) | 11(21-20) | Vn(19-16) | | 2246 // cond(31-28) | 11100(27-23)| D=?(22) | 11(21-20) | Vn(19-16) | |
2239 // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 0(6) | M=?(5) | 0(4) | Vm(3-0) | 2247 // Vd(15-12) | 101(11-9) | sz(8)=1 | N(7)=0 | 0(6) | M=?(5) | 0(4) | Vm(3-0) |
2240 ASSERT(CpuFeatures::IsEnabled(VFP3)); | 2248 ASSERT(CpuFeatures::IsEnabled(VFP3)); |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2607 | 2615 |
2608 // Since a constant pool was just emitted, move the check offset forward by | 2616 // Since a constant pool was just emitted, move the check offset forward by |
2609 // the standard interval. | 2617 // the standard interval. |
2610 next_buffer_check_ = pc_offset() + kCheckConstInterval; | 2618 next_buffer_check_ = pc_offset() + kCheckConstInterval; |
2611 } | 2619 } |
2612 | 2620 |
2613 | 2621 |
2614 } } // namespace v8::internal | 2622 } } // namespace v8::internal |
2615 | 2623 |
2616 #endif // V8_TARGET_ARCH_ARM | 2624 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |