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

Unified Diff: src/lithium.h

Issue 23143007: Revert "Use V8_FINAL and V8_OVERRIDE in various places, fixing bugs revealed by them." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | « src/ia32/lithium-ia32.h ('k') | src/mips/lithium-codegen-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lithium.h
diff --git a/src/lithium.h b/src/lithium.h
index fd50ee8f8b9df0f20d5b5ac70682ca5d633b6177..f773916485d1676433a48f808622fa422bcf8d78 100644
--- a/src/lithium.h
+++ b/src/lithium.h
@@ -43,7 +43,7 @@ namespace internal {
V(DoubleRegister, DOUBLE_REGISTER)
-class LOperand : public ZoneObject {
+class LOperand: public ZoneObject {
public:
enum Kind {
INVALID,
@@ -90,7 +90,7 @@ class LOperand : public ZoneObject {
};
-class LUnallocated : public LOperand {
+class LUnallocated: public LOperand {
public:
enum BasicPolicy {
FIXED_SLOT,
@@ -271,7 +271,7 @@ class LUnallocated : public LOperand {
};
-class LMoveOperands V8_FINAL BASE_EMBEDDED {
+class LMoveOperands BASE_EMBEDDED {
public:
LMoveOperands(LOperand* source, LOperand* destination)
: source_(source), destination_(destination) {
@@ -317,7 +317,7 @@ class LMoveOperands V8_FINAL BASE_EMBEDDED {
};
-class LConstantOperand V8_FINAL : public LOperand {
+class LConstantOperand: public LOperand {
public:
static LConstantOperand* Create(int index, Zone* zone) {
ASSERT(index >= 0);
@@ -342,7 +342,7 @@ class LConstantOperand V8_FINAL : public LOperand {
};
-class LArgument V8_FINAL : public LOperand {
+class LArgument: public LOperand {
public:
explicit LArgument(int index) : LOperand(ARGUMENT, index) { }
@@ -353,7 +353,7 @@ class LArgument V8_FINAL : public LOperand {
};
-class LStackSlot V8_FINAL : public LOperand {
+class LStackSlot: public LOperand {
public:
static LStackSlot* Create(int index, Zone* zone) {
ASSERT(index >= 0);
@@ -378,7 +378,7 @@ class LStackSlot V8_FINAL : public LOperand {
};
-class LDoubleStackSlot V8_FINAL : public LOperand {
+class LDoubleStackSlot: public LOperand {
public:
static LDoubleStackSlot* Create(int index, Zone* zone) {
ASSERT(index >= 0);
@@ -403,7 +403,7 @@ class LDoubleStackSlot V8_FINAL : public LOperand {
};
-class LRegister V8_FINAL : public LOperand {
+class LRegister: public LOperand {
public:
static LRegister* Create(int index, Zone* zone) {
ASSERT(index >= 0);
@@ -428,7 +428,7 @@ class LRegister V8_FINAL : public LOperand {
};
-class LDoubleRegister V8_FINAL : public LOperand {
+class LDoubleRegister: public LOperand {
public:
static LDoubleRegister* Create(int index, Zone* zone) {
ASSERT(index >= 0);
@@ -453,7 +453,7 @@ class LDoubleRegister V8_FINAL : public LOperand {
};
-class LParallelMove V8_FINAL : public ZoneObject {
+class LParallelMove : public ZoneObject {
public:
explicit LParallelMove(Zone* zone) : move_operands_(4, zone) { }
@@ -474,7 +474,7 @@ class LParallelMove V8_FINAL : public ZoneObject {
};
-class LPointerMap V8_FINAL : public ZoneObject {
+class LPointerMap: public ZoneObject {
public:
explicit LPointerMap(int position, Zone* zone)
: pointer_operands_(8, zone),
@@ -510,7 +510,7 @@ class LPointerMap V8_FINAL : public ZoneObject {
};
-class LEnvironment V8_FINAL : public ZoneObject {
+class LEnvironment: public ZoneObject {
public:
LEnvironment(Handle<JSFunction> closure,
FrameType frame_type,
@@ -655,7 +655,7 @@ class LEnvironment V8_FINAL : public ZoneObject {
// Iterates over the non-null, non-constant operands in an environment.
-class ShallowIterator V8_FINAL BASE_EMBEDDED {
+class ShallowIterator BASE_EMBEDDED {
public:
explicit ShallowIterator(LEnvironment* env)
: env_(env),
@@ -699,7 +699,7 @@ class ShallowIterator V8_FINAL BASE_EMBEDDED {
// Iterator for non-null, non-constant operands incl. outer environments.
-class DeepIterator V8_FINAL BASE_EMBEDDED {
+class DeepIterator BASE_EMBEDDED {
public:
explicit DeepIterator(LEnvironment* env)
: current_iterator_(env) {
@@ -736,7 +736,7 @@ class LLabel;
// Superclass providing data and behavior common to all the
// arch-specific LPlatformChunk classes.
-class LChunk : public ZoneObject {
+class LChunk: public ZoneObject {
public:
static LChunk* NewChunk(HGraph* graph);
« no previous file with comments | « src/ia32/lithium-ia32.h ('k') | src/mips/lithium-codegen-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698