From 4bb7a8d68fd55a59ae908bb662a7a488a9ad35c9 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 17 Aug 2012 15:57:36 +0200 Subject: Provide access to smaller registers in eregs This is in preparation for sharing interrupt handlers between YABEL and x86emu. Change-Id: Iff92c1d899b8ada20972731944341805a49b6326 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/1560 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/arch/x86/include/arch/registers.h | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) (limited to 'src/arch/x86/include') diff --git a/src/arch/x86/include/arch/registers.h b/src/arch/x86/include/arch/registers.h index bc1b681339..d120a2a496 100644 --- a/src/arch/x86/include/arch/registers.h +++ b/src/arch/x86/include/arch/registers.h @@ -20,8 +20,41 @@ #ifndef __ARCH_REGISTERS_H #define __ARCH_REGISTERS_H +#define __PACKED __attribute__((packed)) + +#define DOWNTO8(A) \ + union { \ + struct { \ + union { \ + struct { \ + uint8_t A##l; \ + uint8_t A##h; \ + } __PACKED; \ + uint16_t A##x; \ + } __PACKED; \ + uint16_t h##A##x; \ + } __PACKED; \ + uint32_t e##A##x; \ + } __PACKED; + +#define DOWNTO16(A) \ + union { \ + struct { \ + uint16_t A; \ + uint16_t h##A; \ + } __PACKED; \ + uint32_t e##A; \ + } __PACKED; + struct eregs { - uint32_t eax, ecx, edx, ebx, esp, ebp, esi, edi; + DOWNTO8(a); + DOWNTO8(c); + DOWNTO8(d); + DOWNTO8(b); + DOWNTO16(sp); + DOWNTO16(bp); + DOWNTO16(si); + DOWNTO16(di); uint32_t vector; uint32_t error_code; uint32_t eip; -- cgit v1.2.3