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

Side by Side Diff: src/codegen.h

Issue 1207006: Rename NumberInfo to TypeInfo.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: changed project files Created 10 years, 9 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/virtual-frame-arm.cc ('k') | src/frame-element.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 13 matching lines...) Expand all
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 #ifndef V8_CODEGEN_H_ 28 #ifndef V8_CODEGEN_H_
29 #define V8_CODEGEN_H_ 29 #define V8_CODEGEN_H_
30 30
31 #include "ast.h" 31 #include "ast.h"
32 #include "code-stubs.h" 32 #include "code-stubs.h"
33 #include "runtime.h" 33 #include "runtime.h"
34 #include "number-info.h" 34 #include "type-info.h"
35 35
36 // Include the declaration of the architecture defined class CodeGenerator. 36 // Include the declaration of the architecture defined class CodeGenerator.
37 // The contract to the shared code is that the the CodeGenerator is a subclass 37 // The contract to the shared code is that the the CodeGenerator is a subclass
38 // of Visitor and that the following methods are available publicly: 38 // of Visitor and that the following methods are available publicly:
39 // MakeCode 39 // MakeCode
40 // MakeCodePrologue 40 // MakeCodePrologue
41 // MakeCodeEpilogue 41 // MakeCodeEpilogue
42 // masm 42 // masm
43 // frame 43 // frame
44 // script 44 // script
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 private: 587 private:
588 Major MajorKey() { return ToBoolean; } 588 Major MajorKey() { return ToBoolean; }
589 int MinorKey() { return 0; } 589 int MinorKey() { return 0; }
590 }; 590 };
591 591
592 592
593 } // namespace internal 593 } // namespace internal
594 } // namespace v8 594 } // namespace v8
595 595
596 #endif // V8_CODEGEN_H_ 596 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/arm/virtual-frame-arm.cc ('k') | src/frame-element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698