116
+ − 1 /*
+ − 2
+ − 3 Package: dyncall
+ − 4 Library: dyncallback
+ − 5 File: dyncallback/dyncall_thunk_mips64.h
+ − 6 Description: Thunk - Header for MIPS64
+ − 7 License:
+ − 8
+ − 9 Copyright (c) 2016 Tassilo Philipp <tphilipp@potion-studios.com>
+ − 10
+ − 11 Permission to use, copy, modify, and distribute this software for any
+ − 12 purpose with or without fee is hereby granted, provided that the above
+ − 13 copyright notice and this permission notice appear in all copies.
+ − 14
+ − 15 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ − 16 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ − 17 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ − 18 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ − 19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ − 20 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ − 21 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ − 22
+ − 23 */
+ − 24
+ − 25
+ − 26 #ifndef DYNCALL_THUNK_MIPS64_H
+ − 27 #define DYNCALL_THUNK_MIPS64_H
+ − 28
+ − 29 struct DCThunk_
+ − 30 {
+ − 31 union {
+ − 32 unsigned short s[26];
118
+ − 33 unsigned int i[13]; /* don't change from 'int', must be 32bit wide */
116
+ − 34 } text;
121
+ − 35 unsigned int padding; /* 4 bytes, to get struct size to multiple of 8 */
116
+ − 36 };
+ − 37
155
+ − 38 #define DCTHUNK_MIPS64_SIZE 56
116
+ − 39
+ − 40 #endif /* DYNCALL_THUNK_MIPS64_H */
+ − 41