Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Side by Side Diff: src/arm64/assembler-arm64.h

Issue 2161543002: [turbofan] Add support for eager/soft deoptimization reasons. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Do the ports properly Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/arm/assembler-arm.h ('k') | src/assembler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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(const int reason, int raw_position, int id); 936 void RecordDeoptReason(DeoptimizeReason reason, int raw_position, int id);
937 937
938 int buffer_space() const; 938 int buffer_space() const;
939 939
940 // Mark generator continuation. 940 // Mark generator continuation.
941 void RecordGeneratorContinuation(); 941 void RecordGeneratorContinuation();
942 942
943 // Mark address of a debug break slot. 943 // Mark address of a debug break slot.
944 void RecordDebugBreakSlot(RelocInfo::Mode mode); 944 void RecordDebugBreakSlot(RelocInfo::Mode mode);
945 945
946 // Record the emission of a constant pool. 946 // Record the emission of a constant pool.
(...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after
2232 public: 2232 public:
2233 explicit EnsureSpace(Assembler* assembler) { 2233 explicit EnsureSpace(Assembler* assembler) {
2234 assembler->CheckBufferSpace(); 2234 assembler->CheckBufferSpace();
2235 } 2235 }
2236 }; 2236 };
2237 2237
2238 } // namespace internal 2238 } // namespace internal
2239 } // namespace v8 2239 } // namespace v8
2240 2240
2241 #endif // V8_ARM64_ASSEMBLER_ARM64_H_ 2241 #endif // V8_ARM64_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm/assembler-arm.h ('k') | src/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698