OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_ARM | 7 #if V8_TARGET_ARCH_ARM |
8 | 8 |
9 #include "src/assembler.h" | 9 #include "src/assembler.h" |
10 #include "src/frames.h" | 10 #include "src/frames.h" |
(...skipping 23 matching lines...) Expand all Loading... |
34 } | 34 } |
35 | 35 |
36 | 36 |
37 Object*& ExitFrame::constant_pool_slot() const { | 37 Object*& ExitFrame::constant_pool_slot() const { |
38 DCHECK(FLAG_enable_ool_constant_pool); | 38 DCHECK(FLAG_enable_ool_constant_pool); |
39 const int offset = ExitFrameConstants::kConstantPoolOffset; | 39 const int offset = ExitFrameConstants::kConstantPoolOffset; |
40 return Memory::Object_at(fp() + offset); | 40 return Memory::Object_at(fp() + offset); |
41 } | 41 } |
42 | 42 |
43 | 43 |
44 } } // namespace v8::internal | 44 } // namespace internal |
| 45 } // namespace v8 |
45 | 46 |
46 #endif // V8_TARGET_ARCH_ARM | 47 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |