Chromium Code Reviews| Index: src/bailout-reason.h |
| diff --git a/src/bailout-reason.h b/src/bailout-reason.h |
| index d7ccc002f57ed572d20b2b2129194d65e9c5e366..e14918fde35a525c9d3634f003ff415b3f07611e 100644 |
| --- a/src/bailout-reason.h |
| +++ b/src/bailout-reason.h |
| @@ -230,6 +230,8 @@ namespace internal { |
| V(kUnexpectedNegativeValue, "Unexpected negative value") \ |
| V(kUnexpectedNumberOfPreAllocatedPropertyFields, \ |
| "Unexpected number of pre-allocated property fields") \ |
| + V(kUnexpectedFunctionIDForInvokeIntrinsic, \ |
| + "Unexpected runtime function id for the InvokeIntrinsic bytecode") \ |
| V(kUnexpectedFPCRMode, "Unexpected FPCR mode.") \ |
| V(kUnexpectedSmi, "Unexpected smi value") \ |
| V(kUnexpectedStackDepth, "Unexpected operand stack depth in full-codegen") \ |
| @@ -262,6 +264,8 @@ namespace internal { |
| V(kWrongFunctionContext, "Wrong context passed to function") \ |
| V(kWrongAddressOrValuePassedToRecordWrite, \ |
| "Wrong address or value passed to RecordWrite") \ |
| + V(kWrongArgumentCountForInvokeIntrinsic, \ |
| + "Wrong number of argument for intrinsic") \ |
|
rmcilroy
2016/03/08 11:19:30
/a/argument/arguments
epertoso
2016/03/08 14:11:09
Done.
|
| V(kShouldNotDirectlyEnterOsrFunction, \ |
| "Should not directly enter OSR-compiled function") \ |
| V(kYield, "Yield") |