summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h
diff options
context:
space:
mode:
authorqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2007-07-18 14:32:48 +0000
committerqhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524>2007-07-18 14:32:48 +0000
commit53c71d097b13311e2bd8dda6ae54b5766a1c7d6d (patch)
tree389779feb53ef5f1a5e212d75ee8399697086d3b /MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h
parent7fb66a6dff5f9737c086c700d53e5afd5bb53dc7 (diff)
downloadedk2-53c71d097b13311e2bd8dda6ae54b5766a1c7d6d.tar.gz
edk2-53c71d097b13311e2bd8dda6ae54b5766a1c7d6d.tar.bz2
edk2-53c71d097b13311e2bd8dda6ae54b5766a1c7d6d.zip
Adjust directory structures.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3325 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h')
-rw-r--r--MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h b/MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h
new file mode 100644
index 0000000000..f6c929ba3e
--- /dev/null
+++ b/MdeModulePkg/Universal/EbcDxe/Ipf/EbcSupport.h
@@ -0,0 +1,56 @@
+/*++
+
+Copyright (c) 2006, Intel Corporation
+All rights reserved. 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.
+
+Module Name:
+
+ EbcSupport.h
+
+Abstract:
+
+ Definition of EBC Support function
+
+Revision History
+
+--*/
+
+#ifndef _IPF_EBC_SUPPORT_H_
+#define _IPF_EBC_SUPPORT_H_
+
+#define VM_STACK_SIZE (1024 * 32)
+
+#define EBC_THUNK_SIZE 128
+#define STACK_REMAIN_SIZE (1024 * 4)
+
+//
+// For code execution, thunks must be aligned on 16-byte boundary
+//
+#define EBC_THUNK_ALIGNMENT 16
+
+//
+// Opcodes for IPF instructions. We'll need to hand-create thunk code (stuffing
+// bits) to insert a jump to the interpreter.
+//
+#define OPCODE_NOP (UINT64) 0x00008000000
+#define OPCODE_BR_COND_SPTK_FEW (UINT64) 0x00100000000
+#define OPCODE_MOV_BX_RX (UINT64) 0x00E00100000
+
+//
+// Opcode for MOVL instruction
+//
+#define MOVL_OPCODE 0x06
+
+VOID
+EbcAsmLLCALLEX (
+ IN UINTN CallAddr,
+ IN UINTN EbcSp
+ );
+
+#endif