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

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

Issue 2642843002: Revert of [Ignition/turbo] Add a CallWithSpread bytecode. (Closed)
Patch Set: Created 3 years, 11 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/ast/ast-numbering.cc ('k') | 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 V(kReferenceToUninitializedVariable, "Reference to uninitialized variable") \ 178 V(kReferenceToUninitializedVariable, "Reference to uninitialized variable") \
179 V(kRegisterDidNotMatchExpectedRoot, "Register did not match expected root") \ 179 V(kRegisterDidNotMatchExpectedRoot, "Register did not match expected root") \
180 V(kRegisterWasClobbered, "Register was clobbered") \ 180 V(kRegisterWasClobbered, "Register was clobbered") \
181 V(kRememberedSetPointerInNewSpace, "Remembered set pointer is in new space") \ 181 V(kRememberedSetPointerInNewSpace, "Remembered set pointer is in new space") \
182 V(kRestParameter, "Rest parameters") \ 182 V(kRestParameter, "Rest parameters") \
183 V(kReturnAddressNotFoundInFrame, "Return address not found in frame") \ 183 V(kReturnAddressNotFoundInFrame, "Return address not found in frame") \
184 V(kSloppyFunctionExpectsJSReceiverReceiver, \ 184 V(kSloppyFunctionExpectsJSReceiverReceiver, \
185 "Sloppy function expects JSReceiver as receiver.") \ 185 "Sloppy function expects JSReceiver as receiver.") \
186 V(kSmiAdditionOverflow, "Smi addition overflow") \ 186 V(kSmiAdditionOverflow, "Smi addition overflow") \
187 V(kSmiSubtractionOverflow, "Smi subtraction overflow") \ 187 V(kSmiSubtractionOverflow, "Smi subtraction overflow") \
188 V(kSpreadCall, "Call with spread argument") \
189 V(kStackAccessBelowStackPointer, "Stack access below stack pointer") \ 188 V(kStackAccessBelowStackPointer, "Stack access below stack pointer") \
190 V(kStackFrameTypesMustMatch, "Stack frame types must match") \ 189 V(kStackFrameTypesMustMatch, "Stack frame types must match") \
191 V(kSuperReference, "Super reference") \ 190 V(kSuperReference, "Super reference") \
192 V(kTailCall, "Tail call") \ 191 V(kTailCall, "Tail call") \
193 V(kTheCurrentStackPointerIsBelowCsp, \ 192 V(kTheCurrentStackPointerIsBelowCsp, \
194 "The current stack pointer is below csp") \ 193 "The current stack pointer is below csp") \
195 V(kTheStackWasCorruptedByMacroAssemblerCall, \ 194 V(kTheStackWasCorruptedByMacroAssemblerCall, \
196 "The stack was corrupted by MacroAssembler::Call()") \ 195 "The stack was corrupted by MacroAssembler::Call()") \
197 V(kTooManyParametersLocals, "Too many parameters/locals") \ 196 V(kTooManyParametersLocals, "Too many parameters/locals") \
198 V(kTooManyParameters, "Too many parameters") \ 197 V(kTooManyParameters, "Too many parameters") \
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 }; 272 };
274 #undef ERROR_MESSAGES_CONSTANTS 273 #undef ERROR_MESSAGES_CONSTANTS
275 274
276 275
277 const char* GetBailoutReason(BailoutReason reason); 276 const char* GetBailoutReason(BailoutReason reason);
278 277
279 } // namespace internal 278 } // namespace internal
280 } // namespace v8 279 } // namespace v8
281 280
282 #endif // V8_BAILOUT_REASON_H_ 281 #endif // V8_BAILOUT_REASON_H_
OLDNEW
« no previous file with comments | « src/ast/ast-numbering.cc ('k') | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698