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

Unified Diff: src/compiler/register-allocator-verifier.h

Issue 2205093002: [Turbofan] Make RegisterAllocatorVerifier tolerant of shared slots. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix fixed slots. Created 4 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 | « no previous file | src/compiler/register-allocator-verifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/register-allocator-verifier.h
diff --git a/src/compiler/register-allocator-verifier.h b/src/compiler/register-allocator-verifier.h
index 72e6e06e1333007090d919db9f590855c751a4a1..2db8af57287a794d373dbc02ad09373296d274e7 100644
--- a/src/compiler/register-allocator-verifier.h
+++ b/src/compiler/register-allocator-verifier.h
@@ -178,7 +178,6 @@ class RegisterAllocatorVerifier final : public ZoneObject {
kFPRegister,
kFixedFPRegister,
kSlot,
- kFPSlot,
kFixedSlot,
kNone,
kNoneFP,
@@ -189,7 +188,9 @@ class RegisterAllocatorVerifier final : public ZoneObject {
struct OperandConstraint {
ConstraintType type_;
- int value_; // subkind index when relevant
+ // Constant or immediate value, register code, slot index, or slot size
+ // when relevant.
+ int value_;
int spilled_slot_;
int virtual_register_;
};
« no previous file with comments | « no previous file | src/compiler/register-allocator-verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698