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

Unified Diff: src/compiler/code-generator.h

Issue 2026313002: Emit unwinding information for TurboFan code. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@eh-frame
Patch Set: Clarify assumptions on frame ction/dtion routines in arm/arm64. 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 side-by-side diff with in-line comments
Download patch
Index: src/compiler/code-generator.h
diff --git a/src/compiler/code-generator.h b/src/compiler/code-generator.h
index d9fa7e5ebbbc4305231f7b17668d14dacdab10d1..353632db93f014f9595980dbf2e70d11ab2992d0 100644
--- a/src/compiler/code-generator.h
+++ b/src/compiler/code-generator.h
@@ -5,8 +5,10 @@
#ifndef V8_COMPILER_CODE_GENERATOR_H_
#define V8_COMPILER_CODE_GENERATOR_H_
+#include "src/base/smart-pointers.h"
#include "src/compiler/gap-resolver.h"
#include "src/compiler/instruction.h"
+#include "src/compiler/unwinding-info-writer.h"
#include "src/deoptimizer.h"
#include "src/macro-assembler.h"
#include "src/safepoint-table.h"
@@ -252,6 +254,7 @@ class CodeGenerator final : public GapResolver::Assembler {
friend class OutOfLineCode;
FrameAccessState* frame_access_state_;
+ base::SmartPointer<UnwindingInfoWriter> unwinding_info_writer_;
Linkage* const linkage_;
InstructionSequence* const code_;
CompilationInfo* const info_;

Powered by Google App Engine
This is Rietveld 408576698