OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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_ARM_MACRO_ASSEMBLER_ARM_H_ | 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_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 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1276 // Abort execution if argument is not a name, enabled via --debug-code. | 1276 // Abort execution if argument is not a name, enabled via --debug-code. |
1277 void AssertName(Register object); | 1277 void AssertName(Register object); |
1278 | 1278 |
1279 // Abort execution if argument is not a JSFunction, enabled via --debug-code. | 1279 // Abort execution if argument is not a JSFunction, enabled via --debug-code. |
1280 void AssertFunction(Register object); | 1280 void AssertFunction(Register object); |
1281 | 1281 |
1282 // Abort execution if argument is not a JSBoundFunction, | 1282 // Abort execution if argument is not a JSBoundFunction, |
1283 // enabled via --debug-code. | 1283 // enabled via --debug-code. |
1284 void AssertBoundFunction(Register object); | 1284 void AssertBoundFunction(Register object); |
1285 | 1285 |
1286 // Abort execution if argument is not a JSGeneratorObject, | 1286 // Abort execution if argument is not a JSGeneratorObject or a |
1287 // enabled via --debug-code. | 1287 // JSAsyncGeneratorObject, enabled via --debug-code. |
1288 void AssertGeneratorObject(Register object); | 1288 void AssertGeneratorObject(Register object); |
1289 | 1289 |
1290 // Abort execution if argument is not a JSReceiver, enabled via --debug-code. | 1290 // Abort execution if argument is not a JSReceiver, enabled via --debug-code. |
1291 void AssertReceiver(Register object); | 1291 void AssertReceiver(Register object); |
1292 | 1292 |
1293 // Abort execution if argument is not undefined or an AllocationSite, enabled | 1293 // Abort execution if argument is not undefined or an AllocationSite, enabled |
1294 // via --debug-code. | 1294 // via --debug-code. |
1295 void AssertUndefinedOrAllocationSite(Register object, Register scratch); | 1295 void AssertUndefinedOrAllocationSite(Register object, Register scratch); |
1296 | 1296 |
1297 // Abort execution if reg is not the root value with the given index, | 1297 // Abort execution if reg is not the root value with the given index, |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1522 inline MemOperand NativeContextMemOperand() { | 1522 inline MemOperand NativeContextMemOperand() { |
1523 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); | 1523 return ContextMemOperand(cp, Context::NATIVE_CONTEXT_INDEX); |
1524 } | 1524 } |
1525 | 1525 |
1526 #define ACCESS_MASM(masm) masm-> | 1526 #define ACCESS_MASM(masm) masm-> |
1527 | 1527 |
1528 } // namespace internal | 1528 } // namespace internal |
1529 } // namespace v8 | 1529 } // namespace v8 |
1530 | 1530 |
1531 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1531 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
OLD | NEW |