OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_ARM64_ASSEMBLER_ARM64_H_ | 5 #ifndef V8_ARM64_ASSEMBLER_ARM64_H_ |
6 #define V8_ARM64_ASSEMBLER_ARM64_H_ | 6 #define V8_ARM64_ASSEMBLER_ARM64_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
(...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1000 StartBlockVeneerPool(); | 1000 StartBlockVeneerPool(); |
1001 } | 1001 } |
1002 void EndBlockPools() { | 1002 void EndBlockPools() { |
1003 EndBlockConstPool(); | 1003 EndBlockConstPool(); |
1004 EndBlockVeneerPool(); | 1004 EndBlockVeneerPool(); |
1005 } | 1005 } |
1006 | 1006 |
1007 // Debugging ---------------------------------------------------------------- | 1007 // Debugging ---------------------------------------------------------------- |
1008 PositionsRecorder* positions_recorder() { return &positions_recorder_; } | 1008 PositionsRecorder* positions_recorder() { return &positions_recorder_; } |
1009 void RecordComment(const char* msg); | 1009 void RecordComment(const char* msg); |
| 1010 void RecordDeoptReason(const int reason, const int raw_position); |
| 1011 |
1010 int buffer_space() const; | 1012 int buffer_space() const; |
1011 | 1013 |
1012 // Mark address of the ExitJSFrame code. | 1014 // Mark address of the ExitJSFrame code. |
1013 void RecordJSReturn(); | 1015 void RecordJSReturn(); |
1014 | 1016 |
1015 // Mark address of a debug break slot. | 1017 // Mark address of a debug break slot. |
1016 void RecordDebugBreakSlot(); | 1018 void RecordDebugBreakSlot(); |
1017 | 1019 |
1018 // Record the emission of a constant pool. | 1020 // Record the emission of a constant pool. |
1019 // | 1021 // |
(...skipping 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2299 class EnsureSpace BASE_EMBEDDED { | 2301 class EnsureSpace BASE_EMBEDDED { |
2300 public: | 2302 public: |
2301 explicit EnsureSpace(Assembler* assembler) { | 2303 explicit EnsureSpace(Assembler* assembler) { |
2302 assembler->CheckBufferSpace(); | 2304 assembler->CheckBufferSpace(); |
2303 } | 2305 } |
2304 }; | 2306 }; |
2305 | 2307 |
2306 } } // namespace v8::internal | 2308 } } // namespace v8::internal |
2307 | 2309 |
2308 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ | 2310 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ |
OLD | NEW |