Home | History | Annotate | Download | only in compiler

Lines Matching defs:call

76   // Emit tracing call if requested to do so.
97 // Emit tracing call if requested to do so.
687 // TODO(dcarney): this runtime call should be a handful of
722 javascript()->Call(3, NO_CALL_FUNCTION_FLAGS), 3);
952 // Create nodes to define accessors, using only a single call to the runtime
965 Node* call = NewNode(op, literal, name, getter, setter, attr);
966 PrepareFrameState(call, it->first->id());
1190 void AstGraphBuilder::VisitCall(Call* expr) {
1192 Call::CallType call_type = expr->GetCallType(isolate());
1194 // Prepare the callee and the receiver to the function call. This depends on
1195 // the semantics of the underlying call type.
1201 case Call::GLOBAL_CALL: {
1207 case Call::LOOKUP_SLOT_CALL: {
1217 case Call::PROPERTY_CALL: {
1234 // thereby obsoleting the need for a flag to the call operator.
1238 case Call::POSSIBLY_EVAL_CALL:
1241 case Call::OTHER_CALL:
1253 // Evaluate all arguments to the function call,
1257 // Resolve callee and receiver for a potential direct eval call. This block
1266 // Create node to ask for help resolving potential eval call. This will
1284 // Create node to perform the function call.
1285 const Operator* call = javascript()->Call(args->length() + 2, flags);
1286 Node* value = ProcessArguments(call, args->length() + 2);
1295 // Evaluate all arguments to the construct call.
1299 // Create node to perform the construct call.
1300 const Operator* call = javascript()->CallNew(args->length() + 1);
1301 Node* value = ProcessArguments(call, args->length() + 1);
1322 // Evaluate all arguments to the JS runtime call.
1326 // Create node to perform the JS runtime call.
1327 const Operator* call = javascript()->Call(args->length() + 2, flags);
1328 Node* value = ProcessArguments(call, args->length() + 2);
1338 // the call follows JavaScript ABI and the callee is statically unknown.
1344 // Evaluate all arguments to the runtime call.
1348 // Create node to perform the runtime call.
1350 const Operator* call = javascript()->Runtime(functionId, args->length());
1351 Node* value = ProcessArguments(call, args->length());