Searched refs:kMaxElementIndex (Results 1 - 11 of 11) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | lookup-inl.h | 80 if (index_ > JSObject::kMaxElementIndex && in LookupIterator() 118 if (index <= JSObject::kMaxElementIndex) { in PropertyKey() 119 STATIC_ASSERT(JSObject::kMaxElementIndex <= in PropertyKey() 183 return index_ <= JSObject::kMaxElementIndex || in IsElement() 289 if (is_element && index_ <= JSObject::kMaxElementIndex) { in GetInterceptor()
|
H A D | js-array.h | 125 static constexpr uint32_t kMaxArrayIndex = JSObject::kMaxElementIndex;
|
H A D | lookup.cc | 1238 if (index > JSObject::kMaxElementIndex) { in HasInterceptor() 1485 DCHECK_LE(index, JSObject::kMaxElementIndex); in TryGetOwnConstantElement()
|
H A D | js-objects.h | 812 static constexpr uint32_t kMaxElementIndex = kMaxElementCount - 1; member in v8::internal::JSObject
|
/third_party/node/deps/v8/src/ic/ |
H A D | ic.cc | 1492 if (index > JSObject::kMaxElementIndex && !receiver->IsJSTypedArray()) { in IntPtrKeyToSize() 1496 // On 32-bit platforms, any intptr_t is less than kMaxElementIndex. in IntPtrKeyToSize() 1499 static_cast<double>(JSObject::kMaxElementIndex)); in IntPtrKeyToSize()
|
H A D | accessor-assembler.cc | 557 IntPtrConstant(JSObject::kMaxElementIndex)), in HandleLoadICSmiHandlerCase() 606 index, IntPtrConstant(JSObject::kMaxElementIndex)), in HandleLoadICSmiHandlerCase() 2419 GotoIf(UintPtrLessThan(IntPtrConstant(JSObject::kMaxElementIndex), in EmitElementLoad() 2655 IntPtrConstant(JSObject::kMaxElementIndex)), in GenericElementLoad()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | heap-refs.cc | 1817 DCHECK_LE(index, JSObject::kMaxElementIndex); in GetOwnConstantElementFromHeap()
|
H A D | js-native-context-specialization.cc | 1876 mkey.IsInRange(0.0, static_cast<double>(JSObject::kMaxElementIndex))) { in ReduceElementLoadFromHeapConstant() 1877 STATIC_ASSERT(JSObject::kMaxElementIndex <= kMaxUInt32); in ReduceElementLoadFromHeapConstant()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-array.cc | 341 if (length <= JSObject::kMaxElementIndex) { in GenericArrayPush()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-object.cc | 394 (key.is_element() && key.index() <= JSObject::kMaxElementIndex in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 10039 GotoIf(UintPtrLessThan(IntPtrConstant(JSObject::kMaxElementIndex), 10085 GotoIf(UintPtrLessThan(IntPtrConstant(JSObject::kMaxElementIndex),
|
Completed in 48 milliseconds