Commit f5203615 authored by Michael Starzinger's avatar Michael Starzinger Committed by Commit Bot

[cleanup] Remove unused abort reason strings.

R=herhut@chromium.org

Change-Id: I7e81d233211ba29d9c48accda63a365e31f51617
Reviewed-on: https://chromium-review.googlesource.com/c/1319582Reviewed-by: 's avatarStephan Herhut <herhut@chromium.org>
Commit-Queue: Michael Starzinger <mstarzinger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#57278}
parent 73361422
...@@ -18,9 +18,6 @@ namespace internal { ...@@ -18,9 +18,6 @@ namespace internal {
V(kAPICallReturnedInvalidObject, "API call returned invalid object") \ V(kAPICallReturnedInvalidObject, "API call returned invalid object") \
V(kAllocatingNonEmptyPackedArray, "Allocating non-empty packed array") \ V(kAllocatingNonEmptyPackedArray, "Allocating non-empty packed array") \
V(kAllocationIsNotDoubleAligned, "Allocation is not double aligned") \ V(kAllocationIsNotDoubleAligned, "Allocation is not double aligned") \
V(kCodeObjectNotProperlyPatched, "Code object not properly patched") \
V(kExpectedAllocationSite, "Expected allocation site") \
V(kExpectedFeedbackVector, "Expected feedback vector") \
V(kExpectedOptimizationSentinel, \ V(kExpectedOptimizationSentinel, \
"Expected optimized code cell or optimization sentinel") \ "Expected optimized code cell or optimization sentinel") \
V(kExpectedUndefinedOrCell, "Expected undefined or cell in register") \ V(kExpectedUndefinedOrCell, "Expected undefined or cell in register") \
...@@ -35,7 +32,6 @@ namespace internal { ...@@ -35,7 +32,6 @@ namespace internal {
V(kInvalidJumpTableIndex, "Invalid jump table index") \ V(kInvalidJumpTableIndex, "Invalid jump table index") \
V(kInvalidParametersAndRegistersInGenerator, \ V(kInvalidParametersAndRegistersInGenerator, \
"invalid parameters and registers in generator") \ "invalid parameters and registers in generator") \
V(kInvalidSharedFunctionInfoData, "Invalid SharedFunctionInfo data") \
V(kMissingBytecodeArray, "Missing bytecode array from function") \ V(kMissingBytecodeArray, "Missing bytecode array from function") \
V(kObjectNotTagged, "The object is not tagged") \ V(kObjectNotTagged, "The object is not tagged") \
V(kObjectTagged, "The object is tagged") \ V(kObjectTagged, "The object is tagged") \
...@@ -45,7 +41,6 @@ namespace internal { ...@@ -45,7 +41,6 @@ namespace internal {
"Operand is a smi and not a bound function") \ "Operand is a smi and not a bound function") \
V(kOperandIsASmiAndNotAConstructor, \ V(kOperandIsASmiAndNotAConstructor, \
"Operand is a smi and not a constructor") \ "Operand is a smi and not a constructor") \
V(kOperandIsASmiAndNotAFixedArray, "Operand is a smi and not a fixed array") \
V(kOperandIsASmiAndNotAFunction, "Operand is a smi and not a function") \ V(kOperandIsASmiAndNotAFunction, "Operand is a smi and not a function") \
V(kOperandIsASmiAndNotAGeneratorObject, \ V(kOperandIsASmiAndNotAGeneratorObject, \
"Operand is a smi and not a generator object") \ "Operand is a smi and not a generator object") \
...@@ -63,8 +58,6 @@ namespace internal { ...@@ -63,8 +58,6 @@ namespace internal {
"Should not directly enter OSR-compiled function") \ "Should not directly enter OSR-compiled function") \
V(kStackAccessBelowStackPointer, "Stack access below stack pointer") \ V(kStackAccessBelowStackPointer, "Stack access below stack pointer") \
V(kStackFrameTypesMustMatch, "Stack frame types must match") \ V(kStackFrameTypesMustMatch, "Stack frame types must match") \
V(kTheStackWasCorruptedByMacroAssemblerCall, \
"The stack was corrupted by MacroAssembler::Call()") \
V(kUnalignedCellInWriteBarrier, "Unaligned cell in write barrier") \ V(kUnalignedCellInWriteBarrier, "Unaligned cell in write barrier") \
V(kUnexpectedElementsKindInArrayConstructor, \ V(kUnexpectedElementsKindInArrayConstructor, \
"Unexpected ElementsKind in array constructor") \ "Unexpected ElementsKind in array constructor") \
...@@ -73,10 +66,6 @@ namespace internal { ...@@ -73,10 +66,6 @@ namespace internal {
"Unexpected runtime function id for the InvokeIntrinsic bytecode") \ "Unexpected runtime function id for the InvokeIntrinsic bytecode") \
V(kUnexpectedInitialMapForArrayFunction, \ V(kUnexpectedInitialMapForArrayFunction, \
"Unexpected initial map for Array function") \ "Unexpected initial map for Array function") \
V(kUnexpectedInitialMapForArrayFunction1, \
"Unexpected initial map for Array function (1)") \
V(kUnexpectedInitialMapForArrayFunction2, \
"Unexpected initial map for Array function (2)") \
V(kUnexpectedInitialMapForInternalArrayFunction, \ V(kUnexpectedInitialMapForInternalArrayFunction, \
"Unexpected initial map for InternalArray function") \ "Unexpected initial map for InternalArray function") \
V(kUnexpectedLevelAfterReturnFromApiCall, \ V(kUnexpectedLevelAfterReturnFromApiCall, \
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include "src/bailout-reason.h" #include "src/bailout-reason.h"
#include "src/code-reference.h" #include "src/code-reference.h"
#include "src/feedback-vector.h"
#include "src/frames.h" #include "src/frames.h"
#include "src/globals.h" #include "src/globals.h"
#include "src/handles.h" #include "src/handles.h"
...@@ -21,15 +20,11 @@ ...@@ -21,15 +20,11 @@
namespace v8 { namespace v8 {
namespace internal { namespace internal {
class CoverageInfo;
class DeclarationScope;
class DeferredHandles; class DeferredHandles;
class FunctionLiteral; class FunctionLiteral;
class Isolate; class Isolate;
class JavaScriptFrame; class JavaScriptFrame;
class JSGlobalObject; class JSGlobalObject;
class ParseInfo;
class SourceRangeMap;
class Zone; class Zone;
// OptimizedCompilationInfo encapsulates the information needed to compile // OptimizedCompilationInfo encapsulates the information needed to compile
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment