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

Unified Diff: runtime/vm/deopt_instructions.h

Issue 626223002: Add unboxed Mint for X64 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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') | runtime/vm/intermediate_language_arm.cc » ('J')
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 c2ee73565ae7a4edf9dbbf98a8136e8591da34da..559edd3cddb0cd51768504646a7197a5dce56b28 100644
--- a/runtime/vm/deopt_instructions.h
+++ b/runtime/vm/deopt_instructions.h
@@ -217,9 +217,12 @@ class DeoptInstr : public ZoneAllocated {
kFloat32x4,
kFloat64x2,
kInt32x4,
- // 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.
+ // Mints are split into low and high words on 32-bit architectures. Each
+ // word can be in a register or stack slot. Note Mint pairs are only
+ // used on 32-bit architectures.
kMintPair,
+ // Mints are held in one word on 64-bit architectures.
+ kMint,
kInt32,
kUint32,
kPcMarker,
« no previous file with comments | « no previous file | runtime/vm/deopt_instructions.cc » ('j') | runtime/vm/intermediate_language_arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698