Lines Matching defs:value
37 TNode<Object> value, Label* bailout);
50 TNode<Object> value,
124 TNode<Context> context, TNode<Object> value, TNode<BoolT> writable,
132 JSDataPropertyDescriptor::kValueOffset, value);
245 // NumberOfOwnDescriptorsBits value.
274 Branch(IntPtrEqual(var_descriptor_number.value(), object_enum_length),
285 TNode<IntPtrT> descriptor_entry = var_descriptor_number.value();
307 Unsigned(TruncateIntPtrToInt32(var_descriptor_number.value())));
309 // Let value be ? Get(O, key).
314 // If kind is "value", append value to properties.
315 TNode<Object> value = var_property_value.value();
318 // Let entry be CreateArrayFromList(« key, value »).
325 StoreFixedArrayElement(CAST(elements), 1, value, SKIP_WRITE_BARRIER);
326 value = array;
329 StoreFixedArrayElement(values_or_entries, var_result_index.value(),
330 value);
337 Branch(IntPtrEqual(var_result_index.value(), object_enum_length),
343 var_result_index.value(), array_map,
388 TryHasOwnProperty(heap_object, map, instance_type, var_unique.value(),
393 TryLookupElement(heap_object, map, instance_type, var_index.value(),
546 AllocateJSArray(array_map, var_elements.value(), var_length.value());
686 AllocateJSArray(array_map, var_elements.value(), var_length.value());
706 auto value = Parameter<Object>(Descriptor::kValue);
711 // We only check whether {value} is a Smi here, so that the
712 // prototype chain walk below can safely access the {value}s
713 // map. We don't rule out Primitive {value}s, since all of
716 GotoIf(TaggedIsSmi(value), &if_valueisnotreceiver);
719 TNode<HeapObject> value_heap_object = CAST(value);
727 // JSReceiver found in the prototype chain of {value}, hence it will return
738 // If {value} is a primitive HeapObject, we need to return
777 InstanceType value;
794 case_values[i] = kJumpTable[i].value;
904 GotoIf(TaggedIsSmi(var_tag.value()), &if_tagisnotstring);
905 Branch(IsString(CAST(var_tag.value())), &if_tagisstring,
913 ReturnToStringFormat(context, CAST(var_tag.value()));
974 // We need to start with the object to see if the value was a subclass
1030 TNode<HeapObject> holder = var_holder.value();
1051 Return(var_default.value());
1124 GotoIf(TaggedEqual(prototype, LoadMapPrototype(map.value())),
1140 AllocateJSObjectFromMap(map.value(), new_properties.value());
1169 const auto value = Parameter<Object>(Descriptor::kValue);
1179 StoreObjectFieldNoWriteBarrier(result, JSIteratorResult::kValueOffset, value);
1353 var_name.value(), &if_found_value, &var_value,
1360 context, var_value.value(), var_details.value(), &call_runtime);
1396 TNode<HeapObject> name_dictionary, Handle<Name> name, TNode<Object> value,
1401 Add<PropertyDictionary>(CAST(name_dictionary), HeapConstant(name), value,
1456 // We want to preallocate the slots for value, writable, get, set,
1467 TNode<Object> value =
1469 AddToDictionaryIf(IsNotTheHole(value), context, js_desc, properties,
1470 factory->value_string(), value, &bailout);
1509 return js_descriptor.value();
1546 return js_descriptor.value();
1566 return result.value();