]> git.sesse.net Git - ffmpeg/blob - libavutil/mips/asmdefs.h
Merge commit 'dc2d0e06af459af9a7f91b65e0a3119acc4f1baa'
[ffmpeg] / libavutil / mips / asmdefs.h
1 /*
2  * Copyright (c) 2015 Imagination Technologies Ltd
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * MIPS assembly defines from sys/asm.h but rewritten for use with C inline
24  * assembly (rather than from within .s files).
25  */
26
27 #ifndef AVUTIL_MIPS_ASMDEFS_H
28 #define AVUTIL_MIPS_ASMDEFS_H
29
30 #include <sgidefs.h>
31
32 #if _MIPS_SIM == _ABI64
33 # define PTRSIZE        " 8 "
34 # define PTRLOG         " 3 "
35 # define PTR_ADDU       "daddu "
36 # define PTR_ADDIU      "daddiu "
37 # define PTR_SUBU       "dsubu "
38 # define PTR_L          "ld "
39 #else
40 # define PTRSIZE        " 4 "
41 # define PTRLOG         " 2 "
42 # define PTR_ADDU       "addu "
43 # define PTR_ADDIU      "addiu "
44 # define PTR_SUBU       "subu "
45 # define PTR_L          "lw "
46 #endif
47
48 #endif /* AVCODEC_MIPS_ASMDEFS_H */