summaryrefslogtreecommitdiff
path: root/UnixPkg/Sec/X64/Gasket.S
blob: f8a2e5b87b1302e1155591bd58e957776684437c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
#------------------------------------------------------------------------------
#
# Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution.  The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#
# Abstract:
#
# EFI uses a simplified version of the MSFT calling convention, and every one else,
# Mac OS X, BSD, Linux, uses a different one. We can skip dealing with floating point
# other than making sure non volatile registers are preserved. 
#
#   Register for arguments
#   MSFT    Every One Else  
#   ----    --------------
#   rcx     rdi 
#   rdx     rsi
#   r8      rdx
#   r9      rcx
#           r8 
#           r9
#
#   Callee saved registers
#   MSFT    Every One Else  
#   ----    --------------
#   rbx     rbx
#   rbp     rbp
#   r12-r15 r12-r15
#   rsi
#   rdi
#   xmm6-xmm15
#
# cat t.c
##include <stdio.h>
##include <sys/stat.h>
#
#int chmod (int fd, mode_t len){
#  long m = (long)fd;
#}
#
#int Gasketchmod (int fd, mode_t len){
#  return chmod (fd, len);
#}
#
# gcc -arch x86_64  -S t.c
# cat t.s
# this gives you the starting point.... 
#
#
#------------------------------------------------------------------------------

#include <ProcessorBind.h>

  .text
  
#
#
# EFI_UNIX_THUNK_PROTOCOL that gets exported
#
#
  
#------------------------------------------------------------------------------
# VOID GasketmsSleep (unsigned long Milliseconds);
#------------------------------------------------------------------------------    
.globl _GasketmsSleep
_GasketmsSleep:
	pushl	%rbp
	movq  %rsp, %rbp     # does leave use rbp or rsp???
  subq  $148, %rsp
  
  # save registers the OS X will think are volatile
  movaps  %xmm6,    -8(%rbp)
  movaps  %xmm7,   -24(%rbp)
  movaps  %xmm8,   -40(%rbp)
  movaps  %xmm9,   -56(%rbp)
  movaps  %xmm10,  -72(%rbp)
  movaps  %xmm11,  -88(%rbp)
  movaps  %xmm12, -104(%rbp)
  movaps  %xmm13, -120(%rbp)
  movaps  %xmm14, -136(%rbp)
  movaps  %xmm15, -152(%rbp)
  movq    %rsi,   -160(%rbp)
  movq    %rdi,   -168(%rbp)
  
  movq  %rcx, %rdi
	call	_msSleep

  movaps   -8(%rbp), %xmm6,  
  movaps  -24(%rbp), %xmm7  
  movaps  -40(%rbp), %xmm8  
  movaps  -56(%rbp), %xmm9 
  movaps  -72(%rbp), %xmm10 
  movaps  -88(%rbp), %xmm11 
  movaps -104(%rbp), %xmm12 
  movaps -120(%rbp), %xmm13 
  movaps -136(%rbp), %xmm14 
  movaps -152(%rbp), %xmm15 
  movq   -160(%rbp), %rsi   
  movq   -168(%rbp), %rdi   
	
  leave
	ret


#------------------------------------------------------------------------------
# void Gasketexit (int status);
#------------------------------------------------------------------------------
.globl  _Gasketexit
_Gasketexit:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_exit
	leave
	ret


#------------------------------------------------------------------------------
# void GasketSetTimer (UINT64 PeriodMs, VOID (*CallBack)(UINT64 DeltaMs));
#------------------------------------------------------------------------------
.globl  _GasketSetTimer
_GasketSetTimer:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, -16(%ebp)
	movl	12(%ebp), %eax
	movl	%eax, -12(%ebp)
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	-16(%ebp), %eax
	movl	-12(%ebp), %edx
	movl	%eax, (%esp)
	movl	%edx, 4(%esp)
	call	_SetTimer
	leave
	ret



#------------------------------------------------------------------------------
# void GasketGetLocalTime (EFI_TIME *Time);
#------------------------------------------------------------------------------
.globl  _GasketGetLocalTime
_GasketGetLocalTime:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_GetLocalTime
	leave
	ret



#------------------------------------------------------------------------------
# struct tm *Gasketgmtime (const time_t *clock);
#------------------------------------------------------------------------------
.globl  _Gasketgmtime
_Gasketgmtime:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_gmtime
	leave
	ret




#------------------------------------------------------------------------------
# long GasketGetTimeZone(void);
#------------------------------------------------------------------------------
.globl _GasketGetTimeZone
_GasketGetTimeZone:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$24, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	call	_GetTimeZone
	leave
	ret


#------------------------------------------------------------------------------
# int GasketGetDayLight (void);
#------------------------------------------------------------------------------
.globl  _GasketGetDayLight
_GasketGetDayLight:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$24, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	call	_GetDayLight
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketpoll (struct pollfd *pfd, int nfds, int timeout);
#------------------------------------------------------------------------------
.globl  _Gasketpoll
_Gasketpoll:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_poll
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketread (int fd, void *buf, int count);
#------------------------------------------------------------------------------
.globl  _Gasketread
_Gasketread:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_read
	leave
	ret


#------------------------------------------------------------------------------
# int Gasketwrite (int fd, const void *buf, int count);
#------------------------------------------------------------------------------
.globl  _Gasketwrite
_Gasketwrite:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_write
	leave
	ret



#------------------------------------------------------------------------------
# char *Gasketgetenv (const char *name);
#------------------------------------------------------------------------------
.globl  _Gasketgetenv
_Gasketgetenv:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_getenv
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketopen (const char *name, int flags, int mode);
#------------------------------------------------------------------------------
.globl  _Gasketopen
_Gasketopen:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_open
	leave
	ret



#------------------------------------------------------------------------------
# off_t Gasketlseek (int fd, off_t off, int whence);
#------------------------------------------------------------------------------
.globl  _Gasketlseek
_Gasketlseek:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, -16(%ebp)
	movl	16(%ebp), %eax
	movl	%eax, -12(%ebp)
	movl	20(%ebp), %eax
	movl	%eax, 12(%esp)
	movl	-16(%ebp), %eax
	movl	-12(%ebp), %edx
	movl	%eax, 4(%esp)
	movl	%edx, 8(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_lseek
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketftruncate (int fd, long int len);
#------------------------------------------------------------------------------
.globl  _Gasketftruncate
_Gasketftruncate:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_truncate
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketclose (int fd);
#------------------------------------------------------------------------------
.globl  _Gasketclose
_Gasketclose:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_close
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketmkdir (const char *pathname, mode_t mode);
#------------------------------------------------------------------------------
.globl  _Gasketmkdir
_Gasketmkdir:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_mkdir
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketrmdir (const char *pathname);
#------------------------------------------------------------------------------
.globl  _Gasketrmdir
_Gasketrmdir:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_rmdir
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketunlink (const char *pathname);
#------------------------------------------------------------------------------
.globl  _Gasketunlink
_Gasketunlink:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_unlink
	leave
	ret



#------------------------------------------------------------------------------
# int GasketGetErrno (void);
#------------------------------------------------------------------------------
.globl  _GasketGetErrno
_GasketGetErrno:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$24, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	call	_GetErrno
	leave
	ret



#------------------------------------------------------------------------------
# DIR *Gasketopendir (const char *pathname);
#------------------------------------------------------------------------------
.globl  _Gasketopendir
_Gasketopendir:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_opendir
	leave
	ret



#------------------------------------------------------------------------------
# void *Gasketrewinddir (DIR *dir);
#------------------------------------------------------------------------------
.globl  _Gasketrewinddir
_Gasketrewinddir:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_rewinddir
	leave
	ret



#------------------------------------------------------------------------------
# struct dirent *Gasketreaddir (DIR *dir);
#------------------------------------------------------------------------------
.globl  _Gasketreaddir
_Gasketreaddir:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_readdir
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketclosedir (DIR *dir);
#------------------------------------------------------------------------------
.globl  _Gasketclosedir
_Gasketclosedir:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_closedir
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketstat (const char *path, struct stat *buf);
#------------------------------------------------------------------------------
.globl  _Gasketstat
_Gasketstat:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_stat
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketstatfs (const char *path, struct statfs *buf);
#------------------------------------------------------------------------------
.globl  _Gasketstatfs
_Gasketstatfs:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_statfs
	leave
	ret




#------------------------------------------------------------------------------
# int Gasketrename (const char *oldpath, const char *newpath);
#------------------------------------------------------------------------------
.globl  _Gasketrename
_Gasketrename:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_rename
	leave
	ret




#------------------------------------------------------------------------------
# time_t Gasketmktime (struct tm *tm);
#------------------------------------------------------------------------------
.globl  _Gasketmktime
_Gasketmktime:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_mktime
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketfsync (int fd);
#------------------------------------------------------------------------------
.globl  _Gasketfsync
_Gasketfsync:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_fsync
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketchmod (const char *path, mode_t mode);
#------------------------------------------------------------------------------
.globl  _Gasketchmod
_Gasketchmod:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$56, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movw	%ax, -12(%ebp)
	movzwl	-12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_chmod
	leave
	ret

#------------------------------------------------------------------------------
# int Gasketutime (const char *filename, const struct utimbuf *buf);
#------------------------------------------------------------------------------
.globl  _Gasketutime
_Gasketutime:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_rename
	leave
	ret



#------------------------------------------------------------------------------
# int Gaskettcflush (int fildes, int queue_selector);
#------------------------------------------------------------------------------
.globl  _Gaskettcflush
_Gaskettcflush:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_rename
	leave
	ret


#------------------------------------------------------------------------------
# EFI_STATUS UgaCreate (struct _EFI_UNIX_UGA_IO_PROTOCOL **UgaIo, CONST CHAR16 *Title);
#------------------------------------------------------------------------------
.globl _GasketUgaCreate
_GasketUgaCreate:
  pushl   %ebp
  movl    %esp, %ebp
  subl    $40, %esp         #sub extra 0x10 from the stack for the AND
  and     $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
  movl    12(%ebp), %eax
  movl    %eax, 4(%esp)
  movl    8(%ebp), %eax
  movl    %eax, (%esp)
  call    _UgaCreate
  leave
  ret


#------------------------------------------------------------------------------
# void Gasketperror (__const char *__s);
#------------------------------------------------------------------------------
.globl  _Gasketperror
_Gasketperror:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_perror
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketioctl (int fd, unsigned long int __request, ...);
#
# ... is really int or pointer to structure, so we can treat like an int
#
#------------------------------------------------------------------------------
.globl  _Gasketioctl
_Gasketioctl:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_ioctl
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketfcntl (int __fd, int __cmd, ...);
#
# ... is really int or pointer to structure, so we can treat like an int
#
#------------------------------------------------------------------------------
.globl  _Gasketfcntl
_Gasketfcntl:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_fcntl
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketcfsetispeed (struct termios *__termios_p, speed_t __speed);
#------------------------------------------------------------------------------
.globl  _Gasketcfsetispeed
_Gasketcfsetispeed:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp         # sub extra 0x10 from the stack for the AND
	and   $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_cfsetispeed
	leave
	ret



#------------------------------------------------------------------------------
# int Gasketcfsetospeed (struct termios *__termios_p, speed_t __speed);
#------------------------------------------------------------------------------
.globl  _Gasketcfsetospeed
_Gasketcfsetospeed:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp         # sub extra 0x10 from the stack for the AND
	and   $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_cfsetospeed
	leave
	ret



#------------------------------------------------------------------------------
# int Gaskettcgetattr (int __fd, struct termios *__termios_p); 
#------------------------------------------------------------------------------
.globl  _Gaskettcgetattr
_Gaskettcgetattr:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp         # sub extra 0x10 from the stack for the AND
	and   $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_tcgetattr
	leave
	ret



#------------------------------------------------------------------------------
# int Gaskettcsetattr (int __fd, int __optional_actions, __const struct termios *__termios_p);
#------------------------------------------------------------------------------
.globl  _Gaskettcsetattr
_Gaskettcsetattr:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_tcsetattr
	leave
	ret

#------------------------------------------------------------------------------
# int Gasketsigaction (int sig, const struct sigaction *act, struct sigaction *oact);
#------------------------------------------------------------------------------
.globl  _Gasketsigaction
_Gasketsigaction:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_sigaction
	leave
	ret


#------------------------------------------------------------------------------
# int Gasketsetcontext (const ucontext_t *ucp);
#------------------------------------------------------------------------------
.globl  _Gasketsetcontext
_Gasketsetcontext:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_setcontext
	leave
	ret

#------------------------------------------------------------------------------
# int Gasketgetcontext (ucontext_t *ucp);
#------------------------------------------------------------------------------
.globl  _Gasketgetcontext
_Gasketgetcontext:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_getcontext
	leave
	ret

#------------------------------------------------------------------------------
# int Gasketsigemptyset (sigset_t *set);
#------------------------------------------------------------------------------
.globl  _Gasketsigemptyset
_Gasketsigemptyset:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp           # sub extra 0x10 from the stack for the AND
	and   $-16, %esp          # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_sigemptyset
	leave
	ret


#------------------------------------------------------------------------------
# int Gasketsigaltstack (const stack_t *ss, stack_t *oss);
#------------------------------------------------------------------------------
.globl  _Gasketsigaltstack
_Gasketsigaltstack:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp         # sub extra 0x10 from the stack for the AND
	and   $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_sigaltstack
	leave
	ret

#
#
# UGA Functions that get exported
#
#

#------------------------------------------------------------------------------
# EFI_STATUS GasketUgaClose (EFI_UNIX_UGA_IO_PROTOCOL *UgaIo);
#------------------------------------------------------------------------------    
.globl _GasketUgaClose
_GasketUgaClose:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp        # sub extra 0x10 from the stack for the AND
	and   $-16, %esp       # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
  movl	%eax, (%esp)
	call	_UgaClose
	leave
	ret

#------------------------------------------------------------------------------
# EFI_STATUS GasketUgaSize (EFI_UNIX_UGA_IO_PROTOCOL *UgaIo, UINT32 Width, UINT32 Height);
#------------------------------------------------------------------------------
.globl _GasketUgaSize
_GasketUgaSize:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp
	and   $-16, %esp       # stack needs to end in 0xFFFFFFF0 before call
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_UgaSize
	leave
	ret


#------------------------------------------------------------------------------
# EFI_STATUS GasketUgaCheckKey (EFI_UNIX_UGA_IO_PROTOCOL *UgaIo);
#------------------------------------------------------------------------------    
.globl _GasketUgaCheckKey
_GasketUgaCheckKey:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$40, %esp        # sub extra 0x10 from the stack for the AND
	and   $-16, %esp       # stack needs to end in 0xFFFFFFF0 before call
	movl	8(%ebp), %eax
  movl	%eax, (%esp)
	call	_UgaCheckKey
	leave
	ret

#------------------------------------------------------------------------------
# EFI_STATUS GasketUgaGetKey (EFI_UNIX_UGA_IO_PROTOCOL *UgaIo, EFI_INPUT_KEY *key);
#------------------------------------------------------------------------------
.globl _GasketUgaGetKey
_GasketUgaGetKey:
  pushl   %ebp
  movl    %esp, %ebp
  subl    $40, %esp         #sub extra 0x10 from the stack for the AND
  and     $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
  movl    12(%ebp), %eax
  movl    %eax, 4(%esp)
  movl    8(%ebp), %eax
  movl    %eax, (%esp)
  call    _UgaGetKey
  leave
  ret


#------------------------------------------------------------------------------
# EFI_STATUS
# GasketUgaBlt(
#    EFI_UNIX_UGA_IO_PROTOCOL *UgaIo,
#    IN  EFI_UGA_PIXEL                           *BltBuffer OPTIONAL,
#    IN  EFI_UGA_BLT_OPERATION                   BltOperation,
#    IN  UINTN                                   SourceX,
#    IN  UINTN                                   SourceY,
#    IN  UINTN                                   DestinationX,
#    IN  UINTN                                   DestinationY,
#    IN  UINTN                                   Width,
#    IN  UINTN                                   Height,
#    IN  UINTN                                   Delta OPTIONAL
#    );
#------------------------------------------------------------------------------
.globl _GasketUgaBlt
_GasketUgaBlt:
	pushl	%ebp
	movl	%esp, %ebp
	subl	$88, %esp         #sub extra 0x10 from the stack for the AND
  and   $-16, %esp        # stack needs to end in 0xFFFFFFF0 before call
	movl	$0, -12(%ebp)
	movl	44(%ebp), %eax
	movl	%eax, 36(%esp)
	movl	40(%ebp), %eax
	movl	%eax, 32(%esp)
	movl	36(%ebp), %eax
	movl	%eax, 28(%esp)
	movl	32(%ebp), %eax
	movl	%eax, 24(%esp)
	movl	28(%ebp), %eax
	movl	%eax, 20(%esp)
	movl	24(%ebp), %eax
	movl	%eax, 16(%esp)
	movl	20(%ebp), %eax
	movl	%eax, 12(%esp)
	movl	16(%ebp), %eax
	movl	%eax, 8(%esp)
	movl	12(%ebp), %eax
	movl	%eax, 4(%esp)
	movl	8(%ebp), %eax
	movl	%eax, (%esp)
	call	_UgaBlt
	leave
	ret