• Home
  • Raw
  • Download

Lines Matching refs:CallDescriptor

191 class V8_EXPORT_PRIVATE CallDescriptor final
253 CallDescriptor(Kind kind, MachineType target_type, LinkageLocation target_loc, in NON_EXPORTED_BASE()
283 CallDescriptor(const CallDescriptor&) = delete; in NON_EXPORTED_BASE()
284 CallDescriptor& operator=(const CallDescriptor&) = delete; in NON_EXPORTED_BASE()
426 int GetStackParameterDelta(const CallDescriptor* tail_caller) const; in NON_EXPORTED_BASE()
442 bool CanTailCall(const CallDescriptor* callee) const; in NON_EXPORTED_BASE()
482 DEFINE_OPERATORS_FOR_FLAGS(CallDescriptor::Flags)
484 std::ostream& operator<<(std::ostream& os, const CallDescriptor& d);
486 const CallDescriptor::Kind& k);
504 explicit Linkage(CallDescriptor* incoming) : incoming_(incoming) {} in NON_EXPORTED_BASE()
508 static CallDescriptor* ComputeIncoming(Zone* zone, in NON_EXPORTED_BASE()
513 CallDescriptor* GetIncomingDescriptor() const { return incoming_; } in NON_EXPORTED_BASE()
514 static CallDescriptor* GetJSCallDescriptor(Zone* zone, bool is_osr, in NON_EXPORTED_BASE()
516 CallDescriptor::Flags flags); in NON_EXPORTED_BASE()
518 static CallDescriptor* GetRuntimeCallDescriptor( in NON_EXPORTED_BASE()
520 Operator::Properties properties, CallDescriptor::Flags flags); in NON_EXPORTED_BASE()
522 static CallDescriptor* GetCEntryStubCallDescriptor( in NON_EXPORTED_BASE()
525 CallDescriptor::Flags flags, in NON_EXPORTED_BASE()
528 static CallDescriptor* GetStubCallDescriptor( in NON_EXPORTED_BASE()
530 int stack_parameter_count, CallDescriptor::Flags flags, in NON_EXPORTED_BASE()
534 static CallDescriptor* GetBytecodeDispatchCallDescriptor( in NON_EXPORTED_BASE()
542 static CallDescriptor* GetSimplifiedCDescriptor( in NON_EXPORTED_BASE()
544 CallDescriptor::Flags flags = CallDescriptor::kNoFlags); in NON_EXPORTED_BASE()
604 CallDescriptor* const incoming_; in NON_EXPORTED_BASE()