Chromium Code Reviews

Side by Side Diff: src/crankshaft/mips/lithium-codegen-mips.cc

Issue 2556793003: MIPS[64]: Fix `MIPS: Improve Float(32|64)(Max|Min)`. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved.7 1 // Copyright 2012 the V8 project authors. All rights reserved.7
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1748 matching lines...)
1759 __ Movn(result_reg, left_reg, scratch); 1759 __ Movn(result_reg, left_reg, scratch);
1760 __ Movz(result_reg, right_reg, scratch); 1760 __ Movz(result_reg, right_reg, scratch);
1761 } 1761 }
1762 } else { 1762 } else {
1763 DCHECK(instr->hydrogen()->representation().IsDouble()); 1763 DCHECK(instr->hydrogen()->representation().IsDouble());
1764 FPURegister left_reg = ToDoubleRegister(left); 1764 FPURegister left_reg = ToDoubleRegister(left);
1765 FPURegister right_reg = ToDoubleRegister(right); 1765 FPURegister right_reg = ToDoubleRegister(right);
1766 FPURegister result_reg = ToDoubleRegister(instr->result()); 1766 FPURegister result_reg = ToDoubleRegister(instr->result());
1767 1767
1768 Label nan, done; 1768 Label nan, done;
1769 if (operation == HMathMinMax::kMathMax) { 1769 if (left_reg.is(right_reg)) {
1770 __ Move(result_reg, left_reg);
1771 } else if (operation == HMathMinMax::kMathMax) {
1770 __ Float64Max(result_reg, left_reg, right_reg, &nan); 1772 __ Float64Max(result_reg, left_reg, right_reg, &nan);
1771 } else { 1773 } else {
1772 DCHECK(operation == HMathMinMax::kMathMin); 1774 DCHECK(operation == HMathMinMax::kMathMin);
1773 __ Float64Min(result_reg, left_reg, right_reg, &nan); 1775 __ Float64Min(result_reg, left_reg, right_reg, &nan);
1774 } 1776 }
1775 __ Branch(&done); 1777 __ Branch(&done);
1776 1778
1777 __ bind(&nan); 1779 __ bind(&nan);
1778 __ add_d(result_reg, left_reg, right_reg); 1780 __ add_d(result_reg, left_reg, right_reg);
1779 1781
(...skipping 3634 matching lines...)
5414 __ lw(result, FieldMemOperand(scratch, 5416 __ lw(result, FieldMemOperand(scratch,
5415 FixedArray::kHeaderSize - kPointerSize)); 5417 FixedArray::kHeaderSize - kPointerSize));
5416 __ bind(deferred->exit()); 5418 __ bind(deferred->exit());
5417 __ bind(&done); 5419 __ bind(&done);
5418 } 5420 }
5419 5421
5420 #undef __ 5422 #undef __
5421 5423
5422 } // namespace internal 5424 } // namespace internal
5423 } // namespace v8 5425 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/crankshaft/mips64/lithium-codegen-mips64.cc » ('j') | src/crankshaft/mips64/lithium-codegen-mips64.cc » ('J')

Powered by Google App Engine