Home | History | Annotate | Download | only in AppleObjCRuntime

Lines Matching refs:DispatchFunction

604 const AppleObjCTrampolineHandler::DispatchFunction
608 {"objc_msgSend", false, false, false, DispatchFunction::eFixUpNone },
609 {"objc_msgSend_fixup", false, false, false, DispatchFunction::eFixUpToFix },
610 {"objc_msgSend_fixedup", false, false, false, DispatchFunction::eFixUpFixed },
611 {"objc_msgSend_stret", true, false, false, DispatchFunction::eFixUpNone },
612 {"objc_msgSend_stret_fixup", true, false, false, DispatchFunction::eFixUpToFix },
613 {"objc_msgSend_stret_fixedup", true, false, false, DispatchFunction::eFixUpFixed },
614 {"objc_msgSend_fpret", false, false, false, DispatchFunction::eFixUpNone },
615 {"objc_msgSend_fpret_fixup", false, false, false, DispatchFunction::eFixUpToFix },
616 {"objc_msgSend_fpret_fixedup", false, false, false, DispatchFunction::eFixUpFixed },
617 {"objc_msgSend_fp2ret", false, false, true, DispatchFunction::eFixUpNone },
618 {"objc_msgSend_fp2ret_fixup", false, false, true, DispatchFunction::eFixUpToFix },
619 {"objc_msgSend_fp2ret_fixedup", false, false, true, DispatchFunction::eFixUpFixed },
620 {"objc_msgSendSuper", false, true, false, DispatchFunction::eFixUpNone },
621 {"objc_msgSendSuper_stret", true, true, false, DispatchFunction::eFixUpNone },
622 {"objc_msgSendSuper2", false, true, true, DispatchFunction::eFixUpNone },
623 {"objc_msgSendSuper2_fixup", false, true, true, DispatchFunction::eFixUpToFix },
624 {"objc_msgSendSuper2_fixedup", false, true, true, DispatchFunction::eFixUpFixed },
625 {"objc_msgSendSuper2_stret", true, true, true, DispatchFunction::eFixUpNone },
626 {"objc_msgSendSuper2_stret_fixup", true, true, true, DispatchFunction::eFixUpToFix },
627 {"objc_msgSendSuper2_stret_fixedup", true, true, true, DispatchFunction::eFixUpFixed },
687 // turn the g_dispatch_functions char * array into a template table, and populate the DispatchFunction map
835 DispatchFunction this_dispatch;
864 this_dispatch.fixedup = DispatchFunction::eFixUpFixed;
1097 case DispatchFunction::eFixUpNone:
1102 case DispatchFunction::eFixUpFixed:
1108 case DispatchFunction::eFixUpToFix: