| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 void Usat(Register dst, int satpos, const Operand& src, | 139 void Usat(Register dst, int satpos, const Operand& src, |
| 140 Condition cond = al); | 140 Condition cond = al); |
| 141 | 141 |
| 142 void Call(Label* target); | 142 void Call(Label* target); |
| 143 | 143 |
| 144 // Register move. May do nothing if the registers are identical. | 144 // Register move. May do nothing if the registers are identical. |
| 145 void Move(Register dst, Handle<Object> value); | 145 void Move(Register dst, Handle<Object> value); |
| 146 void Move(Register dst, Register src); | 146 void Move(Register dst, Register src); |
| 147 void Move(DoubleRegister dst, DoubleRegister src); | 147 void Move(DoubleRegister dst, DoubleRegister src); |
| 148 | 148 |
| 149 // Jumps to the label at the index given by the Smi in "index". | |
| 150 void SmiJumpTable(Register index, Vector<Label*> targets); | |
| 151 // Load an object from the root table. | 149 // Load an object from the root table. |
| 152 void LoadRoot(Register destination, | 150 void LoadRoot(Register destination, |
| 153 Heap::RootListIndex index, | 151 Heap::RootListIndex index, |
| 154 Condition cond = al); | 152 Condition cond = al); |
| 155 // Store an object to the root table. | 153 // Store an object to the root table. |
| 156 void StoreRoot(Register source, | 154 void StoreRoot(Register source, |
| 157 Heap::RootListIndex index, | 155 Heap::RootListIndex index, |
| 158 Condition cond = al); | 156 Condition cond = al); |
| 159 | 157 |
| 160 | 158 |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1125 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1128 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1126 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1129 #else | 1127 #else |
| 1130 #define ACCESS_MASM(masm) masm-> | 1128 #define ACCESS_MASM(masm) masm-> |
| 1131 #endif | 1129 #endif |
| 1132 | 1130 |
| 1133 | 1131 |
| 1134 } } // namespace v8::internal | 1132 } } // namespace v8::internal |
| 1135 | 1133 |
| 1136 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1134 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |