Lines Matching refs:target
20 TNode<Object> target);
26 TNode<Context> context, TNode<Object> target) {
32 wrapped, JSWrappedFunction::kWrappedTargetFunctionOffset, target);
71 TVARIABLE(Object, target);
72 target = value;
82 target = LoadObjectField(target_wrapped_function,
89 TNode<Map> map = LoadMap(CAST(target.value()));
118 // Verify that prototype matches the function prototype of the target
138 AllocateJSWrappedFunction(creation_context, target.value());
146 creation_context, target.value()));
165 // 1. Let target be F.[[WrappedTargetFunction]].
166 TNode<JSReceiver> target = CAST(LoadObjectField(
168 // 2. Assert: IsCallable(target) is true.
169 CSA_DCHECK(this, IsCallable(target));
174 // 3. Let targetRealm be ? GetFunctionRealm(target).
176 GetFunctionRealm(caller_context, target, &target_not_callable);
192 // Create wrapped value in the target realm.
202 // Create wrapped value in the target realm.
220 // 9. Let result be the Completion Record of Call(target,
222 result = CallStub(callable, target_context, target, args_count, argc,