Chromium Code Reviews| Index: src/compiler/register-allocator-verifier.h |
| diff --git a/src/compiler/register-allocator-verifier.h b/src/compiler/register-allocator-verifier.h |
| index 87b5cfbb7a06e23d03b42a815fe45e0a89a41ad4..4e3162010af9add773a667ed81312f15160154dc 100644 |
| --- a/src/compiler/register-allocator-verifier.h |
| +++ b/src/compiler/register-allocator-verifier.h |
| @@ -36,12 +36,14 @@ class RegisterAllocatorVerifier final : public ZoneObject { |
| kNone, |
| kNoneDouble, |
| kExplicit, |
| - kSameAsFirst |
| + kSameAsFirst, |
| + kDualLocation |
|
Jarin
2015/11/13 15:54:39
I am wondering whether we should not be more speci
Mircea Trofin
2015/11/13 16:07:18
I like that. I'll update.
|
| }; |
| struct OperandConstraint { |
| ConstraintType type_; |
| int value_; // subkind index when relevant |
| + int spilled_slot_; |
| int virtual_register_; |
| }; |