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

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

Issue 2233673003: Remove CONST_LEGACY VariableMode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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
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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ 235 V(kUnexpectedFunctionIDForInvokeIntrinsic, \
236 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ 236 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \
237 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ 237 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \
238 V(kUnexpectedSmi, "Unexpected smi value") \ 238 V(kUnexpectedSmi, "Unexpected smi value") \
239 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ 239 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \
240 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ 240 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \
241 V(kUnexpectedStringType, "Unexpected string type") \ 241 V(kUnexpectedStringType, "Unexpected string type") \
242 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ 242 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \
243 "Unexpected type for RegExp data, FixedArray expected") \ 243 "Unexpected type for RegExp data, FixedArray expected") \
244 V(kUnexpectedValue, "Unexpected value") \ 244 V(kUnexpectedValue, "Unexpected value") \
245 V(kUnsupportedConstCompoundAssignment, \
246 "Unsupported const compound assignment") \
247 V(kUnsupportedCountOperationWithConst, \
248 "Unsupported count operation with const") \
249 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ 245 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \
250 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ 246 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \
251 V(kUnsupportedLookupSlotInDeclaration, \ 247 V(kUnsupportedLookupSlotInDeclaration, \
252 "Unsupported lookup slot in declaration") \ 248 "Unsupported lookup slot in declaration") \
253 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ 249 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \
254 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ 250 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \
255 V(kUnsupportedPhiUseOfConstVariable, \ 251 V(kUnsupportedPhiUseOfConstVariable, \
256 "Unsupported phi use of const or let variable") \ 252 "Unsupported phi use of const or let variable") \
257 V(kUnexpectedReturnFromThrow, "Unexpectedly returned from a throw") \ 253 V(kUnexpectedReturnFromThrow, "Unexpectedly returned from a throw") \
258 V(kUnsupportedSwitchStatement, "Unsupported switch statement") \ 254 V(kUnsupportedSwitchStatement, "Unsupported switch statement") \
(...skipping 18 matching lines...) Expand all
277 }; 273 };
278 #undef ERROR_MESSAGES_CONSTANTS 274 #undef ERROR_MESSAGES_CONSTANTS
279 275
280 276
281 const char* GetBailoutReason(BailoutReason reason); 277 const char* GetBailoutReason(BailoutReason reason);
282 278
283 } // namespace internal 279 } // namespace internal
284 } // namespace v8 280 } // namespace v8
285 281
286 #endif // V8_BAILOUT_REASON_H_ 282 #endif // V8_BAILOUT_REASON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698