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

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

Issue 1765973002: [turbofan] Implementation of Word32PairShl on arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-shift
Patch Set: Created 4 years, 9 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 | « no previous file | src/arm/macro-assembler-arm.cc » ('j') | src/arm/macro-assembler-arm.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_ARM_MACRO_ASSEMBLER_ARM_H_ 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 538
539 void Vmov(const DwVfpRegister dst, 539 void Vmov(const DwVfpRegister dst,
540 const double imm, 540 const double imm,
541 const Register scratch = no_reg); 541 const Register scratch = no_reg);
542 542
543 void VmovHigh(Register dst, DwVfpRegister src); 543 void VmovHigh(Register dst, DwVfpRegister src);
544 void VmovHigh(DwVfpRegister dst, Register src); 544 void VmovHigh(DwVfpRegister dst, Register src);
545 void VmovLow(Register dst, DwVfpRegister src); 545 void VmovLow(Register dst, DwVfpRegister src);
546 void VmovLow(DwVfpRegister dst, Register src); 546 void VmovLow(DwVfpRegister dst, Register src);
547 547
548 void PairLsl(Register dst_low, Register dst_high, Register src_low,
549 Register src_high, Register scratch, Register shift);
550 void PairLsl(Register dst_low, Register dst_high, Register src_low,
551 Register src_high, Register scratch, uint32_t shift);
552
548 // Loads the number from object into dst register. 553 // Loads the number from object into dst register.
549 // If |object| is neither smi nor heap number, |not_number| is jumped to 554 // If |object| is neither smi nor heap number, |not_number| is jumped to
550 // with |object| still intact. 555 // with |object| still intact.
551 void LoadNumber(Register object, 556 void LoadNumber(Register object,
552 LowDwVfpRegister dst, 557 LowDwVfpRegister dst,
553 Register heap_number_map, 558 Register heap_number_map,
554 Register scratch, 559 Register scratch,
555 Label* not_number); 560 Label* not_number);
556 561
557 // Loads the number from object into double_dst in the double format. 562 // Loads the number from object into double_dst in the double format.
(...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after
1547 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1552 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1548 #else 1553 #else
1549 #define ACCESS_MASM(masm) masm-> 1554 #define ACCESS_MASM(masm) masm->
1550 #endif 1555 #endif
1551 1556
1552 1557
1553 } // namespace internal 1558 } // namespace internal
1554 } // namespace v8 1559 } // namespace v8
1555 1560
1556 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1561 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.cc » ('j') | src/arm/macro-assembler-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698