| 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 915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 926 void EndBlockPools() { | 926 void EndBlockPools() { |
| 927 EndBlockConstPool(); | 927 EndBlockConstPool(); |
| 928 EndBlockVeneerPool(); | 928 EndBlockVeneerPool(); |
| 929 } | 929 } |
| 930 | 930 |
| 931 // Debugging ---------------------------------------------------------------- | 931 // Debugging ---------------------------------------------------------------- |
| 932 void RecordComment(const char* msg); | 932 void RecordComment(const char* msg); |
| 933 | 933 |
| 934 // Record a deoptimization reason that can be used by a log or cpu profiler. | 934 // Record a deoptimization reason that can be used by a log or cpu profiler. |
| 935 // Use --trace-deopt to enable. | 935 // Use --trace-deopt to enable. |
| 936 void RecordDeoptReason(DeoptimizeReason reason, int raw_position, int id); | 936 void RecordDeoptReason(DeoptimizeReason reason, SourcePosition position, |
| 937 int id); |
| 937 | 938 |
| 938 int buffer_space() const; | 939 int buffer_space() const; |
| 939 | 940 |
| 940 // Mark generator continuation. | 941 // Mark generator continuation. |
| 941 void RecordGeneratorContinuation(); | 942 void RecordGeneratorContinuation(); |
| 942 | 943 |
| 943 // Mark address of a debug break slot. | 944 // Mark address of a debug break slot. |
| 944 void RecordDebugBreakSlot(RelocInfo::Mode mode); | 945 void RecordDebugBreakSlot(RelocInfo::Mode mode); |
| 945 | 946 |
| 946 // Record the emission of a constant pool. | 947 // Record the emission of a constant pool. |
| (...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2232 public: | 2233 public: |
| 2233 explicit EnsureSpace(Assembler* assembler) { | 2234 explicit EnsureSpace(Assembler* assembler) { |
| 2234 assembler->CheckBufferSpace(); | 2235 assembler->CheckBufferSpace(); |
| 2235 } | 2236 } |
| 2236 }; | 2237 }; |
| 2237 | 2238 |
| 2238 } // namespace internal | 2239 } // namespace internal |
| 2239 } // namespace v8 | 2240 } // namespace v8 |
| 2240 | 2241 |
| 2241 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ | 2242 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ |
| OLD | NEW |