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

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

Issue 2304573004: Port FastCloneShallowArrayStub to Turbofan (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: comments from Ross Created 4 years, 3 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/code-stub-assembler.h » ('j') | src/code-stub-assembler.cc » ('J')
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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 V(kUnexpectedInitialMapForArrayFunction1, \ 224 V(kUnexpectedInitialMapForArrayFunction1, \
225 "Unexpected initial map for Array function (1)") \ 225 "Unexpected initial map for Array function (1)") \
226 V(kUnexpectedInitialMapForArrayFunction2, \ 226 V(kUnexpectedInitialMapForArrayFunction2, \
227 "Unexpected initial map for Array function (2)") \ 227 "Unexpected initial map for Array function (2)") \
228 V(kUnexpectedInitialMapForArrayFunction, \ 228 V(kUnexpectedInitialMapForArrayFunction, \
229 "Unexpected initial map for Array function") \ 229 "Unexpected initial map for Array function") \
230 V(kUnexpectedInitialMapForInternalArrayFunction, \ 230 V(kUnexpectedInitialMapForInternalArrayFunction, \
231 "Unexpected initial map for InternalArray function") \ 231 "Unexpected initial map for InternalArray function") \
232 V(kUnexpectedLevelAfterReturnFromApiCall, \ 232 V(kUnexpectedLevelAfterReturnFromApiCall, \
233 "Unexpected level after return from api call") \ 233 "Unexpected level after return from api call") \
234 V(kUnexpectedMap, "Unexpected map on object") \
234 V(kUnexpectedNegativeValue, "Unexpected negative value") \ 235 V(kUnexpectedNegativeValue, "Unexpected negative value") \
235 V(kUnexpectedFunctionIDForInvokeIntrinsic, \ 236 V(kUnexpectedFunctionIDForInvokeIntrinsic, \
236 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ 237 "Unexpected runtime function id for the InvokeIntrinsic bytecode") \
237 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ 238 V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \
238 V(kUnexpectedSmi, "Unexpected smi value") \ 239 V(kUnexpectedSmi, "Unexpected smi value") \
239 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ 240 V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \
240 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \ 241 V(kUnexpectedStackPointer, "The stack pointer is not the expected value") \
241 V(kUnexpectedStringType, "Unexpected string type") \ 242 V(kUnexpectedStringType, "Unexpected string type") \
242 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \ 243 V(kUnexpectedTypeForRegExpDataFixedArrayExpected, \
243 "Unexpected type for RegExp data, FixedArray expected") \ 244 "Unexpected type for RegExp data, FixedArray expected") \
(...skipping 27 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/code-stub-assembler.h » ('j') | src/code-stub-assembler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698