OLD | NEW |
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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 } | 206 } |
207 | 207 |
208 void Call(Label* target); | 208 void Call(Label* target); |
209 | 209 |
210 // Register move. May do nothing if the registers are identical. | 210 // Register move. May do nothing if the registers are identical. |
211 void Move(Register dst, Smi* smi) { LoadSmiLiteral(dst, smi); } | 211 void Move(Register dst, Smi* smi) { LoadSmiLiteral(dst, smi); } |
212 void Move(Register dst, Handle<Object> value); | 212 void Move(Register dst, Handle<Object> value); |
213 void Move(Register dst, Register src, Condition cond = al); | 213 void Move(Register dst, Register src, Condition cond = al); |
214 void Move(DoubleRegister dst, DoubleRegister src); | 214 void Move(DoubleRegister dst, DoubleRegister src); |
215 | 215 |
216 void InsertDoubleLow(DoubleRegister dst, Register src); | |
217 void InsertDoubleHigh(DoubleRegister dst, Register src); | |
218 | |
219 void MultiPush(RegList regs, Register location = sp); | 216 void MultiPush(RegList regs, Register location = sp); |
220 void MultiPop(RegList regs, Register location = sp); | 217 void MultiPop(RegList regs, Register location = sp); |
221 | 218 |
222 void MultiPushDoubles(RegList dregs, Register location = sp); | 219 void MultiPushDoubles(RegList dregs, Register location = sp); |
223 void MultiPopDoubles(RegList dregs, Register location = sp); | 220 void MultiPopDoubles(RegList dregs, Register location = sp); |
224 | 221 |
225 // Load an object from the root table. | 222 // Load an object from the root table. |
226 void LoadRoot(Register destination, Heap::RootListIndex index, | 223 void LoadRoot(Register destination, Heap::RootListIndex index, |
227 Condition cond = al); | 224 Condition cond = al); |
228 // Store an object to the root table. | 225 // Store an object to the root table. |
(...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1888 #define ACCESS_MASM(masm) \ | 1885 #define ACCESS_MASM(masm) \ |
1889 masm->stop(__FILE_LINE__); \ | 1886 masm->stop(__FILE_LINE__); \ |
1890 masm-> | 1887 masm-> |
1891 #else | 1888 #else |
1892 #define ACCESS_MASM(masm) masm-> | 1889 #define ACCESS_MASM(masm) masm-> |
1893 #endif | 1890 #endif |
1894 } // namespace internal | 1891 } // namespace internal |
1895 } // namespace v8 | 1892 } // namespace v8 |
1896 | 1893 |
1897 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ | 1894 #endif // V8_S390_MACRO_ASSEMBLER_S390_H_ |
OLD | NEW |