123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933 |
- /*
- * Copyright (c) 1999-2009 Apple Inc. All Rights Reserved.
- *
- * @APPLE_LICENSE_HEADER_START@
- *
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
- *
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
- *
- * @APPLE_LICENSE_HEADER_END@
- */
- #include <TargetConditionals.h>
- #if defined(__i386__) && TARGET_OS_SIMULATOR
- #include "objc-config.h"
- .data
- // _objc_restartableRanges is used by method dispatch
- // to get the critical regions for which method caches
- // cannot be garbage collected.
- .macro RestartableEntry
- .long $0
- .long 0
- .short LExit$0 - $0
- .short 0xffff // The simulator doesn't support kernel based recovery
- .long 0
- .endmacro
- .align 4
- .private_extern _objc_restartableRanges
- _objc_restartableRanges:
- RestartableEntry _cache_getImp
- RestartableEntry _objc_msgSend
- RestartableEntry _objc_msgSend_fpret
- RestartableEntry _objc_msgSend_stret
- RestartableEntry _objc_msgSendSuper
- RestartableEntry _objc_msgSendSuper2
- RestartableEntry _objc_msgSendSuper_stret
- RestartableEntry _objc_msgSendSuper2_stret
- RestartableEntry _objc_msgLookup
- RestartableEntry _objc_msgLookup_fpret
- RestartableEntry _objc_msgLookup_stret
- RestartableEntry _objc_msgLookupSuper2
- RestartableEntry _objc_msgLookupSuper2_stret
- .fill 16, 1, 0
- /********************************************************************
- * Names for relative labels
- * DO NOT USE THESE LABELS ELSEWHERE
- * Reserved labels: 5: 6: 7: 8: 9:
- ********************************************************************/
- #define LCacheMiss 5
- #define LCacheMiss_f 5f
- #define LCacheMiss_b 5b
- #define LNilTestDone 6
- #define LNilTestDone_f 6f
- #define LNilTestDone_b 6b
- #define LNilTestSlow 7
- #define LNilTestSlow_f 7f
- #define LNilTestSlow_b 7b
- #define LGetIsaDone 8
- #define LGetIsaDone_f 8f
- #define LGetIsaDone_b 8b
- #define LGetIsaSlow 9
- #define LGetIsaSlow_f 9f
- #define LGetIsaSlow_b 9b
- /********************************************************************
- * Macro parameters
- ********************************************************************/
- #define NORMAL 0
- #define FPRET 1
- #define STRET 2
- #define CALL 100
- #define GETIMP 101
- #define LOOKUP 102
- /********************************************************************
- *
- * Structure definitions.
- *
- ********************************************************************/
- // Offsets from %esp
- #define self 4
- #define super 4
- #define selector 8
- #define marg_size 12
- #define marg_list 16
- #define first_arg 12
- #define struct_addr 4
- #define self_stret 8
- #define super_stret 8
- #define selector_stret 12
- #define marg_size_stret 16
- #define marg_list_stret 20
- // objc_super parameter to sendSuper
- #define receiver 0
- #define class 4
- // Selected field offsets in class structure
- #define isa 0
- #define superclass 4
- #define cache_buckets 8
- #define cache_mask 12
- // Method cache
- #define cached_sel 0
- #define cached_imp 4
- // Method descriptor
- #define method_name 0
- #define method_imp 8
- //////////////////////////////////////////////////////////////////////
- //
- // ENTRY functionName
- //
- // Assembly directives to begin an exported function.
- //
- // Takes: functionName - name of the exported function
- //////////////////////////////////////////////////////////////////////
- .macro ENTRY
- .text
- .globl $0
- .align 2, 0x90
- $0:
- .endmacro
- .macro STATIC_ENTRY
- .text
- .private_extern $0
- .align 4, 0x90
- $0:
- .endmacro
- //////////////////////////////////////////////////////////////////////
- //
- // END_ENTRY functionName
- //
- // Assembly directives to end an exported function. Just a placeholder,
- // a close-parenthesis for ENTRY, until it is needed for something.
- //
- // Takes: functionName - name of the exported function
- //////////////////////////////////////////////////////////////////////
- .macro END_ENTRY
- LExit$0:
- .endmacro
- /********************************************************************
- * UNWIND name, flags
- * Unwind info generation
- ********************************************************************/
- .macro UNWIND
- .section __LD,__compact_unwind,regular,debug
- .long $0
- .set LUnwind$0, LExit$0 - $0
- .long LUnwind$0
- .long $1
- .long 0 /* no personality */
- .long 0 /* no LSDA */
- .text
- .endmacro
- #define NoFrame 0x02010000 // no frame, no SP adjustment except return address
- #define FrameWithNoSaves 0x01000000 // frame, no non-volatile saves
- /////////////////////////////////////////////////////////////////////
- //
- // CacheLookup return-type, caller
- //
- // Locate the implementation for a selector in a class method cache.
- //
- // Takes:
- // $0 = NORMAL, FPRET, STRET
- // $1 = CALL, LOOKUP, GETIMP
- // ecx = selector to search for
- // edx = class to search
- //
- // On exit: ecx clobbered
- // (found) calls or returns IMP in eax, eq/ne set for forwarding
- // (not found) jumps to LCacheMiss, class still in edx
- //
- /////////////////////////////////////////////////////////////////////
- .macro CacheHit
- // CacheHit must always be preceded by a not-taken `jne` instruction
- // in case the imp is _objc_msgForward_impcache.
- // eax = found bucket
-
- .if $1 == GETIMP
- movl cached_imp(%eax), %eax // return imp
- cmpl $$0, %eax
- jz 9f // don't xor a nil imp
- xorl %edx, %eax // xor the isa with the imp
- 9: ret
- .else
- .if $1 == CALL
- xorl cached_imp(%eax), %edx // xor imp and isa
- .if $0 != STRET
- // ne already set for forwarding by `xor`
- .else
- cmp %eax, %eax // set eq for stret forwarding
- .endif
- jmp *%edx // call imp
- .elseif $1 == LOOKUP
- movl cached_imp(%eax), %eax // return imp
- xorl %edx, %eax // xor isa into imp
- ret
- .else
- .abort oops
- .endif
- .endif
- .endmacro
- .macro CacheLookup
- movzwl cache_mask(%edx), %eax // eax = mask
- andl %ecx, %eax // eax = SEL & mask
- shll $$3, %eax // eax = offset = (SEL & mask) * 8
- addl cache_buckets(%edx), %eax // eax = bucket = buckets+offset
- cmpl cached_sel(%eax), %ecx // if (bucket->sel != SEL)
- jne 1f // scan more
- // The `jne` above sets flags for CacheHit
- CacheHit $0, $1 // call or return imp
- 1:
- // loop
- cmpl $$1, cached_sel(%eax)
- jbe 3f // if (bucket->sel <= 1) wrap or miss
-
- addl $$8, %eax // bucket++
- 2:
- cmpl cached_sel(%eax), %ecx // if (bucket->sel != sel)
- jne 1b // scan more
- // The `jne` above sets flags for CacheHit
- CacheHit $0, $1 // call or return imp
- 3:
- // wrap or miss
- jb LCacheMiss_f // if (bucket->sel < 1) cache miss
- // wrap
- movl cached_imp(%eax), %eax // bucket->imp is really first bucket
- jmp 2f
- // Clone scanning loop to miss instead of hang when cache is corrupt.
- // The slow path may detect any corruption and halt later.
- 1:
- // loop
- cmpl $$1, cached_sel(%eax)
- jbe 3f // if (bucket->sel <= 1) wrap or miss
-
- addl $$8, %eax // bucket++
- 2:
- cmpl cached_sel(%eax), %ecx // if (bucket->sel != sel)
- jne 1b // scan more
- // The `jne` above sets flags for CacheHit
- CacheHit $0, $1 // call or return imp
- 3:
- // double wrap or miss
- jmp LCacheMiss_f
-
- .endmacro
- /////////////////////////////////////////////////////////////////////
- //
- // MethodTableLookup NORMAL|STRET
- //
- // Takes:
- // receiver (not struct objc_super) and selector on stack
- // edx = class to search
- //
- // On exit: IMP in eax, eq/ne set for forwarding
- //
- /////////////////////////////////////////////////////////////////////
- .macro MethodTableLookup
- pushl %ebp
- movl %esp, %ebp
- subl $$(8+5*16), %esp
- .if $0 == NORMAL
- movl self+4(%ebp), %eax
- movl selector+4(%ebp), %ecx
- .else
- movl self_stret+4(%ebp), %eax
- movl selector_stret+4(%ebp), %ecx
- .endif
-
- movdqa %xmm3, 4*16(%esp)
- movdqa %xmm2, 3*16(%esp)
- movdqa %xmm1, 2*16(%esp)
- movdqa %xmm0, 1*16(%esp)
-
- // lookUpImpOrForward(obj, sel, cls, LOOKUP_INITIALIZE | LOOKUP_RESOLVER)
- movl $$3, 12(%esp) // LOOKUP_INITIALIZE | LOOKUP_RESOLVER
- movl %edx, 8(%esp) // class
- movl %ecx, 4(%esp) // selector
- movl %eax, 0(%esp) // receiver
- call _lookUpImpOrForward
- // imp in eax
- movdqa 4*16(%esp), %xmm3
- movdqa 3*16(%esp), %xmm2
- movdqa 2*16(%esp), %xmm1
- movdqa 1*16(%esp), %xmm0
- .if $0 == NORMAL
- test %eax, %eax // set ne for stret forwarding
- .else
- cmp %eax, %eax // set eq for nonstret forwarding
- .endif
- leave
- .endmacro
- /////////////////////////////////////////////////////////////////////
- //
- // NilTest return-type
- //
- // Takes: $0 = NORMAL or FPRET or STRET
- // eax = receiver
- //
- // On exit: Loads non-nil receiver in eax and self(esp) or self_stret(esp),
- // or returns zero.
- //
- // NilTestReturnZero return-type
- //
- // Takes: $0 = NORMAL or FPRET or STRET
- // eax = receiver
- //
- // On exit: Loads non-nil receiver in eax and self(esp) or self_stret(esp),
- // or returns zero.
- //
- // NilTestReturnIMP return-type
- //
- // Takes: $0 = NORMAL or FPRET or STRET
- // eax = receiver
- //
- // On exit: Loads non-nil receiver in eax and self(esp) or self_stret(esp),
- // or returns an IMP in eax that returns zero.
- //
- /////////////////////////////////////////////////////////////////////
- .macro ZeroReturn
- xorl %eax, %eax
- xorl %edx, %edx
- xorps %xmm0, %xmm0
- xorps %xmm1, %xmm1
- .endmacro
- .macro ZeroReturnFPRET
- fldz
- .endmacro
- .macro ZeroReturnSTRET
- // empty
- .endmacro
- STATIC_ENTRY __objc_msgNil
- ZeroReturn
- ret
- END_ENTRY __objc_msgNil
- STATIC_ENTRY __objc_msgNil_fpret
- ZeroReturnFPRET
- ret
- END_ENTRY __objc_msgNil_fpret
- STATIC_ENTRY __objc_msgNil_stret
- ZeroReturnSTRET
- ret $4
- END_ENTRY __objc_msgNil_stret
- .macro NilTest
- testl %eax, %eax
- jz LNilTestSlow_f
- LNilTestDone:
- .endmacro
- .macro NilTestReturnZero
- .align 3
- LNilTestSlow:
- .if $0 == NORMAL
- ZeroReturn
- ret
- .elseif $0 == FPRET
- ZeroReturnFPRET
- ret
- .elseif $0 == STRET
- ZeroReturnSTRET
- ret $$4
- .else
- .abort oops
- .endif
- .endmacro
- .macro NilTestReturnIMP
- .align 3
- LNilTestSlow:
- call 1f
- 1: pop %eax
- .if $0 == NORMAL
- leal __objc_msgNil-1b(%eax), %eax
- .elseif $0 == FPRET
- leal __objc_msgNil_fpret-1b(%eax), %eax
- .elseif $0 == STRET
- leal __objc_msgNil_stret-1b(%eax), %eax
- .else
- .abort oops
- .endif
- ret
- .endmacro
- /********************************************************************
- * IMP _cache_getImp(Class cls, SEL sel)
- *
- * If found, returns method implementation.
- * If not found, returns NULL.
- ********************************************************************/
- STATIC_ENTRY _cache_getImp
- // load the class and selector
- movl selector(%esp), %ecx
- movl self(%esp), %edx
- CacheLookup NORMAL, GETIMP // returns IMP on success
- LCacheMiss:
- // cache miss, return nil
- xorl %eax, %eax
- ret
- END_ENTRY _cache_getImp
- /********************************************************************
- *
- * id objc_msgSend(id self, SEL _cmd, ...);
- * IMP objc_msgLookup(id self, SEL _cmd, ...);
- *
- * objc_msgLookup ABI:
- * IMP returned in eax
- * Forwarding returned in Z flag
- * edx reserved for our use but not used
- *
- ********************************************************************/
- ENTRY _objc_msgSend
- UNWIND _objc_msgSend, NoFrame
-
- movl selector(%esp), %ecx
- movl self(%esp), %eax
- NilTest NORMAL
- movl isa(%eax), %edx // class = self->isa
- CacheLookup NORMAL, CALL // calls IMP on success
- NilTestReturnZero NORMAL
- LCacheMiss:
- // isa still in edx
- jmp __objc_msgSend_uncached
- END_ENTRY _objc_msgSend
- ENTRY _objc_msgLookup
- UNWIND _objc_msgLookup, NoFrame
-
- movl selector(%esp), %ecx
- movl self(%esp), %eax
- NilTest NORMAL
- movl isa(%eax), %edx // class = self->isa
- CacheLookup NORMAL, LOOKUP // returns IMP on success
- NilTestReturnIMP NORMAL
- LCacheMiss:
- // isa still in edx
- jmp __objc_msgLookup_uncached
- END_ENTRY _objc_msgLookup
- /********************************************************************
- *
- * id objc_msgSendSuper(struct objc_super *super, SEL _cmd, ...);
- *
- ********************************************************************/
- ENTRY _objc_msgSendSuper
- UNWIND _objc_msgSendSuper, NoFrame
- movl selector(%esp), %ecx
- movl super(%esp), %eax // struct objc_super
- movl class(%eax), %edx // struct objc_super->class
- movl receiver(%eax), %eax // struct objc_super->receiver
- movl %eax, super(%esp) // replace super arg with receiver
- CacheLookup NORMAL, CALL // calls IMP on success
- LCacheMiss:
- // class still in edx
- jmp __objc_msgSend_uncached
- END_ENTRY _objc_msgSendSuper
- /********************************************************************
- *
- * id objc_msgSendSuper2(struct objc_super *super, SEL _cmd, ...);
- * IMP objc_msgLookupSuper2(struct objc_super *super, SEL _cmd, ...);
- *
- ********************************************************************/
- ENTRY _objc_msgSendSuper2
- UNWIND _objc_msgSendSuper2, NoFrame
- movl selector(%esp), %ecx
- movl super(%esp), %eax // struct objc_super
- movl class(%eax), %edx // struct objc_super->class
- movl receiver(%eax), %eax // struct objc_super->receiver
- movl %eax, super(%esp) // replace super arg with receiver
- movl superclass(%edx), %edx // edx = objc_super->class->super_class
- CacheLookup NORMAL, CALL // calls IMP on success
- LCacheMiss:
- // class still in edx
- jmp __objc_msgSend_uncached
- END_ENTRY _objc_msgSendSuper2
- ENTRY _objc_msgLookupSuper2
- UNWIND _objc_msgLookupSuper2, NoFrame
- movl selector(%esp), %ecx
- movl super(%esp), %eax // struct objc_super
- movl class(%eax), %edx // struct objc_super->class
- movl receiver(%eax), %eax // struct objc_super->receiver
- movl %eax, super(%esp) // replace super arg with receiver
- movl superclass(%edx), %edx // edx = objc_super->class->super_class
- CacheLookup NORMAL, LOOKUP // returns IMP on success
- LCacheMiss:
- // class still in edx
- jmp __objc_msgLookup_uncached
- END_ENTRY _objc_msgLookupSuper2
- /********************************************************************
- *
- * double objc_msgSend_fpret(id self, SEL _cmd, ...);
- * IMP objc_msgLookup_fpret(id self, SEL _cmd, ...);
- *
- ********************************************************************/
- ENTRY _objc_msgSend_fpret
- UNWIND _objc_msgSend_fpret, NoFrame
- movl selector(%esp), %ecx
- movl self(%esp), %eax
- NilTest FPRET
- movl isa(%eax), %edx // class = self->isa
- CacheLookup FPRET, CALL // calls IMP on success
- NilTestReturnZero FPRET
-
- LCacheMiss:
- // class still in edx
- jmp __objc_msgSend_uncached
- END_ENTRY _objc_msgSend_fpret
- ENTRY _objc_msgLookup_fpret
- UNWIND _objc_msgLookup_fpret, NoFrame
- movl selector(%esp), %ecx
- movl self(%esp), %eax
- NilTest FPRET
- movl isa(%eax), %edx // class = self->isa
- CacheLookup FPRET, LOOKUP // returns IMP on success
- NilTestReturnIMP FPRET
-
- LCacheMiss:
- // class still in edx
- jmp __objc_msgLookup_uncached
- END_ENTRY _objc_msgLookup_fpret
-
- /********************************************************************
- *
- * void objc_msgSend_stret(void *st_addr, id self, SEL _cmd, ...);
- * IMP objc_msgLookup_stret(void *st_addr, id self, SEL _cmd, ...);
- *
- ********************************************************************/
- ENTRY _objc_msgSend_stret
- UNWIND _objc_msgSend_stret, NoFrame
- movl selector_stret(%esp), %ecx
- movl self_stret(%esp), %eax
- NilTest STRET
- movl isa(%eax), %edx // class = self->isa
- CacheLookup STRET, CALL // calls IMP on success
- NilTestReturnZero STRET
-
- LCacheMiss:
- // class still in edx
- jmp __objc_msgSend_stret_uncached
- END_ENTRY _objc_msgSend_stret
- ENTRY _objc_msgLookup_stret
- UNWIND _objc_msgLookup_stret, NoFrame
- movl selector_stret(%esp), %ecx
- movl self_stret(%esp), %eax
- NilTest STRET
- movl isa(%eax), %edx // class = self->isa
- CacheLookup STRET, LOOKUP // returns IMP on success
- NilTestReturnIMP STRET
-
- LCacheMiss:
- // class still in edx
- jmp __objc_msgLookup_stret_uncached
- END_ENTRY _objc_msgLookup_stret
-
- /********************************************************************
- *
- * void objc_msgSendSuper_stret(void *st_addr, struct objc_super *super, SEL _cmd, ...);
- *
- ********************************************************************/
- ENTRY _objc_msgSendSuper_stret
- UNWIND _objc_msgSendSuper_stret, NoFrame
- movl selector_stret(%esp), %ecx
- movl super_stret(%esp), %eax // struct objc_super
- movl class(%eax), %edx // struct objc_super->class
- movl receiver(%eax), %eax // struct objc_super->receiver
- movl %eax, super_stret(%esp) // replace super arg with receiver
- CacheLookup STRET, CALL // calls IMP on success
- LCacheMiss:
- // class still in edx
- jmp __objc_msgSend_stret_uncached
- END_ENTRY _objc_msgSendSuper_stret
- /********************************************************************
- *
- * void objc_msgSendSuper2_stret(void *st_addr, struct objc_super *super, SEL _cmd, ...);
- * IMP objc_msgLookupSuper2_stret(void *st_addr, struct objc_super *super, SEL _cmd, ...);
- *
- ********************************************************************/
- ENTRY _objc_msgSendSuper2_stret
- UNWIND _objc_msgSendSuper2_stret, NoFrame
- movl selector_stret(%esp), %ecx
- movl super_stret(%esp), %eax // struct objc_super
- movl class(%eax), %edx // struct objc_super->class
- movl receiver(%eax), %eax // struct objc_super->receiver
- movl %eax, super_stret(%esp) // replace super arg with receiver
- mov superclass(%edx), %edx // edx = objc_super->class->super_class
- CacheLookup STRET, CALL // calls IMP on success
- // cache miss: go search the method lists
- LCacheMiss:
- // class still in edx
- jmp __objc_msgSend_stret_uncached
- END_ENTRY _objc_msgSendSuper2_stret
- ENTRY _objc_msgLookupSuper2_stret
- UNWIND _objc_msgLookupSuper2_stret, NoFrame
- movl selector_stret(%esp), %ecx
- movl super_stret(%esp), %eax // struct objc_super
- movl class(%eax), %edx // struct objc_super->class
- movl receiver(%eax), %eax // struct objc_super->receiver
- movl %eax, super_stret(%esp) // replace super arg with receiver
- mov superclass(%edx), %edx // edx = objc_super->class->super_class
- CacheLookup STRET, LOOKUP // returns IMP on success
- // cache miss: go search the method lists
- LCacheMiss:
- // class still in edx
- jmp __objc_msgLookup_stret_uncached
- END_ENTRY _objc_msgLookupSuper2_stret
- /********************************************************************
- *
- * _objc_msgSend_uncached
- * _objc_msgSend_stret_uncached
- * _objc_msgLookup_uncached
- * _objc_msgLookup_stret_uncached
- *
- * The uncached method lookup.
- *
- ********************************************************************/
- STATIC_ENTRY __objc_msgSend_uncached
- UNWIND __objc_msgSend_uncached, FrameWithNoSaves
- // THIS IS NOT A CALLABLE C FUNCTION
- // Out-of-band edx is the searched class
- // edx is already the class to search
- MethodTableLookup NORMAL
- jmp *%eax // call imp
- END_ENTRY __objc_msgSend_uncached
-
- STATIC_ENTRY __objc_msgSend_stret_uncached
- UNWIND __objc_msgSend_stret_uncached, FrameWithNoSaves
- // THIS IS NOT A CALLABLE C FUNCTION
- // Out-of-band edx is the searched class
- // edx is already the class to search
- MethodTableLookup STRET
- jmp *%eax // call imp
- END_ENTRY __objc_msgSend_stret_uncached
- STATIC_ENTRY __objc_msgLookup_uncached
- UNWIND __objc_msgLookup_uncached, FrameWithNoSaves
- // THIS IS NOT A CALLABLE C FUNCTION
- // Out-of-band edx is the searched class
- // edx is already the class to search
- MethodTableLookup NORMAL // eax = IMP
- ret
- END_ENTRY __objc_msgLookup_uncached
-
- STATIC_ENTRY __objc_msgLookup_stret_uncached
- UNWIND __objc_msgLookup_stret_uncached, FrameWithNoSaves
- // THIS IS NOT A CALLABLE C FUNCTION
- // Out-of-band edx is the searched class
- // edx is already the class to search
- MethodTableLookup STRET // eax = IMP
- ret
- END_ENTRY __objc_msgLookup_stret_uncached
- /********************************************************************
- *
- * id _objc_msgForward(id self, SEL _cmd,...);
- *
- * _objc_msgForward and _objc_msgForward_stret are the externally-callable
- * functions returned by things like method_getImplementation().
- * _objc_msgForward_impcache is the function pointer actually stored in
- * method caches.
- *
- ********************************************************************/
- .non_lazy_symbol_pointer
- L_forward_handler:
- .indirect_symbol __objc_forward_handler
- .long 0
- L_forward_stret_handler:
- .indirect_symbol __objc_forward_stret_handler
- .long 0
- STATIC_ENTRY __objc_msgForward_impcache
- // Method cache version
-
- // THIS IS NOT A CALLABLE C FUNCTION
- // Out-of-band condition register is NE for stret, EQ otherwise.
- je __objc_msgForward_stret
- jmp __objc_msgForward
-
- END_ENTRY _objc_msgForward_impcache
-
- ENTRY __objc_msgForward
- // Non-struct return version
- call 1f
- 1: popl %edx
- movl L_forward_handler-1b(%edx), %edx
- jmp *(%edx)
- END_ENTRY __objc_msgForward
- ENTRY __objc_msgForward_stret
- // Struct return version
- call 1f
- 1: popl %edx
- movl L_forward_stret_handler-1b(%edx), %edx
- jmp *(%edx)
- END_ENTRY __objc_msgForward_stret
- ENTRY _objc_msgSend_debug
- jmp _objc_msgSend
- END_ENTRY _objc_msgSend_debug
- ENTRY _objc_msgSendSuper2_debug
- jmp _objc_msgSendSuper2
- END_ENTRY _objc_msgSendSuper2_debug
- ENTRY _objc_msgSend_stret_debug
- jmp _objc_msgSend_stret
- END_ENTRY _objc_msgSend_stret_debug
- ENTRY _objc_msgSendSuper2_stret_debug
- jmp _objc_msgSendSuper2_stret
- END_ENTRY _objc_msgSendSuper2_stret_debug
- ENTRY _objc_msgSend_fpret_debug
- jmp _objc_msgSend_fpret
- END_ENTRY _objc_msgSend_fpret_debug
- ENTRY _objc_msgSend_noarg
- jmp _objc_msgSend
- END_ENTRY _objc_msgSend_noarg
-
- ENTRY _method_invoke
- movl selector(%esp), %ecx
- movl method_name(%ecx), %edx
- movl method_imp(%ecx), %eax
- movl %edx, selector(%esp)
- jmp *%eax
-
- END_ENTRY _method_invoke
- ENTRY _method_invoke_stret
- movl selector_stret(%esp), %ecx
- movl method_name(%ecx), %edx
- movl method_imp(%ecx), %eax
- movl %edx, selector_stret(%esp)
- jmp *%eax
-
- END_ENTRY _method_invoke_stret
-
- .section __DATA,__objc_msg_break
- .long 0
- .long 0
- #endif
|