Commit 276eaea2 authored by Jakob Gruber's avatar Jakob Gruber Committed by Commit Bot

Sort interface descriptor list

Just alpha-sort the list.

Tbr: ishell@chromium.org
Bug: v8:8888
Change-Id: I8b31f4176d5ad623557a3c0d8ab3f6be80072566
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2184236Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#67604}
parent 7e41bd38
...@@ -32,10 +32,8 @@ namespace internal { ...@@ -32,10 +32,8 @@ namespace internal {
V(ArrayNoArgumentConstructor) \ V(ArrayNoArgumentConstructor) \
V(ArraySingleArgumentConstructor) \ V(ArraySingleArgumentConstructor) \
V(AsyncFunctionStackParameter) \ V(AsyncFunctionStackParameter) \
V(BigIntToI64) \
V(BigIntToI32Pair) \ V(BigIntToI32Pair) \
V(I64ToBigInt) \ V(BigIntToI64) \
V(I32PairToBigInt) \
V(BinaryOp) \ V(BinaryOp) \
V(CallForwardVarargs) \ V(CallForwardVarargs) \
V(CallFunctionTemplate) \ V(CallFunctionTemplate) \
...@@ -60,6 +58,8 @@ namespace internal { ...@@ -60,6 +58,8 @@ namespace internal {
V(GetIteratorStackParameter) \ V(GetIteratorStackParameter) \
V(GetProperty) \ V(GetProperty) \
V(GrowArrayElements) \ V(GrowArrayElements) \
V(I32PairToBigInt) \
V(I64ToBigInt) \
V(InterpreterCEntry1) \ V(InterpreterCEntry1) \
V(InterpreterCEntry2) \ V(InterpreterCEntry2) \
V(InterpreterDispatch) \ V(InterpreterDispatch) \
...@@ -69,15 +69,15 @@ namespace internal { ...@@ -69,15 +69,15 @@ namespace internal {
V(Load) \ V(Load) \
V(LoadGlobal) \ V(LoadGlobal) \
V(LoadGlobalNoFeedback) \ V(LoadGlobalNoFeedback) \
V(LoadNoFeedback) \
V(LoadGlobalWithVector) \ V(LoadGlobalWithVector) \
V(LoadNoFeedback) \
V(LoadWithVector) \ V(LoadWithVector) \
V(NewArgumentsElements) \ V(NewArgumentsElements) \
V(NoContext) \ V(NoContext) \
V(RecordWrite) \ V(RecordWrite) \
V(ResumeGenerator) \ V(ResumeGenerator) \
V(RunMicrotasksEntry) \
V(RunMicrotasks) \ V(RunMicrotasks) \
V(RunMicrotasksEntry) \
V(Store) \ V(Store) \
V(StoreGlobal) \ V(StoreGlobal) \
V(StoreGlobalWithVector) \ V(StoreGlobalWithVector) \
...@@ -90,16 +90,16 @@ namespace internal { ...@@ -90,16 +90,16 @@ namespace internal {
V(TypeConversionStackParameter) \ V(TypeConversionStackParameter) \
V(Typeof) \ V(Typeof) \
V(Void) \ V(Void) \
V(WasmAtomicNotify) \
V(WasmFloat32ToNumber) \ V(WasmFloat32ToNumber) \
V(WasmFloat64ToNumber) \ V(WasmFloat64ToNumber) \
V(WasmAtomicNotify) \
V(WasmI32AtomicWait32) \ V(WasmI32AtomicWait32) \
V(WasmI32AtomicWait64) \ V(WasmI32AtomicWait64) \
V(WasmI64AtomicWait32) \ V(WasmI64AtomicWait32) \
V(WasmI64AtomicWait64) \ V(WasmI64AtomicWait64) \
V(WasmMemoryGrow) \ V(WasmMemoryGrow) \
V(WasmTableInit) \
V(WasmTableCopy) \ V(WasmTableCopy) \
V(WasmTableInit) \
V(WasmThrow) \ V(WasmThrow) \
BUILTIN_LIST_TFS(V) \ BUILTIN_LIST_TFS(V) \
TORQUE_BUILTIN_LIST_TFC(V) TORQUE_BUILTIN_LIST_TFC(V)
......
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