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

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

Issue 2471033004: [ignition,modules] Introduce bytecodes for loading/storing module variables. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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/compiler/bytecode-graph-builder.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 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ 236 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \
237 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ 237 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \
238 V(kUnexpectedStringType, "Unexpected string type") \ 238 V(kUnexpectedStringType, "Unexpected string type") \
239 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ 239 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \
240 "Unexpected type for RegExp data, FixedArray expected") \ 240 "Unexpected type for RegExp data, FixedArray expected") \
241 V(kUnexpectedValue, "Unexpected value") \ 241 V(kUnexpectedValue, "Unexpected value") \
242 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \ 242 V(kUnsupportedDoubleImmediate, "Unsupported double immediate") \
243 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \ 243 V(kUnsupportedLetCompoundAssignment, "Unsupported let compound assignment") \
244 V(kUnsupportedLookupSlotInDeclaration, \ 244 V(kUnsupportedLookupSlotInDeclaration, \
245 "Unsupported lookup slot in declaration") \ 245 "Unsupported lookup slot in declaration") \
246 V(kUnsupportedModuleOperation, "Unsupported module operation") \
246 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \ 247 V(kUnsupportedNonPrimitiveCompare, "Unsupported non-primitive compare") \
247 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \ 248 V(kUnsupportedPhiUseOfArguments, "Unsupported phi use of arguments") \
248 V(kUnsupportedPhiUseOfConstVariable, \ 249 V(kUnsupportedPhiUseOfConstVariable, \
249 "Unsupported phi use of const or let variable") \ 250 "Unsupported phi use of const or let variable") \
250 V(kUnexpectedReturnFromThrow, "Unexpectedly returned from a throw") \ 251 V(kUnexpectedReturnFromThrow, "Unexpectedly returned from a throw") \
251 V(kUnsupportedSwitchStatement, "Unsupported switch statement") \ 252 V(kUnsupportedSwitchStatement, "Unsupported switch statement") \
252 V(kUnsupportedTaggedImmediate, "Unsupported tagged immediate") \ 253 V(kUnsupportedTaggedImmediate, "Unsupported tagged immediate") \
253 V(kUnstableConstantTypeHeapObject, "Unstable constant-type heap object") \ 254 V(kUnstableConstantTypeHeapObject, "Unstable constant-type heap object") \
254 V(kVariableResolvedToWithContext, "Variable resolved to with context") \ 255 V(kVariableResolvedToWithContext, "Variable resolved to with context") \
255 V(kWithStatement, "WithStatement") \ 256 V(kWithStatement, "WithStatement") \
(...skipping 11 matching lines...) Expand all
267 }; 268 };
268 #undef ERROR_MESSAGES_CONSTANTS 269 #undef ERROR_MESSAGES_CONSTANTS
269 270
270 271
271 const char* GetBailoutReason(BailoutReason reason); 272 const char* GetBailoutReason(BailoutReason reason);
272 273
273 } // namespace internal 274 } // namespace internal
274 } // namespace v8 275 } // namespace v8
275 276
276 #endif // V8_BAILOUT_REASON_H_ 277 #endif // V8_BAILOUT_REASON_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698