00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef AVCODEC_BFIN_CONFIG_BFIN_H
00032 #define AVCODEC_BFIN_CONFIG_BFIN_H
00033
00034 #include "config.h"
00035
00036 #ifndef DEFUN
00037
00038 #define mL3 .text
00039 #ifndef mL1
00040 #if defined(__FDPIC__) && CONFIG_SRAM
00041 #define mL1 .l1.text
00042 #else
00043 #define mL1 mL3
00044 #endif
00045 #endif
00046
00047 #define DEFUN(fname,where,interface) \
00048 .section where; \
00049 .global _ff_bfin_ ## fname ; \
00050 .type _ff_bfin_ ## fname, STT_FUNC; \
00051 .align 8; \
00052 _ff_bfin_ ## fname
00053
00054 #define DEFUN_END(fname) \
00055 .size _ff_bfin_ ## fname, . - _ff_bfin_ ## fname
00056
00057 #ifdef __FDPIC__
00058 #define RELOC(reg,got,obj) reg = [got + obj@GOT17M4]
00059 #else
00060 #define RELOC(reg,got,obj) reg.L = obj; reg.H = obj
00061 #endif
00062
00063 #endif
00064
00065 #endif