| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 void Usat(Register dst, int satpos, const Operand& src, | 150 void Usat(Register dst, int satpos, const Operand& src, |
| 151 Condition cond = al); | 151 Condition cond = al); |
| 152 | 152 |
| 153 void Call(Label* target); | 153 void Call(Label* target); |
| 154 | 154 |
| 155 // Register move. May do nothing if the registers are identical. | 155 // Register move. May do nothing if the registers are identical. |
| 156 void Move(Register dst, Handle<Object> value); | 156 void Move(Register dst, Handle<Object> value); |
| 157 void Move(Register dst, Register src, Condition cond = al); | 157 void Move(Register dst, Register src, Condition cond = al); |
| 158 void Move(DoubleRegister dst, DoubleRegister src); | 158 void Move(DoubleRegister dst, DoubleRegister src); |
| 159 | 159 |
| 160 // Jumps to the label at the index given by the Smi in "index". |
| 161 void SmiJumpTable(Register index, Vector<Label*> targets); |
| 160 // Load an object from the root table. | 162 // Load an object from the root table. |
| 161 void LoadRoot(Register destination, | 163 void LoadRoot(Register destination, |
| 162 Heap::RootListIndex index, | 164 Heap::RootListIndex index, |
| 163 Condition cond = al); | 165 Condition cond = al); |
| 164 // Store an object to the root table. | 166 // Store an object to the root table. |
| 165 void StoreRoot(Register source, | 167 void StoreRoot(Register source, |
| 166 Heap::RootListIndex index, | 168 Heap::RootListIndex index, |
| 167 Condition cond = al); | 169 Condition cond = al); |
| 168 | 170 |
| 169 void LoadHeapObject(Register dst, Handle<HeapObject> object); | 171 void LoadHeapObject(Register dst, Handle<HeapObject> object); |
| (...skipping 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1371 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1373 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1372 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1374 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1373 #else | 1375 #else |
| 1374 #define ACCESS_MASM(masm) masm-> | 1376 #define ACCESS_MASM(masm) masm-> |
| 1375 #endif | 1377 #endif |
| 1376 | 1378 |
| 1377 | 1379 |
| 1378 } } // namespace v8::internal | 1380 } } // namespace v8::internal |
| 1379 | 1381 |
| 1380 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1382 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |