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 <deque> | 8 #include <deque> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
(...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 } | 928 } |
929 | 929 |
930 // Debugging ---------------------------------------------------------------- | 930 // Debugging ---------------------------------------------------------------- |
931 AssemblerPositionsRecorder* positions_recorder() { | 931 AssemblerPositionsRecorder* positions_recorder() { |
932 return &positions_recorder_; | 932 return &positions_recorder_; |
933 } | 933 } |
934 void RecordComment(const char* msg); | 934 void RecordComment(const char* msg); |
935 | 935 |
936 // Record a deoptimization reason that can be used by a log or cpu profiler. | 936 // Record a deoptimization reason that can be used by a log or cpu profiler. |
937 // Use --trace-deopt to enable. | 937 // Use --trace-deopt to enable. |
938 void RecordDeoptReason(const int reason, int raw_position, int inlining_id); | 938 void RecordDeoptReason(const int reason, int raw_position, int id); |
939 | 939 |
940 int buffer_space() const; | 940 int buffer_space() const; |
941 | 941 |
942 // Mark generator continuation. | 942 // Mark generator continuation. |
943 void RecordGeneratorContinuation(); | 943 void RecordGeneratorContinuation(); |
944 | 944 |
945 // Mark address of a debug break slot. | 945 // Mark address of a debug break slot. |
946 void RecordDebugBreakSlot(RelocInfo::Mode mode); | 946 void RecordDebugBreakSlot(RelocInfo::Mode mode); |
947 | 947 |
948 // Record the emission of a constant pool. | 948 // Record the emission of a constant pool. |
(...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2195 public: | 2195 public: |
2196 explicit EnsureSpace(Assembler* assembler) { | 2196 explicit EnsureSpace(Assembler* assembler) { |
2197 assembler->CheckBufferSpace(); | 2197 assembler->CheckBufferSpace(); |
2198 } | 2198 } |
2199 }; | 2199 }; |
2200 | 2200 |
2201 } // namespace internal | 2201 } // namespace internal |
2202 } // namespace v8 | 2202 } // namespace v8 |
2203 | 2203 |
2204 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ | 2204 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ |
OLD | NEW |