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

Unified Diff: runtime/vm/object.h

Issue 2734323003: Re-landing of "replace TrySync with Metadata". (Closed)
Patch Set: Address review comments Created 3 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 | « runtime/vm/isolate.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 6daa41497c14db3084f903386507829ef3929345..b5875683191fbd785afbaa64640fd4a829764675 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4708,6 +4708,16 @@ class Code : public Object {
}
void set_deopt_info_array(const Array& array) const;
+#if !defined(DART_PRECOMPILED_RUNTIME) && !defined(DART_PRECOMPILER)
+ RawSmi* variables() const { return raw_ptr()->catch_entry_.variables_; }
+ void set_variables(const Smi& smi) const;
+#else
+ RawTypedData* catch_entry_state_maps() const {
+ return raw_ptr()->catch_entry_.catch_entry_state_maps_;
+ }
+ void set_catch_entry_state_maps(const TypedData& maps) const;
+#endif
+
RawArray* stackmaps() const { return raw_ptr()->stackmaps_; }
void set_stackmaps(const Array& maps) const;
RawStackMap* GetStackMap(uint32_t pc_offset,
« no previous file with comments | « runtime/vm/isolate.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698