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

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

Issue 1706283002: [fullcodegen] Implement operand stack depth tracking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Turn off verification. Created 4 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 | « no previous file | src/flag-definitions.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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 "Unexpected initial map for Array function") \ 225 "Unexpected initial map for Array function") \
226 V(kUnexpectedInitialMapForInternalArrayFunction, \ 226 V(kUnexpectedInitialMapForInternalArrayFunction, \
227 "Unexpected initial map for InternalArray function") \ 227 "Unexpected initial map for InternalArray function") \
228 V(kUnexpectedLevelAfterReturnFromApiCall, \ 228 V(kUnexpectedLevelAfterReturnFromApiCall, \
229 "Unexpected level after return from api call") \ 229 "Unexpected level after return from api call") \
230 V(kUnexpectedNegativeValue, "Unexpected negative value") \ 230 V(kUnexpectedNegativeValue, "Unexpected negative value") \
231 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ 231 V(kUnexpectedNumberOfPreAllocatedPropertyFields, \
232 "Unexpected number of pre-allocated property fields") \ 232 "Unexpected number of pre-allocated property fields") \
233 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ 233 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \
234 V(kUnexpectedSmi, "Unexpected smi value") \ 234 V(kUnexpectedSmi, "Unexpected smi value") \
235 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \
235 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ 236 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \
236 V(kUnexpectedStringType, "Unexpected string type") \ 237 V(kUnexpectedStringType, "Unexpected string type") \
237 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ 238 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \
238 "Unexpected type for RegExp data, FixedArray expected") \ 239 "Unexpected type for RegExp data, FixedArray expected") \
239 V(kUnexpectedValue, "Unexpected value") \ 240 V(kUnexpectedValue, "Unexpected value") \
240 V(kUnsupportedConstCompoundAssignment, \ 241 V(kUnsupportedConstCompoundAssignment, \
241 "Unsupported const compound assignment") \ 242 "Unsupported const compound assignment") \
242 V(kUnsupportedCountOperationWithConst, \ 243 V(kUnsupportedCountOperationWithConst, \
243 "Unsupported count operation with const") \ 244 "Unsupported count operation with const") \
244 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ 245 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \
(...skipping 26 matching lines...) Expand all
271 }; 272 };
272 #undef ERROR_MESSAGES_CONSTANTS 273 #undef ERROR_MESSAGES_CONSTANTS
273 274
274 275
275 const char* GetBailoutReason(BailoutReason reason); 276 const char* GetBailoutReason(BailoutReason reason);
276 277
277 } // namespace internal 278 } // namespace internal
278 } // namespace v8 279 } // namespace v8
279 280
280 #endif // V8_BAILOUT_REASON_H_ 281 #endif // V8_BAILOUT_REASON_H_
OLDNEW
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698