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

Side by Side Diff: src/runtime/runtime.h

Issue 2693043009: [typedarrays] sort in C++ for undefined comparefn (Closed)
Patch Set: Created 3 years, 10 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 F(ArrayBufferGetByteLength, 1, 1) \ 616 F(ArrayBufferGetByteLength, 1, 1) \
617 F(ArrayBufferSliceImpl, 4, 1) \ 617 F(ArrayBufferSliceImpl, 4, 1) \
618 F(ArrayBufferNeuter, 1, 1) \ 618 F(ArrayBufferNeuter, 1, 1) \
619 F(TypedArrayInitialize, 6, 1) \ 619 F(TypedArrayInitialize, 6, 1) \
620 F(TypedArrayInitializeFromArrayLike, 4, 1) \ 620 F(TypedArrayInitializeFromArrayLike, 4, 1) \
621 F(ArrayBufferViewGetByteLength, 1, 1) \ 621 F(ArrayBufferViewGetByteLength, 1, 1) \
622 F(ArrayBufferViewGetByteOffset, 1, 1) \ 622 F(ArrayBufferViewGetByteOffset, 1, 1) \
623 F(TypedArrayGetLength, 1, 1) \ 623 F(TypedArrayGetLength, 1, 1) \
624 F(TypedArrayGetBuffer, 1, 1) \ 624 F(TypedArrayGetBuffer, 1, 1) \
625 F(TypedArraySetFastCases, 3, 1) \ 625 F(TypedArraySetFastCases, 3, 1) \
626 F(TypedArraySortFast, 1, 1) \
626 F(TypedArrayMaxSizeInHeap, 0, 1) \ 627 F(TypedArrayMaxSizeInHeap, 0, 1) \
627 F(IsTypedArray, 1, 1) \ 628 F(IsTypedArray, 1, 1) \
628 F(IsSharedTypedArray, 1, 1) \ 629 F(IsSharedTypedArray, 1, 1) \
629 F(IsSharedIntegerTypedArray, 1, 1) \ 630 F(IsSharedIntegerTypedArray, 1, 1) \
630 F(IsSharedInteger32TypedArray, 1, 1) 631 F(IsSharedInteger32TypedArray, 1, 1)
631 632
632 #define FOR_EACH_INTRINSIC_WASM(F) \ 633 #define FOR_EACH_INTRINSIC_WASM(F) \
633 F(WasmGrowMemory, 1, 1) \ 634 F(WasmGrowMemory, 1, 1) \
634 F(WasmMemorySize, 0, 1) \ 635 F(WasmMemorySize, 0, 1) \
635 F(ThrowWasmError, 2, 1) \ 636 F(ThrowWasmError, 2, 1) \
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
858 kMaybeDeopted = 1 << 3, 859 kMaybeDeopted = 1 << 3,
859 kOptimized = 1 << 4, 860 kOptimized = 1 << 4,
860 kTurboFanned = 1 << 5, 861 kTurboFanned = 1 << 5,
861 kInterpreted = 1 << 6, 862 kInterpreted = 1 << 6,
862 }; 863 };
863 864
864 } // namespace internal 865 } // namespace internal
865 } // namespace v8 866 } // namespace v8
866 867
867 #endif // V8_RUNTIME_RUNTIME_H_ 868 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698