Chromium Code Reviews

Side by Side Diff: src/mips/macro-assembler-mips.cc

Issue 1586223004: MIPS: Add FPXX support to MIPS32R2 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix failures due to incompabaility of tests with FPXX Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 1
2 // Copyright 2012 the V8 project authors. All rights reserved. 2 // Copyright 2012 the V8 project authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #include <limits.h> // For LONG_MIN, LONG_MAX. 6 #include <limits.h> // For LONG_MIN, LONG_MAX.
7 7
8 #if V8_TARGET_ARCH_MIPS 8 #if V8_TARGET_ARCH_MIPS
9 9
10 #include "src/base/bits.h" 10 #include "src/base/bits.h"
(...skipping 1383 matching lines...)
1394 // Simple conversion. 1394 // Simple conversion.
1395 bind(&simple_convert); 1395 bind(&simple_convert);
1396 trunc_w_d(scratch, fd); 1396 trunc_w_d(scratch, fd);
1397 mfc1(rs, scratch); 1397 mfc1(rs, scratch);
1398 1398
1399 bind(&done); 1399 bind(&done);
1400 } 1400 }
1401 1401
1402 1402
1403 void MacroAssembler::Mthc1(Register rt, FPURegister fs) { 1403 void MacroAssembler::Mthc1(Register rt, FPURegister fs) {
1404 if (IsFp64Mode()) { 1404 if (IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)) {
1405 mthc1(rt, fs); 1405 mthc1(rt, fs);
1406 } else { 1406 } else {
1407 mtc1(rt, fs.high()); 1407 mtc1(rt, fs.high());
1408 } 1408 }
1409 } 1409 }
1410 1410
1411 1411
1412 void MacroAssembler::Mfhc1(Register rt, FPURegister fs) { 1412 void MacroAssembler::Mfhc1(Register rt, FPURegister fs) {
1413 if (IsFp64Mode()) { 1413 if (IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)) {
1414 mfhc1(rt, fs); 1414 mfhc1(rt, fs);
1415 } else { 1415 } else {
1416 mfc1(rt, fs.high()); 1416 mfc1(rt, fs.high());
1417 } 1417 }
1418 } 1418 }
1419 1419
1420 1420
1421 void MacroAssembler::BranchFCommon(SecondaryField sizeField, Label* target, 1421 void MacroAssembler::BranchFCommon(SecondaryField sizeField, Label* target,
1422 Label* nan, Condition cond, FPURegister cmp1, 1422 Label* nan, Condition cond, FPURegister cmp1,
1423 FPURegister cmp2, BranchDelaySlot bd) { 1423 FPURegister cmp2, BranchDelaySlot bd) {
(...skipping 4364 matching lines...)
5788 if (mag.shift > 0) sra(result, result, mag.shift); 5788 if (mag.shift > 0) sra(result, result, mag.shift);
5789 srl(at, dividend, 31); 5789 srl(at, dividend, 31);
5790 Addu(result, result, Operand(at)); 5790 Addu(result, result, Operand(at));
5791 } 5791 }
5792 5792
5793 5793
5794 } // namespace internal 5794 } // namespace internal
5795 } // namespace v8 5795 } // namespace v8
5796 5796
5797 #endif // V8_TARGET_ARCH_MIPS 5797 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine