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

Side by Side Diff: src/fast-codegen.h

Issue 570024: Fix presubmit errors. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 24 matching lines...) Expand all
35 35
36 namespace v8 { 36 namespace v8 {
37 namespace internal { 37 namespace internal {
38 38
39 class FastCodeGenSyntaxChecker: public AstVisitor { 39 class FastCodeGenSyntaxChecker: public AstVisitor {
40 public: 40 public:
41 explicit FastCodeGenSyntaxChecker() 41 explicit FastCodeGenSyntaxChecker()
42 : info_(NULL), has_supported_syntax_(true) { 42 : info_(NULL), has_supported_syntax_(true) {
43 } 43 }
44 44
45 void Check(CompilationInfo* info); 45 void Check(CompilationInfo* info);
46 46
47 CompilationInfo* info() { return info_; } 47 CompilationInfo* info() { return info_; }
48 bool has_supported_syntax() { return has_supported_syntax_; } 48 bool has_supported_syntax() { return has_supported_syntax_; }
49 49
50 private: 50 private:
51 void VisitDeclarations(ZoneList<Declaration*>* decls); 51 void VisitDeclarations(ZoneList<Declaration*>* decls);
52 void VisitStatements(ZoneList<Statement*>* stmts); 52 void VisitStatements(ZoneList<Statement*>* stmts);
53 53
54 // AST node visit functions. 54 // AST node visit functions.
55 #define DECLARE_VISIT(type) virtual void Visit##type(type* node); 55 #define DECLARE_VISIT(type) virtual void Visit##type(type* node);
56 AST_NODE_LIST(DECLARE_VISIT) 56 AST_NODE_LIST(DECLARE_VISIT)
57 #undef DECLARE_VISIT 57 #undef DECLARE_VISIT
58 58
59 CompilationInfo* info_; 59 CompilationInfo* info_;
60 bool has_supported_syntax_; 60 bool has_supported_syntax_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(FastCodeGenSyntaxChecker); 62 DISALLOW_COPY_AND_ASSIGN(FastCodeGenSyntaxChecker);
63 }; 63 };
64 64
65 65
66 class FastCodeGenerator: public AstVisitor { 66 class FastCodeGenerator: public AstVisitor {
67 public: 67 public:
68 FastCodeGenerator(MacroAssembler* masm) : masm_(masm), info_(NULL) {} 68 explicit FastCodeGenerator(MacroAssembler* masm) : masm_(masm), info_(NULL) {}
69 69
70 static Handle<Code> MakeCode(CompilationInfo* info); 70 static Handle<Code> MakeCode(CompilationInfo* info);
71 71
72 void Generate(CompilationInfo* info); 72 void Generate(CompilationInfo* info);
73 73
74 private: 74 private:
75 MacroAssembler* masm() { return masm_; } 75 MacroAssembler* masm() { return masm_; }
76 Label* bailout() { return &bailout_; } 76 Label* bailout() { return &bailout_; }
77 77
78 bool has_receiver() { return !info_->receiver().is_null(); } 78 bool has_receiver() { return !info_->receiver().is_null(); }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 Label bailout_; 112 Label bailout_;
113 113
114 DISALLOW_COPY_AND_ASSIGN(FastCodeGenerator); 114 DISALLOW_COPY_AND_ASSIGN(FastCodeGenerator);
115 }; 115 };
116 116
117 117
118 } } // namespace v8::internal 118 } } // namespace v8::internal
119 119
120 #endif // V8_FAST_CODEGEN_H_ 120 #endif // V8_FAST_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698