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

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

Issue 875853002: [turbofan] make register allocator verifier independent of phi assignment (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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 4e35dc2457342835ab538c5c401f65866042e30b..70552fbfdd0d44ea8afc4ff63a2bfd322c447c53 100644
--- a/src/compiler/register-allocator-verifier.h
+++ b/src/compiler/register-allocator-verifier.h
@@ -49,10 +49,9 @@ class RegisterAllocatorVerifier FINAL : public ZoneObject {
OperandConstraint* operand_constraints_;
};
- class OutgoingMapping;
+ class BlockMaps;
typedef ZoneVector<InstructionConstraint> Constraints;
- typedef ZoneVector<OutgoingMapping*> OutgoingMappings;
Zone* zone() const { return zone_; }
const RegisterConfiguration* config() { return config_; }
@@ -68,8 +67,7 @@ class RegisterAllocatorVerifier FINAL : public ZoneObject {
void CheckConstraint(const InstructionOperand* op,
const OperandConstraint* constraint);
- void ConstructOutgoingMappings(OutgoingMappings* outgoing_mappings,
- bool initial_pass);
+ void VerifyGapMoves(BlockMaps* outgoing_mappings, bool initial_pass);
Zone* const zone_;
const RegisterConfiguration* config_;
« 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