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

Unified Diff: src/compiler/instruction.h

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: addressed comments 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler/instruction.h
diff --git a/src/compiler/instruction.h b/src/compiler/instruction.h
index 5d8864eea7d006197a54c19d6e44b6f7cbf2dd62..6827ca3029ffca7ee67abfb0d31193f7ada8bc0e 100644
--- a/src/compiler/instruction.h
+++ b/src/compiler/instruction.h
@@ -15,7 +15,6 @@
#include "src/compiler/frame.h"
#include "src/compiler/instruction-codes.h"
#include "src/compiler/opcodes.h"
-#include "src/compiler/source-position.h"
#include "src/globals.h"
#include "src/macro-assembler.h"
#include "src/register-configuration.h"
@@ -23,10 +22,15 @@
namespace v8 {
namespace internal {
+
+// Forward declarations.
vogelheim 2016/11/07 17:53:27 nitpick: Drop comment. (As explained elsewhere. Pl
+class SourcePosition;
+
namespace compiler {
// Forward declarations.
class Schedule;
+class SourcePositionTable;
class V8_EXPORT_PRIVATE InstructionOperand {
public:

Powered by Google App Engine
This is Rietveld 408576698