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

Unified Diff: runtime/vm/instructions_x64.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/instructions_ia32_test.cc ('k') | runtime/vm/instructions_x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/instructions_x64.h
diff --git a/runtime/vm/instructions_x64.h b/runtime/vm/instructions_x64.h
index 56add2e461605434501bc79282acde031f6449f8..0c58007ce657aa41d7df96c02b078d77eff3ac51 100644
--- a/runtime/vm/instructions_x64.h
+++ b/runtime/vm/instructions_x64.h
@@ -20,11 +20,9 @@ class RawClass;
class Immediate;
class RawObject;
-
intptr_t IndexFromPPLoad(uword start);
intptr_t IndexFromPPLoadDisp8(uword start);
-
// Template class for all instruction pattern classes.
// P has to specify a static pattern and a pattern length method.
template <class P>
@@ -64,7 +62,6 @@ class InstructionPattern : public ValueObject {
DISALLOW_COPY_AND_ASSIGN(InstructionPattern);
};
-
class ReturnPattern : public InstructionPattern<ReturnPattern> {
public:
explicit ReturnPattern(uword pc) : InstructionPattern(pc) {}
@@ -80,7 +77,6 @@ class ReturnPattern : public InstructionPattern<ReturnPattern> {
static const int kLengthInBytes = 1;
};
-
// push rbp
// mov rbp, rsp
class ProloguePattern : public InstructionPattern<ProloguePattern> {
@@ -99,7 +95,6 @@ class ProloguePattern : public InstructionPattern<ProloguePattern> {
static const int kLengthInBytes = 4;
};
-
// mov rbp, rsp
class SetFramePointerPattern
: public InstructionPattern<SetFramePointerPattern> {
« no previous file with comments | « runtime/vm/instructions_ia32_test.cc ('k') | runtime/vm/instructions_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698