Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: src/s390/macro-assembler-s390.h

Issue 2615683003: s390: optimize MathSqrt (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/crankshaft/s390/lithium-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_ 5 #ifndef V8_S390_MACRO_ASSEMBLER_S390_H_
6 #define V8_S390_MACRO_ASSEMBLER_S390_H_ 6 #define V8_S390_MACRO_ASSEMBLER_S390_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 void Mul32(Register dst, const MemOperand& src1); 316 void Mul32(Register dst, const MemOperand& src1);
317 void Mul32(Register dst, Register src1); 317 void Mul32(Register dst, Register src1);
318 void Mul32(Register dst, const Operand& src1); 318 void Mul32(Register dst, const Operand& src1);
319 void Mul64(Register dst, const MemOperand& src1); 319 void Mul64(Register dst, const MemOperand& src1);
320 void Mul64(Register dst, Register src1); 320 void Mul64(Register dst, Register src1);
321 void Mul64(Register dst, const Operand& src1); 321 void Mul64(Register dst, const Operand& src1);
322 322
323 // Divide 323 // Divide
324 void DivP(Register dividend, Register divider); 324 void DivP(Register dividend, Register divider);
325 325
326 // Square root
327 void Sqrt(DoubleRegister result, DoubleRegister input);
328 void Sqrt(DoubleRegister result, const MemOperand& input);
329
326 // Compare 330 // Compare
327 void Cmp32(Register src1, Register src2); 331 void Cmp32(Register src1, Register src2);
328 void CmpP(Register src1, Register src2); 332 void CmpP(Register src1, Register src2);
329 void Cmp32(Register dst, const Operand& opnd); 333 void Cmp32(Register dst, const Operand& opnd);
330 void CmpP(Register dst, const Operand& opnd); 334 void CmpP(Register dst, const Operand& opnd);
331 void Cmp32(Register dst, const MemOperand& opnd); 335 void Cmp32(Register dst, const MemOperand& opnd);
332 void CmpP(Register dst, const MemOperand& opnd); 336 void CmpP(Register dst, const MemOperand& opnd);
333 337
334 // Compare Logical 338 // Compare Logical
335 void CmpLogical32(Register src1, Register src2); 339 void CmpLogical32(Register src1, Register src2);
(...skipping 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after
1815 inline MemOperand NativeContextMemOperand() { 1819 inline MemOperand NativeContextMemOperand() {
1816 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); 1820 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX);
1817 } 1821 }
1818 1822
1819 #define ACCESS_MASM(masm) masm-> 1823 #define ACCESS_MASM(masm) masm->
1820 1824
1821 } // namespace internal 1825 } // namespace internal
1822 } // namespace v8 1826 } // namespace v8
1823 1827
1824 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ 1828 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/crankshaft/s390/lithium-s390.cc ('k') | src/s390/macro-assembler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698