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

Side by Side Diff: src/codegen.h

Issue 597943003: Move i18n-related runtime functions into a separate file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: adapt check-name-clashes.py Created 6 years, 2 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/ast.h ('k') | src/codegen.cc » ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_CODEGEN_H_ 5 #ifndef V8_CODEGEN_H_
6 #define V8_CODEGEN_H_ 6 #define V8_CODEGEN_H_
7 7
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
11 // Include the declaration of the architecture defined class CodeGenerator. 11 // Include the declaration of the architecture defined class CodeGenerator.
12 // The contract to the shared code is that the the CodeGenerator is a subclass 12 // The contract to the shared code is that the the CodeGenerator is a subclass
13 // of Visitor and that the following methods are available publicly: 13 // of Visitor and that the following methods are available publicly:
14 // MakeCode 14 // MakeCode
15 // MakeCodePrologue 15 // MakeCodePrologue
16 // MakeCodeEpilogue 16 // MakeCodeEpilogue
17 // masm 17 // masm
18 // frame 18 // frame
19 // script 19 // script
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 #ifdef DEBUG 172 #ifdef DEBUG
173 #ifdef V8_TARGET_ARCH_ARM64 173 #ifdef V8_TARGET_ARCH_ARM64
174 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; 174 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_;
175 #endif 175 #endif
176 #endif 176 #endif
177 }; 177 };
178 178
179 } } // namespace v8::internal 179 } } // namespace v8::internal
180 180
181 #endif // V8_CODEGEN_H_ 181 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698