2006-09-10 14:02:42 +00:00
|
|
|
/*
|
|
|
|
* copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2006-09-10 14:02:42 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2006-09-10 14:02:42 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2006-09-10 14:02:42 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-09-10 14:02:42 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2007-10-17 09:37:46 +00:00
|
|
|
#ifndef FFMPEG_X86CPU_H
|
|
|
|
#define FFMPEG_X86CPU_H
|
2006-07-03 10:52:07 +00:00
|
|
|
|
2008-05-09 11:10:20 +00:00
|
|
|
#include <stdint.h>
|
2008-03-13 18:04:21 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-07-03 10:52:07 +00:00
|
|
|
#ifdef ARCH_X86_64
|
2008-02-15 14:58:18 +00:00
|
|
|
# define REG_a "rax"
|
|
|
|
# define REG_b "rbx"
|
|
|
|
# define REG_c "rcx"
|
|
|
|
# define REG_d "rdx"
|
|
|
|
# define REG_D "rdi"
|
|
|
|
# define REG_S "rsi"
|
|
|
|
# define PTR_SIZE "8"
|
2008-05-08 21:11:24 +00:00
|
|
|
typedef int64_t x86_reg;
|
2006-07-03 10:52:07 +00:00
|
|
|
|
2008-02-15 14:58:18 +00:00
|
|
|
# define REG_SP "rsp"
|
|
|
|
# define REG_BP "rbp"
|
|
|
|
# define REGBP rbp
|
|
|
|
# define REGa rax
|
|
|
|
# define REGb rbx
|
|
|
|
# define REGc rcx
|
2008-03-17 23:08:17 +00:00
|
|
|
# define REGd rdx
|
2008-02-15 14:58:18 +00:00
|
|
|
# define REGSP rsp
|
2006-07-03 10:52:07 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2008-02-15 14:58:18 +00:00
|
|
|
# define REG_a "eax"
|
|
|
|
# define REG_b "ebx"
|
|
|
|
# define REG_c "ecx"
|
|
|
|
# define REG_d "edx"
|
|
|
|
# define REG_D "edi"
|
|
|
|
# define REG_S "esi"
|
|
|
|
# define PTR_SIZE "4"
|
2008-05-08 21:11:24 +00:00
|
|
|
typedef int32_t x86_reg;
|
2006-07-03 10:52:07 +00:00
|
|
|
|
2008-02-15 14:58:18 +00:00
|
|
|
# define REG_SP "esp"
|
|
|
|
# define REG_BP "ebp"
|
|
|
|
# define REGBP ebp
|
|
|
|
# define REGa eax
|
|
|
|
# define REGb ebx
|
|
|
|
# define REGc ecx
|
2008-03-17 23:08:17 +00:00
|
|
|
# define REGd edx
|
2008-02-15 14:58:18 +00:00
|
|
|
# define REGSP esp
|
2006-07-03 10:52:07 +00:00
|
|
|
#endif
|
|
|
|
|
2007-04-24 07:06:30 +00:00
|
|
|
#if defined(ARCH_X86_64) || (defined(ARCH_X86_32) && defined(HAVE_EBX_AVAILABLE) && defined(HAVE_EBP_AVAILABLE))
|
2008-02-15 14:58:18 +00:00
|
|
|
# define HAVE_7REGS 1
|
2007-03-29 14:20:30 +00:00
|
|
|
#endif
|
|
|
|
|
2008-07-13 14:56:01 +00:00
|
|
|
#if defined(ARCH_X86_64) || (defined(ARCH_X86_32) && (defined(HAVE_EBX_AVAILABLE) || defined(HAVE_EBP_AVAILABLE)))
|
|
|
|
# define HAVE_6REGS 1
|
|
|
|
#endif
|
|
|
|
|
2007-04-27 09:32:31 +00:00
|
|
|
#if defined(ARCH_X86_64) && defined(PIC)
|
2008-02-15 14:58:18 +00:00
|
|
|
# define BROKEN_RELOCATIONS 1
|
2007-04-27 09:32:31 +00:00
|
|
|
#endif
|
|
|
|
|
2007-10-17 09:37:46 +00:00
|
|
|
#endif /* FFMPEG_X86CPU_H */
|