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

Side by Side Diff: src/bailout-reason.h

Issue 1245133002: [interpreter] Add Interpreter{Entry,Exit}Trampoline builtins. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth_bytecode_array
Patch Set: Adding MIPS based on https://codereview.chromium.org/1257953002/ Created 5 years, 4 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/arm64/builtins-arm64.cc ('k') | src/builtins.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_BAILOUT_REASON_H_ 5 #ifndef V8_BAILOUT_REASON_H_
6 #define V8_BAILOUT_REASON_H_ 6 #define V8_BAILOUT_REASON_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "External string expected, but not found") \ 80 "External string expected, but not found") \
81 V(kForInStatementOptimizationIsDisabled, \ 81 V(kForInStatementOptimizationIsDisabled, \
82 "ForInStatement optimization is disabled") \ 82 "ForInStatement optimization is disabled") \
83 V(kForInStatementWithNonLocalEachVariable, \ 83 V(kForInStatementWithNonLocalEachVariable, \
84 "ForInStatement with non-local each variable") \ 84 "ForInStatement with non-local each variable") \
85 V(kForOfStatement, "ForOfStatement") \ 85 V(kForOfStatement, "ForOfStatement") \
86 V(kFrameIsExpectedToBeAligned, "Frame is expected to be aligned") \ 86 V(kFrameIsExpectedToBeAligned, "Frame is expected to be aligned") \
87 V(kFunctionBeingDebugged, "Function is being debugged") \ 87 V(kFunctionBeingDebugged, "Function is being debugged") \
88 V(kFunctionCallsEval, "Function calls eval") \ 88 V(kFunctionCallsEval, "Function calls eval") \
89 V(kFunctionWithIllegalRedeclaration, "Function with illegal redeclaration") \ 89 V(kFunctionWithIllegalRedeclaration, "Function with illegal redeclaration") \
90 V(kFunctionDataShouldBeBytecodeArrayOnInterpreterEntry, \
91 "The function_data field should be a BytecodeArray on interpreter entry") \
90 V(kGeneratedCodeIsTooLarge, "Generated code is too large") \ 92 V(kGeneratedCodeIsTooLarge, "Generated code is too large") \
91 V(kGeneratorFailedToResume, "Generator failed to resume") \ 93 V(kGeneratorFailedToResume, "Generator failed to resume") \
92 V(kGenerator, "Generator") \ 94 V(kGenerator, "Generator") \
93 V(kGlobalFunctionsMustHaveInitialMap, \ 95 V(kGlobalFunctionsMustHaveInitialMap, \
94 "Global functions must have initial map") \ 96 "Global functions must have initial map") \
95 V(kHeapNumberMapRegisterClobbered, "HeapNumberMap register clobbered") \ 97 V(kHeapNumberMapRegisterClobbered, "HeapNumberMap register clobbered") \
96 V(kHydrogenFilter, "Optimization disabled by filter") \ 98 V(kHydrogenFilter, "Optimization disabled by filter") \
97 V(kImportDeclaration, "Import declaration") \ 99 V(kImportDeclaration, "Import declaration") \
98 V(kIndexIsNegative, "Index is negative") \ 100 V(kIndexIsNegative, "Index is negative") \
99 V(kIndexIsTooLarge, "Index is too large") \ 101 V(kIndexIsTooLarge, "Index is too large") \
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 }; 297 };
296 #undef ERROR_MESSAGES_CONSTANTS 298 #undef ERROR_MESSAGES_CONSTANTS
297 299
298 300
299 const char* GetBailoutReason(BailoutReason reason); 301 const char* GetBailoutReason(BailoutReason reason);
300 302
301 } // namespace internal 303 } // namespace internal
302 } // namespace v8 304 } // namespace v8
303 305
304 #endif // V8_BAILOUT_REASON_H_ 306 #endif // V8_BAILOUT_REASON_H_
OLDNEW
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/builtins.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698