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

Unified Diff: runtime/vm/deferred_objects.h

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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 | « runtime/vm/debugger_x64.cc ('k') | runtime/vm/deferred_objects.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/deferred_objects.h
diff --git a/runtime/vm/deferred_objects.h b/runtime/vm/deferred_objects.h
index eb817af93f30c46f220d5b47ea7c7a34f8aeb3a4..39a335e59f589728385907a59adafd43372d48ca 100644
--- a/runtime/vm/deferred_objects.h
+++ b/runtime/vm/deferred_objects.h
@@ -37,7 +37,6 @@ class DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredSlot);
};
-
class DeferredDouble : public DeferredSlot {
public:
DeferredDouble(double value, RawObject** slot, DeferredSlot* next)
@@ -53,7 +52,6 @@ class DeferredDouble : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredDouble);
};
-
class DeferredMint : public DeferredSlot {
public:
DeferredMint(int64_t value, RawObject** slot, DeferredSlot* next)
@@ -69,7 +67,6 @@ class DeferredMint : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredMint);
};
-
class DeferredFloat32x4 : public DeferredSlot {
public:
DeferredFloat32x4(simd128_value_t value, RawObject** slot, DeferredSlot* next)
@@ -85,7 +82,6 @@ class DeferredFloat32x4 : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredFloat32x4);
};
-
class DeferredFloat64x2 : public DeferredSlot {
public:
DeferredFloat64x2(simd128_value_t value, RawObject** slot, DeferredSlot* next)
@@ -101,7 +97,6 @@ class DeferredFloat64x2 : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredFloat64x2);
};
-
class DeferredInt32x4 : public DeferredSlot {
public:
DeferredInt32x4(simd128_value_t value, RawObject** slot, DeferredSlot* next)
@@ -117,7 +112,6 @@ class DeferredInt32x4 : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredInt32x4);
};
-
// Describes a slot that contains a reference to an object that had its
// allocation removed by AllocationSinking pass.
// Object itself is described and materialized by DeferredObject.
@@ -136,7 +130,6 @@ class DeferredObjectRef : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredObjectRef);
};
-
class DeferredRetAddr : public DeferredSlot {
public:
DeferredRetAddr(intptr_t index,
@@ -156,7 +149,6 @@ class DeferredRetAddr : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredRetAddr);
};
-
class DeferredPcMarker : public DeferredSlot {
public:
DeferredPcMarker(intptr_t index, RawObject** slot, DeferredSlot* next)
@@ -172,7 +164,6 @@ class DeferredPcMarker : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredPcMarker);
};
-
class DeferredPp : public DeferredSlot {
public:
DeferredPp(intptr_t index, RawObject** slot, DeferredSlot* next)
@@ -188,7 +179,6 @@ class DeferredPp : public DeferredSlot {
DISALLOW_COPY_AND_ASSIGN(DeferredPp);
};
-
// Describes an object which allocation was removed by AllocationSinking pass.
// Arguments for materialization are stored as a part of expression stack
// for the bottommost deoptimized frame so that GC could discover them.
« no previous file with comments | « runtime/vm/debugger_x64.cc ('k') | runtime/vm/deferred_objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698