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

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

Issue 2452403003: Changed statement ZoneList to a ZoneChunkList
Patch Set: Created 4 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 | « src/compiler/osr.cc ('k') | src/compiler/register-allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/register-allocator.h
diff --git a/src/compiler/register-allocator.h b/src/compiler/register-allocator.h
index 4d94f1eac05532403898e14a654dee474c6afebc..d305edb96f74599a0d14d9cf89e73ed711b325da 100644
--- a/src/compiler/register-allocator.h
+++ b/src/compiler/register-allocator.h
@@ -468,7 +468,6 @@ class V8_EXPORT_PRIVATE LiveRange : public NON_EXPORTED_BASE(ZoneObject) {
DISALLOW_COPY_AND_ASSIGN(LiveRange);
};
-
class LiveRangeGroup final : public ZoneObject {
public:
explicit LiveRangeGroup(Zone* zone) : ranges_(zone) {}
@@ -683,7 +682,6 @@ struct PrintableLiveRange {
std::ostream& operator<<(std::ostream& os,
const PrintableLiveRange& printable_range);
-
class SpillRange final : public ZoneObject {
public:
static const int kUnassignedSlot = -1;
@@ -726,7 +724,6 @@ class SpillRange final : public ZoneObject {
DISALLOW_COPY_AND_ASSIGN(SpillRange);
};
-
class RegisterAllocationData final : public ZoneObject {
public:
class PhiMapValue : public ZoneObject {
@@ -870,7 +867,6 @@ class RegisterAllocationData final : public ZoneObject {
DISALLOW_COPY_AND_ASSIGN(RegisterAllocationData);
};
-
class ConstraintBuilder final : public ZoneObject {
public:
explicit ConstraintBuilder(RegisterAllocationData* data);
@@ -901,7 +897,6 @@ class ConstraintBuilder final : public ZoneObject {
DISALLOW_COPY_AND_ASSIGN(ConstraintBuilder);
};
-
class LiveRangeBuilder final : public ZoneObject {
public:
explicit LiveRangeBuilder(RegisterAllocationData* data, Zone* local_zone);
@@ -968,7 +963,6 @@ class LiveRangeBuilder final : public ZoneObject {
DISALLOW_COPY_AND_ASSIGN(LiveRangeBuilder);
};
-
class RegisterAllocator : public ZoneObject {
public:
RegisterAllocator(RegisterAllocationData* data, RegisterKind kind);
@@ -1110,7 +1104,6 @@ class LinearScanAllocator final : public RegisterAllocator {
DISALLOW_COPY_AND_ASSIGN(LinearScanAllocator);
};
-
class SpillSlotLocator final : public ZoneObject {
public:
explicit SpillSlotLocator(RegisterAllocationData* data);
@@ -1125,7 +1118,6 @@ class SpillSlotLocator final : public ZoneObject {
DISALLOW_COPY_AND_ASSIGN(SpillSlotLocator);
};
-
class OperandAssigner final : public ZoneObject {
public:
explicit OperandAssigner(RegisterAllocationData* data);
@@ -1144,7 +1136,6 @@ class OperandAssigner final : public ZoneObject {
DISALLOW_COPY_AND_ASSIGN(OperandAssigner);
};
-
class ReferenceMapPopulator final : public ZoneObject {
public:
explicit ReferenceMapPopulator(RegisterAllocationData* data);
« no previous file with comments | « src/compiler/osr.cc ('k') | src/compiler/register-allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698