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

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

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed gcmole issue Created 4 years, 1 month 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
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(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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698