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

Unified Diff: runtime/vm/raw_object.h

Issue 467103005: Fixes to support ARMv5 lego mindstorm. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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/intrinsifier_arm.cc ('k') | runtime/vm/raw_object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
===================================================================
--- runtime/vm/raw_object.h (revision 39210)
+++ runtime/vm/raw_object.h (working copy)
@@ -972,6 +972,14 @@
int16_t try_index_;
};
+ // This structure is only used to compute what the size of PcDescriptorRec
+ // should be when the try_index_ field is omitted.
+ struct CompressedPcDescriptorRec {
+ uword pc_;
+ int32_t deopt_id_and_kind_;
+ int32_t token_pos_;
+ };
+
static intptr_t RecordSize(bool has_try_index);
private:
« no previous file with comments | « runtime/vm/intrinsifier_arm.cc ('k') | runtime/vm/raw_object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698