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