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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 | 159 |
160 // Load an object from the root table. | 160 // Load an object from the root table. |
161 void LoadRoot(Register destination, | 161 void LoadRoot(Register destination, |
162 Heap::RootListIndex index, | 162 Heap::RootListIndex index, |
163 Condition cond = al); | 163 Condition cond = al); |
164 // Store an object to the root table. | 164 // Store an object to the root table. |
165 void StoreRoot(Register source, | 165 void StoreRoot(Register source, |
166 Heap::RootListIndex index, | 166 Heap::RootListIndex index, |
167 Condition cond = al); | 167 Condition cond = al); |
168 | 168 |
| 169 void LoadHeapObject(Register dst, Handle<HeapObject> object); |
| 170 |
169 // --------------------------------------------------------------------------- | 171 // --------------------------------------------------------------------------- |
170 // GC Support | 172 // GC Support |
171 | 173 |
172 void IncrementalMarkingRecordWriteHelper(Register object, | 174 void IncrementalMarkingRecordWriteHelper(Register object, |
173 Register value, | 175 Register value, |
174 Register address); | 176 Register address); |
175 | 177 |
176 enum RememberedSetFinalAction { | 178 enum RememberedSetFinalAction { |
177 kReturnAtEnd, | 179 kReturnAtEnd, |
178 kFallThroughAtEnd | 180 kFallThroughAtEnd |
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1277 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1279 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1278 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1280 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1279 #else | 1281 #else |
1280 #define ACCESS_MASM(masm) masm-> | 1282 #define ACCESS_MASM(masm) masm-> |
1281 #endif | 1283 #endif |
1282 | 1284 |
1283 | 1285 |
1284 } } // namespace v8::internal | 1286 } } // namespace v8::internal |
1285 | 1287 |
1286 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1288 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |