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

Unified Diff: runtime/vm/flow_graph_compiler.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/flow_graph_builder_test.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 0a7949af78c92d50caccbfdce8545ce91240c137..08fd3062d31ddcad55270b70f5c85f65cf687ac5 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -23,7 +23,6 @@ template <typename T>
class GrowableArray;
class ParsedFunction;
-
class ParallelMoveResolver : public ValueObject {
public:
explicit ParallelMoveResolver(FlowGraphCompiler* compiler);
@@ -59,7 +58,6 @@ class ParallelMoveResolver : public ValueObject {
bool spilled_;
};
-
bool IsScratchLocation(Location loc);
intptr_t AllocateScratchRegister(Location::Kind kind,
uword blocked_mask,
@@ -109,7 +107,6 @@ class ParallelMoveResolver : public ValueObject {
GrowableArray<MoveOperands*> moves_;
};
-
// Used for describing a deoptimization point after call (lazy deoptimization).
// For deoptimization before instruction use class CompilerDeoptInfoWithStub.
class CompilerDeoptInfo : public ZoneAllocated {
@@ -134,7 +131,6 @@ class CompilerDeoptInfo : public ZoneAllocated {
DeoptInfoBuilder* builder,
const Array& deopt_table);
-
// No code needs to be generated.
virtual void GenerateCode(FlowGraphCompiler* compiler, intptr_t stub_ix) {}
@@ -176,7 +172,6 @@ class CompilerDeoptInfo : public ZoneAllocated {
DISALLOW_COPY_AND_ASSIGN(CompilerDeoptInfo);
};
-
class CompilerDeoptInfoWithStub : public CompilerDeoptInfo {
public:
CompilerDeoptInfoWithStub(intptr_t deopt_id,
@@ -209,7 +204,6 @@ class CompilerDeoptInfoWithStub : public CompilerDeoptInfo {
DISALLOW_COPY_AND_ASSIGN(CompilerDeoptInfoWithStub);
};
-
class SlowPathCode : public ZoneAllocated {
public:
SlowPathCode() : entry_label_(), exit_label_() {}
@@ -232,7 +226,6 @@ class SlowPathCode : public ZoneAllocated {
DISALLOW_COPY_AND_ASSIGN(SlowPathCode);
};
-
class FlowGraphCompiler : public ValueObject {
private:
class BlockInfo : public ZoneAllocated {
« no previous file with comments | « runtime/vm/flow_graph_builder_test.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698