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

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

Issue 1956693002: [compiler] Pass inlining_id via relocation info. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 4 years, 7 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/arm64/assembler-arm64.cc » ('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 917 matching lines...) Expand 10 before | Expand all | Expand 10 after
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); 938 void RecordDeoptReason(const int reason, int raw_position, int inlining_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
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_
OLDNEW
« no previous file with comments | « src/arm/assembler-arm.h ('k') | src/arm64/assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698