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

Side by Side Diff: src/ast.h

Issue 9328: Initial (stub) port of jump targets to the ARM platform.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: '' Created 12 years, 1 month 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
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 16 matching lines...) Expand all
27 27
28 #ifndef V8_AST_H_ 28 #ifndef V8_AST_H_
29 #define V8_AST_H_ 29 #define V8_AST_H_
30 30
31 #include "execution.h" 31 #include "execution.h"
32 #include "factory.h" 32 #include "factory.h"
33 #include "runtime.h" 33 #include "runtime.h"
34 #include "token.h" 34 #include "token.h"
35 #include "variables.h" 35 #include "variables.h"
36 #include "macro-assembler.h" 36 #include "macro-assembler.h"
37 #include "jump-target.h"
37 38
38 namespace v8 { namespace internal { 39 namespace v8 { namespace internal {
39 40
40 // The abstract syntax tree is an intermediate, light-weight 41 // The abstract syntax tree is an intermediate, light-weight
41 // representation of the parsed JavaScript code suitable for 42 // representation of the parsed JavaScript code suitable for
42 // compilation to native code. 43 // compilation to native code.
43 44
44 // Nodes are allocated in a separate zone, which allows faster 45 // Nodes are allocated in a separate zone, which allows faster
45 // allocation and constant-time deallocation of the entire syntax 46 // allocation and constant-time deallocation of the entire syntax
46 // tree. 47 // tree.
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1229 #undef DEF_VISIT 1230 #undef DEF_VISIT
1230 1231
1231 private: 1232 private:
1232 bool stack_overflow_; 1233 bool stack_overflow_;
1233 }; 1234 };
1234 1235
1235 1236
1236 } } // namespace v8::internal 1237 } } // namespace v8::internal
1237 1238
1238 #endif // V8_AST_H_ 1239 #endif // V8_AST_H_
OLDNEW
« no previous file with comments | « src/SConscript ('k') | src/codegen-arm.h » ('j') | src/jump-target.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698