Home
last modified time | relevance | path

Searched refs:old_shared_array (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/runtime/
Druntime-liveedit.cc204 CONVERT_ARG_HANDLE_CHECKED(JSArray, old_shared_array, 0); in RUNTIME_FUNCTION()
208 RUNTIME_ASSERT(old_shared_array->length()->IsSmi()); in RUNTIME_FUNCTION()
209 RUNTIME_ASSERT(new_shared_array->length() == old_shared_array->length()); in RUNTIME_FUNCTION()
210 RUNTIME_ASSERT(old_shared_array->HasFastElements()) in RUNTIME_FUNCTION()
212 int array_length = Smi::cast(old_shared_array->length())->value(); in RUNTIME_FUNCTION()
217 isolate, old_element, Object::GetElement(isolate, old_shared_array, i)); in RUNTIME_FUNCTION()
229 return *LiveEdit::CheckAndDropActivations(old_shared_array, new_shared_array, in RUNTIME_FUNCTION()
/external/v8/src/debug/
Dliveedit.cc1643 MultipleFunctionTarget(Handle<JSArray> old_shared_array, in MultipleFunctionTarget() argument
1646 : old_shared_array_(old_shared_array), in MultipleFunctionTarget()
1811 Handle<JSArray> old_shared_array, Handle<JSArray> new_shared_array, in DropActivationsInActiveThread() argument
1813 MultipleFunctionTarget target(old_shared_array, new_shared_array, result); in DropActivationsInActiveThread()
1814 Isolate* isolate = old_shared_array->GetIsolate(); in DropActivationsInActiveThread()
1822 int array_len = GetArrayLength(old_shared_array); in DropActivationsInActiveThread()
1878 InactiveThreadActivationsChecker(Handle<JSArray> old_shared_array, in InactiveThreadActivationsChecker() argument
1880 : old_shared_array_(old_shared_array), in InactiveThreadActivationsChecker()
1902 Handle<JSArray> old_shared_array, Handle<JSArray> new_shared_array, in CheckAndDropActivations() argument
1904 Isolate* isolate = old_shared_array->GetIsolate(); in CheckAndDropActivations()
[all …]
Dliveedit.h118 Handle<JSArray> old_shared_array, Handle<JSArray> new_shared_array,