~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/x86/lib/thunk_64.S

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        CFI_ENDPROC
23
23
        .endm
24
24
 
25
 
        /* rdi: arg1 ... normal C conventions. rax is passed from C. */         
26
 
        .macro thunk_retrax name,func
27
 
        .globl \name
28
 
\name:  
29
 
        CFI_STARTPROC
30
 
        SAVE_ARGS
31
 
        call \func
32
 
        jmp  restore_norax
33
 
        CFI_ENDPROC
34
 
        .endm
35
 
        
36
 
 
37
 
        .section .sched.text, "ax"
38
 
#ifdef CONFIG_RWSEM_XCHGADD_ALGORITHM
39
 
        thunk rwsem_down_read_failed_thunk,rwsem_down_read_failed
40
 
        thunk rwsem_down_write_failed_thunk,rwsem_down_write_failed
41
 
        thunk rwsem_wake_thunk,rwsem_wake
42
 
        thunk rwsem_downgrade_thunk,rwsem_downgrade_wake
43
 
#endif  
44
 
        
45
25
#ifdef CONFIG_TRACE_IRQFLAGS
46
26
        /* put return address in rdi (arg1) */
47
27
        .macro thunk_ra name,func
72
52
        RESTORE_ARGS
73
53
        ret     
74
54
        CFI_ENDPROC
75
 
        
76
 
        CFI_STARTPROC
77
 
        SAVE_ARGS
78
 
restore_norax:  
79
 
        RESTORE_ARGS 1
80
 
        ret
81
 
        CFI_ENDPROC