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

Unified Diff: vm/code_generator_ia32.h

Issue 9721006: Second set of changes for implementation of stack map support. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « vm/code_generator_arm.h ('k') | vm/code_generator_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/code_generator_ia32.h
===================================================================
--- vm/code_generator_ia32.h (revision 5572)
+++ vm/code_generator_ia32.h (working copy)
@@ -20,7 +20,9 @@
class Assembler;
class AstNode;
class CodeGenerator;
+class DescriptorList;
class SourceLabel;
+class StackmapBuilder;
class CodeGeneratorState : public StackResource {
@@ -89,6 +91,9 @@
// Add pc descriptors to code.
void FinalizePcDescriptors(const Code& code);
+ // Add stack maps to code.
+ void FinalizeStackmaps(const Code& code);
+
// Add local variable descriptors to code.
void FinalizeVarDescriptors(const Code& code);
@@ -115,7 +120,6 @@
friend class OptimizingCodeGenerator;
// Forward declarations.
- class DescriptorList;
class HandlerList;
// Return true if intrinsification was completed and no other code
@@ -210,6 +214,7 @@
intptr_t locals_space_size_;
CodeGeneratorState* state_;
DescriptorList* pc_descriptors_list_;
+ StackmapBuilder* stackmap_builder_;
HandlerList* exception_handlers_list_;
int try_index_;
// The runtime context level is only incremented when a new context is
« no previous file with comments | « vm/code_generator_arm.h ('k') | vm/code_generator_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698