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

Unified Diff: runtime/vm/deopt_instructions.h

Issue 316593002: Cleanup mint deoptimization instruction names (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « no previous file | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/deopt_instructions.h
diff --git a/runtime/vm/deopt_instructions.h b/runtime/vm/deopt_instructions.h
index c287e349108f9c26fdd80c415accc95543f09bd5..889ce1d677677ae6e073415bd7ba556872918844 100644
--- a/runtime/vm/deopt_instructions.h
+++ b/runtime/vm/deopt_instructions.h
@@ -224,18 +224,19 @@ class DeoptInstr : public ZoneAllocated {
kConstant,
kRegister,
kFpuRegister,
- kInt64RegisterPair,
kFloat32x4FpuRegister,
kFloat64x2FpuRegister,
kInt32x4FpuRegister,
kStackSlot,
kDoubleStackSlot,
- kInt64StackSlot,
- kInt64StackSlotPair,
kFloat32x4StackSlot,
kFloat64x2StackSlot,
kInt32x4StackSlot,
- kInt64StackSlotRegister,
+ // Mints are split into low and high words. Each word can be in a register
+ // or stack slot. Note Mints are only used on 32-bit architectures.
+ kMintRegisterPair,
+ kMintStackSlotPair,
+ kMintStackSlotRegister,
kPcMarker,
kPp,
kCallerFp,
« no previous file with comments | « no previous file | runtime/vm/deopt_instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698