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

Side by Side Diff: src/full-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/fast-codegen.h ('k') | src/ia32/codegen-ia32.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 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // ----------------------------------------------------------------------------- 61 // -----------------------------------------------------------------------------
62 // Full code generator. 62 // Full code generator.
63 63
64 class FullCodeGenerator: public AstVisitor { 64 class FullCodeGenerator: public AstVisitor {
65 public: 65 public:
66 enum Mode { 66 enum Mode {
67 PRIMARY, 67 PRIMARY,
68 SECONDARY 68 SECONDARY
69 }; 69 };
70 70
71 FullCodeGenerator(MacroAssembler* masm) 71 explicit FullCodeGenerator(MacroAssembler* masm)
72 : masm_(masm), 72 : masm_(masm),
73 info_(NULL), 73 info_(NULL),
74 nesting_stack_(NULL), 74 nesting_stack_(NULL),
75 loop_depth_(0), 75 loop_depth_(0),
76 location_(kStack), 76 location_(kStack),
77 true_label_(NULL), 77 true_label_(NULL),
78 false_label_(NULL) { 78 false_label_(NULL) {
79 } 79 }
80 80
81 static Handle<Code> MakeCode(CompilationInfo* info); 81 static Handle<Code> MakeCode(CompilationInfo* info);
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 442
443 friend class NestedStatement; 443 friend class NestedStatement;
444 444
445 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); 445 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator);
446 }; 446 };
447 447
448 448
449 } } // namespace v8::internal 449 } } // namespace v8::internal
450 450
451 #endif // V8_FULL_CODEGEN_H_ 451 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/fast-codegen.h ('k') | src/ia32/codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698