45
45
DECLARE_LOCAL_FUNC get_enclave_base
46
46
lea_pic __ImageBase, %xax
47
47
ret
48
+ .cfi_endproc
49
+
48
50
DECLARE_LOCAL_FUNC get_enclave_state
49
51
lea_pic g_enclave_state, %xcx
50
52
xor %xax, %xax
51
53
movl (%xcx), %eax
52
54
ret
55
+ .cfi_endproc
56
+
53
57
DECLARE_LOCAL_FUNC set_enclave_state
54
58
lea_pic g_enclave_state, %xax
55
59
#ifdef LINUX32
56
60
mov SE_WORDSIZE(%esp ), %edi
57
61
#endif
58
62
movl %edi , (%xax)
59
63
ret
64
+ .cfi_endproc
60
65
61
66
DECLARE_LOCAL_FUNC lock_enclave
62
67
lea_pic g_enclave_state, %xdx
@@ -66,6 +71,7 @@ DECLARE_LOCAL_FUNC lock_enclave
66
71
mov $ENCLAVE_INIT_IN_PROGRESS, %ecx /* if (g_global_data.enclave_state == ENCLAVE_INIT_NOT_STARTED) */
67
72
lock cmpxchgl %ecx , (%xdx) /* g_global_data.enclave_state == ENCLAVE_INIT_IN_PROGRESS */
68
73
ret /* xax: the initial value of enclave state */
74
+ .cfi_endproc
69
75
70
76
/*
71
77
* ---------------------------------------------------------------------
@@ -77,6 +83,7 @@ DECLARE_LOCAL_FUNC lock_enclave
77
83
DECLARE_LOCAL_FUNC get_thread_data
78
84
READ_TD_DATA self_addr
79
85
ret
86
+ .cfi_endproc
80
87
81
88
/*
82
89
* ---------------------------------------------------------------------
@@ -88,6 +95,7 @@ DECLARE_LOCAL_FUNC get_thread_data
88
95
DECLARE_LOCAL_FUNC get_stack_guard
89
96
READ_TD_DATA stack_guard
90
97
ret
98
+ .cfi_endproc
91
99
92
100
/*
93
101
* ---------------------------------------------------------------------
@@ -113,7 +121,6 @@ DECLARE_GLOBAL_FUNC enclave_entry
113
121
* No need to use any register during the dispatch
114
122
* ----------------------------------------------------------------------
115
123
*/
116
- .cfi_startproc
117
124
118
125
/* Clear unused general registers */
119
126
xor %xdx, %xdx
@@ -446,6 +453,7 @@ DECLARE_LOCAL_FUNC do_ocall
446
453
cld /* DF = 0 */
447
454
448
455
ENCLU
456
+ .cfi_endproc
449
457
450
458
/*
451
459
* ------------------------------------------------------------------
@@ -454,7 +462,6 @@ DECLARE_LOCAL_FUNC do_ocall
454
462
* ------------------------------------------------------------------
455
463
*/
456
464
DECLARE_LOCAL_FUNC __morestack
457
- .cfi_startproc
458
465
push %xbp
459
466
.cfi_def_cfa_offset 2*SE_WORDSIZE
460
467
.cfi_offset xbp,-2*SE_WORDSIZE
@@ -518,6 +525,7 @@ DECLARE_GLOBAL_FUNC asm_oret
518
525
ret
519
526
/* should not come here */
520
527
ud2
528
+ .cfi_endproc
521
529
522
530
/*
523
531
* ------------------------------------------------------------------------
@@ -625,6 +633,7 @@ DECLARE_LOCAL_FUNC do_rdrand
625
633
movl %eax , (%xcx)
626
634
mov $1 , %xax
627
635
ret
636
+ .cfi_endproc
628
637
629
638
/*
630
639
* -------------------------------------------------------------------------
@@ -635,6 +644,7 @@ DECLARE_LOCAL_FUNC abort
635
644
lea_pic g_enclave_state, %xax
636
645
movl $ENCLAVE_CRASHED, (%xax)
637
646
ud2
647
+ .cfi_endproc
638
648
639
649
/*
640
650
* -------------------------------------------------------------------------
@@ -692,6 +702,7 @@ DECLARE_LOCAL_FUNC continue_execution
692
702
xchg %xax, %xsp
693
703
694
704
ret $(RED_ZONE_SIZE) /* pop xip and red zone (if any) */
705
+ .cfi_endproc
695
706
696
707
/*
697
708
* -------------------------------------------------------------------------
@@ -704,4 +715,5 @@ DECLARE_LOCAL_FUNC second_phase
704
715
mov $SE_EDECCSSA, %xax
705
716
enclu /* DECCSSA */
706
717
jmp *%xdx
718
+ .cfi_endproc
707
719
0 commit comments