summaryrefslogtreecommitdiff
path: root/UnixPkg/Sec/Ia32/GasketTemplate.c
diff options
context:
space:
mode:
authorandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2010-12-01 02:25:46 +0000
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2010-12-01 02:25:46 +0000
commitd1e380b1d6fb7fd502b4c46e0f2f13ec6181c767 (patch)
treeb893c4c2a0c538a6cc50be424470ef28186aa916 /UnixPkg/Sec/Ia32/GasketTemplate.c
parent5f0286bb8f02c0d07d4edd622d496748a9c3b0fc (diff)
downloadedk2-platforms-d1e380b1d6fb7fd502b4c46e0f2f13ec6181c767.tar.xz
Remove unused files to make it easier to add new thunks.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11108 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg/Sec/Ia32/GasketTemplate.c')
-rw-r--r--UnixPkg/Sec/Ia32/GasketTemplate.c163
1 files changed, 0 insertions, 163 deletions
diff --git a/UnixPkg/Sec/Ia32/GasketTemplate.c b/UnixPkg/Sec/Ia32/GasketTemplate.c
deleted file mode 100644
index d85a26a53e..0000000000
--- a/UnixPkg/Sec/Ia32/GasketTemplate.c
+++ /dev/null
@@ -1,163 +0,0 @@
-/** @file
- Template file used to create Gasket.S
-
- This file is built on the command line via gcc GasketTemplate.c -S
- and it will create GasketTemplate.s and this was used to create
- Gasket.S. You still have to add the extra stack alignment code to
- the assembly functions.
-
-Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
-Portions copyright (c) 2008 - 2010, 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.
-
-**/
-
-
-#include <stdint.h>
-#include <sys/stat.h>
-
-typedef int8_t INT8;
-typedef uint8_t UINT8;
-typedef int16_t INT16;
-typedef uint16_t UINT16;
-typedef int32_t INT32;
-typedef uint32_t UINT32;
-typedef int64_t INT64;
-typedef uint64_t UINT64;
-typedef UINT32 UINTN;
-
-
-typedef int (*GASKET_VOID) ();
-typedef int (*GASKET_UINTN) (UINTN);
-typedef int (*GASKET_UINT64) (UINT64);
-typedef int (*GASKET_UINT64UINT64) (UINT64, UINT64);
-typedef int (*GASKET_UINTN_UINTN) (UINTN, UINTN);
-typedef int (*GASKET_UINTN_UINTN_UINTN) (UINTN, UINTN, UINTN);
-typedef int (*GASKET_UINTN_UINTN_UINTN_UINTN) (UINTN, UINTN, UINTN, UINTN);
-typedef int (*GASKET_UINTN_10ARGS) (UINTN, UINTN, UINTN, UINTN, UINTN, UINTN, UINTN, UINTN, UINTN, UINTN);
-typedef int (*GASKET_UINT64_UINTN) (UINT64, UINTN);
-typedef UINT64 (*GASKET_UINTN_UINT64_UINTN) (UINTN, UINT64, UINTN);
-typedef int (*GASKET_UINTN_UINT16) (UINTN, UINT16);
-
-int GasketVoid (void *api);
-int GasketUintn (void *api, UINTN a);
-int GasketUintnUintn (void *api, UINTN a, UINTN b);
-int GasketUintnUintnUintn (void *api, UINTN a, UINTN b, UINTN c);
-int GasketUintnUintnUintnUintn (void *api, UINTN a, UINTN b, UINTN c, UINTN d);
-int GasketUintn10Args (void *api, UINTN a, UINTN b, UINTN c, UINTN d, UINTN e, UINTN f, UINTN g, UINTN h, UINTN i, UINTN j);
-int GasketUint64Uintn (void *api, UINT64 a, UINTN b);
-UINT64 GasketUintnUiny64Uintn (void *api, UINTN a, UINT64 b, UINTN c);
-int GasketUintnUint16 (void *api, UINTN a, UINT16 b);
-
-
-
-int
-GasketVoid (void *api)
-{
- GASKET_VOID func;
-
- func = (GASKET_VOID)api;
- return func ();
-}
-
-int
-GasketUintn (void *api, UINTN a)
-{
- GASKET_UINTN func;
-
- func = (GASKET_UINTN)api;
- return func (a);
-}
-
-int
-GasketUintnUintn (void *api, UINTN a, UINTN b)
-{
- GASKET_UINTN_UINTN func;
-
- func = (GASKET_UINTN_UINTN)api;
- return func (a, b);
-}
-
-
-int
-GasketUintnUintnUintn (void *api, UINTN a, UINTN b, UINTN c)
-{
- GASKET_UINTN_UINTN_UINTN func;
-
- func = (GASKET_UINTN_UINTN_UINTN)api;
- return func (a, b, c);
-}
-
-int
-GasketUintnUintnUintnUintn (void *api, UINTN a, UINTN b, UINTN c, UINTN d)
-{
- GASKET_UINTN_UINTN_UINTN_UINTN func;
-
- func = (GASKET_UINTN_UINTN_UINTN_UINTN)api;
- return func (a, b, c, d);
-}
-
-int
-GasketUintn10Args (void *api, UINTN a, UINTN b, UINTN c, UINTN d, UINTN e, UINTN f, UINTN g, UINTN h, UINTN i, UINTN j)
-{
- GASKET_UINTN_10ARGS func;
-
- func = (GASKET_UINTN_10ARGS)api;
- return func (a, b, c, d, e, f, g, h, i, j);
-}
-
-
-int
-GasketUint64Uintn (void *api, UINT64 a, UINTN b)
-{
- GASKET_UINT64_UINTN func;
-
- func = (GASKET_UINT64_UINTN)api;
- return func (a, b);
-}
-
-UINT64
-GasketUintnUint64Uintn (void *api, UINTN a, UINT64 b, UINTN c)
-{
- GASKET_UINTN_UINT64_UINTN func;
-
- func = (GASKET_UINTN_UINT64_UINTN)api;
- return func (a, b, c);
-}
-
-int
-GasketUintnUint16 (void *api, UINTN a, UINT16 b)
-{
- GASKET_UINTN_UINT16 func;
-
- func = (GASKET_UINTN_UINT16)api;
- return func (a, b);
-}
-
-void
-ReverseGasketUint64 (void *api, UINT64 a)
-{
- GASKET_UINTN func;
-
- func = (GASKET_UINT64)api;
- func (a);
- return;
-}
-
-void
-ReverseGasketUint64UINT64 (void *api, UINT64 a, UINT64 b)
-{
- GASKET_UINT64UINT64 func;
-
- func = (GASKET_UINT64UINT64)api;
- func (a, b);
- return;
-}
-
-