| Index: src/a64/codegen-a64.h
|
| diff --git a/src/a64/codegen-a64.h b/src/a64/codegen-a64.h
|
| index ae4675f83b5cd24cac466e9d6b14458a4defc414..d66bd34a93665de8e5196047c929efa3d1576626 100644
|
| --- a/src/a64/codegen-a64.h
|
| +++ b/src/a64/codegen-a64.h
|
| @@ -34,49 +34,6 @@
|
| namespace v8 {
|
| namespace internal {
|
|
|
| -// Forward declarations
|
| -class CompilationInfo;
|
| -
|
| -// -------------------------------------------------------------------------
|
| -// CodeGenerator
|
| -
|
| -class CodeGenerator: public AstVisitor {
|
| - public:
|
| - explicit CodeGenerator(Zone* zone) {
|
| - InitializeAstVisitor(zone);
|
| - }
|
| -
|
| - static bool MakeCode(CompilationInfo* info);
|
| -
|
| - // Printing of AST, etc. as requested by flags.
|
| - static void MakeCodePrologue(CompilationInfo* info, const char* kind);
|
| -
|
| - // Allocate and install the code.
|
| - static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
|
| - Code::Flags flags,
|
| - CompilationInfo* info);
|
| -
|
| - // Print the code after compiling it.
|
| - static void PrintCode(Handle<Code> code, CompilationInfo* info);
|
| -
|
| - static bool ShouldGenerateLog(Isolate* isolate, Expression* type);
|
| -
|
| - static void SetFunctionInfo(Handle<JSFunction> fun,
|
| - FunctionLiteral* lit,
|
| - bool is_toplevel,
|
| - Handle<Script> script);
|
| -
|
| - static bool RecordPositions(MacroAssembler* masm,
|
| - int pos,
|
| - bool right_here = false);
|
| -
|
| - DEFINE_AST_VISITOR_SUBCLASS_MEMBERS();
|
| -
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
|
| -};
|
| -
|
| -
|
| class StringCharLoadGenerator : public AllStatic {
|
| public:
|
| // Generates the code for handling different string types and loading the
|
|
|