Lines Matching defs:builtin
84 void JSGenericLowering::ReplaceWithBuiltinCall(Node* node, Builtin builtin) {
86 Callable callable = Builtins::CallableFor(isolate(), builtin);
165 Builtin builtin;
174 builtin = builtin_with_feedback;
177 builtin = builtin_without_feedback;
180 ReplaceWithBuiltinCall(node, builtin);
216 Builtin builtin;
225 builtin = Builtin::kStrictEqual_WithFeedback;
228 builtin = Builtin::kStrictEqual;
231 Callable callable = Builtins::CallableFor(isolate(), builtin);
238 // The megamorphic load builtin can be used as a performance optimization in
239 // some cases - unlike the full builtin, the megamorphic builtin does fewer
385 // the size of the compiled code as it would insert 1 call to the builtin
665 // Use the FastNewClosure builtin only for functions allocated in new space.
727 // Use the CreateShallowArrayLiteral builtin only for shallow boilerplates
778 // Use the CreateShallowObjectLiteratal builtin only for shallow boilerplates
1076 // {node} will be changed to a builtin call (see below). The returned value
1124 // Finally, change the original node into a builtin call. This happens here,