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

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

Issue 145583014: A fix for the globals.h TODO in libplatform. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: fix header include guard Created 6 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
« no previous file with comments | « src/factory.h ('k') | src/globals.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 15 matching lines...) Expand all
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_FULL_CODEGEN_H_ 28 #ifndef V8_FULL_CODEGEN_H_
29 #define V8_FULL_CODEGEN_H_ 29 #define V8_FULL_CODEGEN_H_
30 30
31 #include "v8.h" 31 #include "v8.h"
32 32
33 #include "allocation.h" 33 #include "allocation.h"
34 #include "assert-scope.h" 34 #include "assert-scope.h"
35 #include "ast.h" 35 #include "ast.h"
36 #include "base/globals.h"
36 #include "code-stubs.h" 37 #include "code-stubs.h"
37 #include "codegen.h" 38 #include "codegen.h"
38 #include "compiler.h" 39 #include "compiler.h"
39 #include "data-flow.h" 40 #include "data-flow.h"
40 #include "globals.h"
41 #include "objects.h" 41 #include "objects.h"
42 42
43 namespace v8 { 43 namespace v8 {
44 namespace internal { 44 namespace internal {
45 45
46 // Forward declarations. 46 // Forward declarations.
47 class JumpPatchSite; 47 class JumpPatchSite;
48 48
49 // AST node visitor which can tell whether a given statement will be breakable 49 // AST node visitor which can tell whether a given statement will be breakable
50 // when the code is compiled by the full compiler in the debugger. This means 50 // when the code is compiled by the full compiler in the debugger. This means
(...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
963 963
964 Address start_; 964 Address start_;
965 Address instruction_start_; 965 Address instruction_start_;
966 uint32_t length_; 966 uint32_t length_;
967 }; 967 };
968 968
969 969
970 } } // namespace v8::internal 970 } } // namespace v8::internal
971 971
972 #endif // V8_FULL_CODEGEN_H_ 972 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/factory.h ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698