Lines Matching defs:value
44 TNode<Object> value = LoadValueByDescriptorEntry(array, index);
45 GotoIfNot(IsAccessorInfo(CAST(value)), bailout);
53 auto value = Parameter<Object>(Descriptor::kValue);
58 // 2. Return value.
59 GotoIf(TaggedIsSmi(value), &if_primitive);
60 GotoIfNot(IsJSReceiver(CAST(value)), &if_primitive);
62 // 1. If Type(value) is Object, then
63 // 1a. If IsCallable(value) is false, throw a TypeError exception.
64 // 1b. Return ? WrappedFunctionCreate(callerRealm, value).
65 Branch(IsCallable(CAST(value)), &if_callable, &bailout);
68 Return(value);
72 target = value;
75 Branch(IsJSWrappedFunction(CAST(value)), &unwrap, &wrap);
81 TNode<JSWrappedFunction> target_wrapped_function = CAST(value);
89 TNode<Map> map = LoadMap(CAST(target.value()));
93 // AccessorInfo objects. If so, their value can be recomputed even if
94 // the actual value on the object changes.
138 AllocateJSWrappedFunction(creation_context, target.value());
146 creation_context, target.value()));
150 ThrowTypeError(context, MessageTemplate::kNotCallable, value);
192 // Create wrapped value in the target realm.
202 // Create wrapped value in the target realm.
240 var_exception.value());
243 // A wrapped value should not be non-callable.