mirror of git://sourceware.org/git/glibc.git
Update.
2003-04-13 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Add unwind info. * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise. * Makefile: Make sure all cancellation points are compiled with exception and asynchronous unwind tables.
This commit is contained in:
parent
7cc1894ca8
commit
08c765fa6e
|
|
@ -1,5 +1,14 @@
|
||||||
|
2003-04-13 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Add
|
||||||
|
unwind info.
|
||||||
|
* sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: Likewise.
|
||||||
|
|
||||||
2003-04-12 Ulrich Drepper <drepper@redhat.com>
|
2003-04-12 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* Makefile: Make sure all cancellation points are compiled with
|
||||||
|
exception and asynchronous unwind tables.
|
||||||
|
|
||||||
* sysdeps/x86_64/tls.h (THREAD_SETMEM): Word around compiler bug
|
* sysdeps/x86_64/tls.h (THREAD_SETMEM): Word around compiler bug
|
||||||
which mishandles loading of global object addresses in PIC.
|
which mishandles loading of global object addresses in PIC.
|
||||||
(THREAD_SETMEM_NC): Likewise.
|
(THREAD_SETMEM_NC): Likewise.
|
||||||
|
|
|
||||||
|
|
@ -125,6 +125,11 @@ libpthread-nonshared = pthread_atfork
|
||||||
CFLAGS-pthread_atfork.c = -DNOT_IN_libc
|
CFLAGS-pthread_atfork.c = -DNOT_IN_libc
|
||||||
CFLAGS-init.c = -fexceptions -fasynchronous-unwind-tables
|
CFLAGS-init.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
CFLAGS-unwind.c = -fexceptions
|
CFLAGS-unwind.c = -fexceptions
|
||||||
|
CFLAGS-pthread_testcancel.c = -fexceptions
|
||||||
|
CFLAGS-pthread_join.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
|
CFLAGS-pthread_timedjoin.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
|
CFLAGS-pthread_cond_wait.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
|
CFLAGS-pthread_cond_timedwait.c = -fexceptions -fasynchronous-unwind-tables
|
||||||
CFLAGS-cancellation.c = -fasynchronous-unwind-tables
|
CFLAGS-cancellation.c = -fasynchronous-unwind-tables
|
||||||
CFLAGS-libc-cancellation.c = -fasynchronous-unwind-tables
|
CFLAGS-libc-cancellation.c = -fasynchronous-unwind-tables
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,11 +42,15 @@
|
||||||
.type __pthread_cond_timedwait, @function
|
.type __pthread_cond_timedwait, @function
|
||||||
.align 16
|
.align 16
|
||||||
__pthread_cond_timedwait:
|
__pthread_cond_timedwait:
|
||||||
|
.LSTARTCODE:
|
||||||
pushl %ebp
|
pushl %ebp
|
||||||
|
.Lpush_ebp:
|
||||||
pushl %edi
|
pushl %edi
|
||||||
|
.Lpush_edi:
|
||||||
pushl %esi
|
pushl %esi
|
||||||
|
.Lpush_esi:
|
||||||
pushl %ebx
|
pushl %ebx
|
||||||
|
.Lpush_ebx:
|
||||||
|
|
||||||
movl 20(%esp), %ebx
|
movl 20(%esp), %ebx
|
||||||
movl 28(%esp), %ebp
|
movl 28(%esp), %ebp
|
||||||
|
|
@ -64,6 +68,7 @@ __pthread_cond_timedwait:
|
||||||
|
|
||||||
/* Unlock the mutex. */
|
/* Unlock the mutex. */
|
||||||
2: pushl 24(%esp)
|
2: pushl 24(%esp)
|
||||||
|
.Lpush4:
|
||||||
call __pthread_mutex_unlock_internal
|
call __pthread_mutex_unlock_internal
|
||||||
|
|
||||||
testl %eax, %eax
|
testl %eax, %eax
|
||||||
|
|
@ -81,6 +86,7 @@ __pthread_cond_timedwait:
|
||||||
leal __condvar_cleanup, %eax
|
leal __condvar_cleanup, %eax
|
||||||
#endif
|
#endif
|
||||||
subl $40, %esp
|
subl $40, %esp
|
||||||
|
.Lsubl:
|
||||||
leal 28(%esp), %edx
|
leal 28(%esp), %edx
|
||||||
movl %esp, 8(%esp)
|
movl %esp, 8(%esp)
|
||||||
movl %eax, 4(%esp)
|
movl %eax, 4(%esp)
|
||||||
|
|
@ -226,20 +232,26 @@ __pthread_cond_timedwait:
|
||||||
/* Trick ahead: (%esp) contains the address of the mutex. */
|
/* Trick ahead: (%esp) contains the address of the mutex. */
|
||||||
call __pthread_mutex_lock_internal
|
call __pthread_mutex_lock_internal
|
||||||
addl $44, %esp
|
addl $44, %esp
|
||||||
|
.Laddl:
|
||||||
|
|
||||||
/* We return the result of the mutex_lock operation if it failed. */
|
/* We return the result of the mutex_lock operation if it failed. */
|
||||||
testl %eax, %eax
|
testl %eax, %eax
|
||||||
cmovel %esi, %eax
|
cmovel %esi, %eax
|
||||||
|
|
||||||
18: popl %ebx
|
18: popl %ebx
|
||||||
|
.Lpop_ebx:
|
||||||
popl %esi
|
popl %esi
|
||||||
|
.Lpop_esi:
|
||||||
popl %edi
|
popl %edi
|
||||||
|
.Lpop_edi:
|
||||||
popl %ebp
|
popl %ebp
|
||||||
|
.Lpop_ebp:
|
||||||
|
|
||||||
ret
|
ret
|
||||||
|
|
||||||
/* Initial locking failed. */
|
/* Initial locking failed. */
|
||||||
1:
|
1:
|
||||||
|
.LSbl1:
|
||||||
#if cond_lock == 0
|
#if cond_lock == 0
|
||||||
movl %ebx, %ecx
|
movl %ebx, %ecx
|
||||||
#else
|
#else
|
||||||
|
|
@ -250,6 +262,7 @@ __pthread_cond_timedwait:
|
||||||
|
|
||||||
/* Unlock in loop requires waekup. */
|
/* Unlock in loop requires waekup. */
|
||||||
3:
|
3:
|
||||||
|
.LSbl2:
|
||||||
#if cond_lock == 0
|
#if cond_lock == 0
|
||||||
movl %ebx, %eax
|
movl %ebx, %eax
|
||||||
#else
|
#else
|
||||||
|
|
@ -279,7 +292,9 @@ __pthread_cond_timedwait:
|
||||||
jmp 11b
|
jmp 11b
|
||||||
|
|
||||||
/* The initial unlocking of the mutex failed. */
|
/* The initial unlocking of the mutex failed. */
|
||||||
16: movl %eax, (%esp)
|
16:
|
||||||
|
.LSbl3:
|
||||||
|
movl %eax, (%esp)
|
||||||
LOCK
|
LOCK
|
||||||
#if cond_lock == 0
|
#if cond_lock == 0
|
||||||
subl $1, (%ebx)
|
subl $1, (%ebx)
|
||||||
|
|
@ -300,6 +315,7 @@ __pthread_cond_timedwait:
|
||||||
|
|
||||||
#if defined __NR_clock_gettime && !defined __ASSUME_POSIX_TIMERS
|
#if defined __NR_clock_gettime && !defined __ASSUME_POSIX_TIMERS
|
||||||
/* clock_gettime not available. */
|
/* clock_gettime not available. */
|
||||||
|
.LSbl4:
|
||||||
19: leal 12(%esp), %ebx
|
19: leal 12(%esp), %ebx
|
||||||
xorl %ecx, %ecx
|
xorl %ecx, %ecx
|
||||||
movl $SYS_gettimeofday, %eax
|
movl $SYS_gettimeofday, %eax
|
||||||
|
|
@ -321,6 +337,110 @@ __pthread_cond_timedwait:
|
||||||
js 13b
|
js 13b
|
||||||
jmp 21b
|
jmp 21b
|
||||||
#endif
|
#endif
|
||||||
|
.LENDCODE:
|
||||||
.size __pthread_cond_timedwait, .-__pthread_cond_timedwait
|
.size __pthread_cond_timedwait, .-__pthread_cond_timedwait
|
||||||
versioned_symbol (libpthread, __pthread_cond_timedwait, pthread_cond_timedwait,
|
versioned_symbol (libpthread, __pthread_cond_timedwait, pthread_cond_timedwait,
|
||||||
GLIBC_2_3_2)
|
GLIBC_2_3_2)
|
||||||
|
|
||||||
|
|
||||||
|
.section .eh_frame,"a",@progbits
|
||||||
|
.LSTARTFRAME:
|
||||||
|
.long L(ENDCIE)-L(STARTCIE) # Length of the CIE.
|
||||||
|
.LSTARTCIE:
|
||||||
|
.long 0 # CIE ID.
|
||||||
|
.byte 1 # Version number.
|
||||||
|
#ifdef SHARED
|
||||||
|
.string "zR" # NUL-terminated augmentation string.
|
||||||
|
#else
|
||||||
|
.ascii "\0" # NUL-terminated augmentation string.
|
||||||
|
#endif
|
||||||
|
.uleb128 1 # Code alignment factor.
|
||||||
|
.sleb128 -4 # Data alignment factor.
|
||||||
|
.byte 8 # Return address register column.
|
||||||
|
#ifdef SHARED
|
||||||
|
.uleb128 1 # Augmentation value length.
|
||||||
|
.byte 0x1b # Encoding: DW_EH_PE_pcrel
|
||||||
|
# + DW_EH_PE_sdata4.
|
||||||
|
#endif
|
||||||
|
.byte 0x0c # DW_CFA_def_cfa
|
||||||
|
.uleb128 4
|
||||||
|
.uleb128 4
|
||||||
|
.byte 0x88 # DW_CFA_offset, column 0x8
|
||||||
|
.uleb128 1
|
||||||
|
.align 4
|
||||||
|
.LENDCIE:
|
||||||
|
|
||||||
|
.long .LENDFDE-.LSTARTFDE # Length of the FDE.
|
||||||
|
.LSTARTFDE:
|
||||||
|
.long .LSTARTFDE-.LSTARTFRAME # CIE pointer.
|
||||||
|
#ifdef SHARED
|
||||||
|
.long .LSTARTCODE-. # PC-relative start address of the code
|
||||||
|
#else
|
||||||
|
.long .LSTARTCODE # Start address of the code.
|
||||||
|
#endif
|
||||||
|
.long .LENDCODE-.LSTARTCODE # Length of the code.
|
||||||
|
.uleb128 0 # No augmentation data.
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_ebp-.LSTARTCODE
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 8
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_edi-.Lpush_ebp
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 12
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_esi-.Lpush_edi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 16
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_ebx-.Lpush_esi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 20
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush4-.Lpush_ebx
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 24
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lsubl-.Lpush4
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 64
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Laddl-.Lsubl
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 20
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_ebx-.Laddl
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 16
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_esi-.Lpop_ebx
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 12
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_edi-.Lpop_esi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 8
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_ebp-.Lpop_edi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 4
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl1-.Lpop_edi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 20
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl2-.LSbl1
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 64
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl3-.LSbl2
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 24
|
||||||
|
#if defined __NR_clock_gettime && !defined __ASSUME_POSIX_TIMERS
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl4-.LSbl3
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 64
|
||||||
|
#endif
|
||||||
|
.align 4
|
||||||
|
.LENDFDE:
|
||||||
|
|
|
||||||
|
|
@ -102,10 +102,14 @@ __condvar_cleanup:
|
||||||
.type __pthread_cond_wait, @function
|
.type __pthread_cond_wait, @function
|
||||||
.align 16
|
.align 16
|
||||||
__pthread_cond_wait:
|
__pthread_cond_wait:
|
||||||
|
.LSTARTCODE:
|
||||||
|
|
||||||
pushl %edi
|
pushl %edi
|
||||||
|
.Lpush_edi:
|
||||||
pushl %esi
|
pushl %esi
|
||||||
|
.Lpush_esi:
|
||||||
pushl %ebx
|
pushl %ebx
|
||||||
|
.Lpush_ebx:
|
||||||
|
|
||||||
xorl %esi, %esi
|
xorl %esi, %esi
|
||||||
movl 16(%esp), %ebx
|
movl 16(%esp), %ebx
|
||||||
|
|
@ -123,6 +127,7 @@ __pthread_cond_wait:
|
||||||
|
|
||||||
/* Unlock the mutex. */
|
/* Unlock the mutex. */
|
||||||
2: pushl 20(%esp)
|
2: pushl 20(%esp)
|
||||||
|
.Lpush4:
|
||||||
call __pthread_mutex_unlock_internal
|
call __pthread_mutex_unlock_internal
|
||||||
|
|
||||||
testl %eax, %eax
|
testl %eax, %eax
|
||||||
|
|
@ -140,6 +145,7 @@ __pthread_cond_wait:
|
||||||
leal __condvar_cleanup, %eax
|
leal __condvar_cleanup, %eax
|
||||||
#endif
|
#endif
|
||||||
subl $32, %esp
|
subl $32, %esp
|
||||||
|
.Lsubl:
|
||||||
leal 20(%esp), %edx
|
leal 20(%esp), %edx
|
||||||
movl %esp, 8(%esp)
|
movl %esp, 8(%esp)
|
||||||
movl %eax, 4(%esp)
|
movl %eax, 4(%esp)
|
||||||
|
|
@ -225,16 +231,21 @@ __pthread_cond_wait:
|
||||||
/* Trick ahead: (%esp) contains the address of the mutex. */
|
/* Trick ahead: (%esp) contains the address of the mutex. */
|
||||||
call __pthread_mutex_lock_internal
|
call __pthread_mutex_lock_internal
|
||||||
addl $36, %esp
|
addl $36, %esp
|
||||||
|
.Laddl:
|
||||||
|
|
||||||
14: popl %ebx
|
14: popl %ebx
|
||||||
|
.Lpop_ebx:
|
||||||
popl %esi
|
popl %esi
|
||||||
|
.Lpop_esi:
|
||||||
popl %edi
|
popl %edi
|
||||||
|
.Lpop_edi:
|
||||||
|
|
||||||
/* We return the result of the mutex_lock operation. */
|
/* We return the result of the mutex_lock operation. */
|
||||||
ret
|
ret
|
||||||
|
|
||||||
/* Initial locking failed. */
|
/* Initial locking failed. */
|
||||||
1:
|
1:
|
||||||
|
.LSbl1:
|
||||||
#if cond_lock == 0
|
#if cond_lock == 0
|
||||||
movl %ebx, %ecx
|
movl %ebx, %ecx
|
||||||
#else
|
#else
|
||||||
|
|
@ -245,6 +256,7 @@ __pthread_cond_wait:
|
||||||
|
|
||||||
/* Unlock in loop requires waekup. */
|
/* Unlock in loop requires waekup. */
|
||||||
3:
|
3:
|
||||||
|
.LSbl2:
|
||||||
#if cond_lock == 0
|
#if cond_lock == 0
|
||||||
movl %ebx, %eax
|
movl %ebx, %eax
|
||||||
#else
|
#else
|
||||||
|
|
@ -274,7 +286,9 @@ __pthread_cond_wait:
|
||||||
jmp 11b
|
jmp 11b
|
||||||
|
|
||||||
/* The initial unlocking of the mutex failed. */
|
/* The initial unlocking of the mutex failed. */
|
||||||
12: movl %eax, (%esp)
|
12:
|
||||||
|
.LSbl3:
|
||||||
|
movl %eax, (%esp)
|
||||||
LOCK
|
LOCK
|
||||||
#if cond_lock == 0
|
#if cond_lock == 0
|
||||||
subl $1, (%ebx)
|
subl $1, (%ebx)
|
||||||
|
|
@ -292,11 +306,101 @@ __pthread_cond_wait:
|
||||||
|
|
||||||
13: popl %eax
|
13: popl %eax
|
||||||
jmp 14b
|
jmp 14b
|
||||||
|
.LENDCODE:
|
||||||
.size __pthread_cond_wait, .-__pthread_cond_wait
|
.size __pthread_cond_wait, .-__pthread_cond_wait
|
||||||
versioned_symbol (libpthread, __pthread_cond_wait, pthread_cond_wait,
|
versioned_symbol (libpthread, __pthread_cond_wait, pthread_cond_wait,
|
||||||
GLIBC_2_3_2)
|
GLIBC_2_3_2)
|
||||||
|
|
||||||
|
|
||||||
|
.section .eh_frame,"a",@progbits
|
||||||
|
.LSTARTFRAME:
|
||||||
|
.long L(ENDCIE)-L(STARTCIE) # Length of the CIE.
|
||||||
|
.LSTARTCIE:
|
||||||
|
.long 0 # CIE ID.
|
||||||
|
.byte 1 # Version number.
|
||||||
|
#ifdef SHARED
|
||||||
|
.string "zR" # NUL-terminated augmentation string.
|
||||||
|
#else
|
||||||
|
.ascii "\0" # NUL-terminated augmentation string.
|
||||||
|
#endif
|
||||||
|
.uleb128 1 # Code alignment factor.
|
||||||
|
.sleb128 -4 # Data alignment factor.
|
||||||
|
.byte 8 # Return address register column.
|
||||||
|
#ifdef SHARED
|
||||||
|
.uleb128 1 # Augmentation value length.
|
||||||
|
.byte 0x1b # Encoding: DW_EH_PE_pcrel
|
||||||
|
# + DW_EH_PE_sdata4.
|
||||||
|
#endif
|
||||||
|
.byte 0x0c # DW_CFA_def_cfa
|
||||||
|
.uleb128 4
|
||||||
|
.uleb128 4
|
||||||
|
.byte 0x88 # DW_CFA_offset, column 0x8
|
||||||
|
.uleb128 1
|
||||||
|
.align 4
|
||||||
|
.LENDCIE:
|
||||||
|
|
||||||
|
.long .LENDFDE-.LSTARTFDE # Length of the FDE.
|
||||||
|
.LSTARTFDE:
|
||||||
|
.long .LSTARTFDE-.LSTARTFRAME # CIE pointer.
|
||||||
|
#ifdef SHARED
|
||||||
|
.long .LSTARTCODE-. # PC-relative start address of the code
|
||||||
|
#else
|
||||||
|
.long .LSTARTCODE # Start address of the code.
|
||||||
|
#endif
|
||||||
|
.long .LENDCODE-.LSTARTCODE # Length of the code.
|
||||||
|
.uleb128 0 # No augmentation data.
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_edi-.LSTARTCODE
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 8
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_esi-.Lpush_edi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 12
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush_ebx-.Lpush_esi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 16
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpush4-.Lpush_ebx
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 20
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lsubl-.Lpush4
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 52
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Laddl-.Lsubl
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 16
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_ebx-.Laddl
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 12
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_esi-.Lpop_ebx
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 8
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .Lpop_edi-.Lpop_esi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 4
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl1-.Lpop_edi
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 16
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl2-.LSbl1
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 52
|
||||||
|
.byte 4 # DW_CFA_advance_loc4
|
||||||
|
.long .LSbl3-.LSbl2
|
||||||
|
.byte 14 # DW_CFA_def_cfa_offset
|
||||||
|
.uleb128 20
|
||||||
|
.align 4
|
||||||
|
.LENDFDE:
|
||||||
|
|
||||||
|
|
||||||
#ifdef PIC
|
#ifdef PIC
|
||||||
.section .gnu.linkonce.t.__i686.get_pc_thunk.cx,"ax",@progbits
|
.section .gnu.linkonce.t.__i686.get_pc_thunk.cx,"ax",@progbits
|
||||||
.globl __i686.get_pc_thunk.cx
|
.globl __i686.get_pc_thunk.cx
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue