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

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

Issue 1776393004: [wasm] Fixed register allocation for Word32PairShl on arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@wasm-add
Patch Set: Rebase 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') | no next file with comments »
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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 542
543 void Vmov(const DwVfpRegister dst, 543 void Vmov(const DwVfpRegister dst,
544 const double imm, 544 const double imm,
545 const Register scratch = no_reg); 545 const Register scratch = no_reg);
546 546
547 void VmovHigh(Register dst, DwVfpRegister src); 547 void VmovHigh(Register dst, DwVfpRegister src);
548 void VmovHigh(DwVfpRegister dst, Register src); 548 void VmovHigh(DwVfpRegister dst, Register src);
549 void VmovLow(Register dst, DwVfpRegister src); 549 void VmovLow(Register dst, DwVfpRegister src);
550 void VmovLow(DwVfpRegister dst, Register src); 550 void VmovLow(DwVfpRegister dst, Register src);
551 551
552 void PairLsl(Register dst_low, Register dst_high, Register src_low, 552 void LslPair(Register dst_low, Register dst_high, Register src_low,
553 Register src_high, Register scratch, Register shift); 553 Register src_high, Register scratch, Register shift);
554 void PairLsl(Register dst_low, Register dst_high, Register src_low, 554 void LslPair(Register dst_low, Register dst_high, Register src_low,
555 Register src_high, uint32_t shift); 555 Register src_high, uint32_t shift);
556 556
557 // Loads the number from object into dst register. 557 // Loads the number from object into dst register.
558 // If |object| is neither smi nor heap number, |not_number| is jumped to 558 // If |object| is neither smi nor heap number, |not_number| is jumped to
559 // with |object| still intact. 559 // with |object| still intact.
560 void LoadNumber(Register object, 560 void LoadNumber(Register object,
561 LowDwVfpRegister dst, 561 LowDwVfpRegister dst,
562 Register heap_number_map, 562 Register heap_number_map,
563 Register scratch, 563 Register scratch,
564 Label* not_number); 564 Label* not_number);
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
1565 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1565 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1566 #else 1566 #else
1567 #define ACCESS_MASM(masm) masm-> 1567 #define ACCESS_MASM(masm) masm->
1568 #endif 1568 #endif
1569 1569
1570 1570
1571 } // namespace internal 1571 } // namespace internal
1572 } // namespace v8 1572 } // namespace v8
1573 1573
1574 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1574 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698