OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 | 154 |
155 void Call(Label* target); | 155 void Call(Label* target); |
156 void Push(Register src) { push(src); } | 156 void Push(Register src) { push(src); } |
157 void Pop(Register dst) { pop(dst); } | 157 void Pop(Register dst) { pop(dst); } |
158 | 158 |
159 // Register move. May do nothing if the registers are identical. | 159 // Register move. May do nothing if the registers are identical. |
160 void Move(Register dst, Handle<Object> value); | 160 void Move(Register dst, Handle<Object> value); |
161 void Move(Register dst, Register src, Condition cond = al); | 161 void Move(Register dst, Register src, Condition cond = al); |
162 void Move(DwVfpRegister dst, DwVfpRegister src); | 162 void Move(DwVfpRegister dst, DwVfpRegister src); |
163 | 163 |
| 164 void Load(Register dst, const MemOperand& src, Representation r); |
| 165 void Store(Register src, const MemOperand& dst, Representation r); |
| 166 |
164 // Load an object from the root table. | 167 // Load an object from the root table. |
165 void LoadRoot(Register destination, | 168 void LoadRoot(Register destination, |
166 Heap::RootListIndex index, | 169 Heap::RootListIndex index, |
167 Condition cond = al); | 170 Condition cond = al); |
168 // Store an object to the root table. | 171 // Store an object to the root table. |
169 void StoreRoot(Register source, | 172 void StoreRoot(Register source, |
170 Heap::RootListIndex index, | 173 Heap::RootListIndex index, |
171 Condition cond = al); | 174 Condition cond = al); |
172 | 175 |
173 // --------------------------------------------------------------------------- | 176 // --------------------------------------------------------------------------- |
(...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1513 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1516 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1514 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1517 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1515 #else | 1518 #else |
1516 #define ACCESS_MASM(masm) masm-> | 1519 #define ACCESS_MASM(masm) masm-> |
1517 #endif | 1520 #endif |
1518 | 1521 |
1519 | 1522 |
1520 } } // namespace v8::internal | 1523 } } // namespace v8::internal |
1521 | 1524 |
1522 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1525 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |