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

Side by Side Diff: src/codegen.h

Issue 1211453002: Reland "Keep a canonical list of shared function infos." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix alwaysopt Created 5 years, 6 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/bootstrapper.cc ('k') | src/compiler.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 // 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/runtime.h" 9 #include "src/runtime/runtime.h"
10 10
(...skipping 14 matching lines...) Expand all
25 // in_spilled_code 25 // in_spilled_code
26 // set_in_spilled_code 26 // set_in_spilled_code
27 // RecordPositions 27 // RecordPositions
28 // 28 //
29 // These methods are either used privately by the shared code or implemented as 29 // These methods are either used privately by the shared code or implemented as
30 // shared code: 30 // shared code:
31 // CodeGenerator 31 // CodeGenerator
32 // ~CodeGenerator 32 // ~CodeGenerator
33 // Generate 33 // Generate
34 // ComputeLazyCompile 34 // ComputeLazyCompile
35 // BuildFunctionInfo
36 // ProcessDeclarations 35 // ProcessDeclarations
37 // DeclareGlobals 36 // DeclareGlobals
38 // CheckForInlineRuntimeCall 37 // CheckForInlineRuntimeCall
39 // AnalyzeCondition 38 // AnalyzeCondition
40 // CodeForFunctionPosition 39 // CodeForFunctionPosition
41 // CodeForReturnPosition 40 // CodeForReturnPosition
42 // CodeForStatementPosition 41 // CodeForStatementPosition
43 // CodeForDoWhileConditionPosition 42 // CodeForDoWhileConditionPosition
44 // CodeForSourcePosition 43 // CodeForSourcePosition
45 44
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 #ifdef DEBUG 173 #ifdef DEBUG
175 #ifdef V8_TARGET_ARCH_ARM64 174 #ifdef V8_TARGET_ARCH_ARM64
176 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_; 175 const EmbeddedVector<byte, kNoCodeAgeSequenceLength> old_sequence_;
177 #endif 176 #endif
178 #endif 177 #endif
179 }; 178 };
180 179
181 } } // namespace v8::internal 180 } } // namespace v8::internal
182 181
183 #endif // V8_CODEGEN_H_ 182 #endif // V8_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698