annotate dyncallback/dyncall_callback_mips_n32_gas.s @ 256:7520e2260097

- added to configure some detection on how to compile .s/.S with --noexecstack (or similar), as compilers' defaults are often insane - since no-execstack handling is now in build, remove .note.GNU-stack section markers (were of limites use, anyways, b/c unportable or implemented inconsistently across platforms) - some ToDo, etc. updates
author Tassilo Philipp
date Sat, 20 May 2017 00:02:59 +0200
parents c5cb02203df4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
94
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
1 /*
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
2
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
3 Package: dyncall
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
4 Library: dyncallback
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
5 File: dyncallback/dyncall_callback_mips_n32_gas.s
101
1ce60358fbad - mips related cleanup, mostly comments, cpp macro lib
cslag
parents: 94
diff changeset
6 Description: Callback Thunk - Implementation for mips64 n32
94
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
7 License:
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
8
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
9 Copyright (c) 2016 Tassilo Philipp <tphilipp@potion-studios.com>
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
10
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
11 Permission to use, copy, modify, and distribute this software for any
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
12 purpose with or without fee is hereby granted, provided that the above
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
13 copyright notice and this permission notice appear in all copies.
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
14
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
15 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
16 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
17 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
18 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
20 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
21 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
22
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
23 */
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
24
116
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
25 .section .mdebug.abiN32
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
26 .previous
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
27 .abicalls
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
28 .text
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
29 .align 2
94
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
30 .globl dcCallbackThunkEntry
116
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
31 .ent dcCallbackThunkEntry
94
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
32 dcCallbackThunkEntry:
ea17e6e6bd3a - stubs for mips callback support
cslag
parents:
diff changeset
33
116
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
34 .end dcCallbackThunkEntry
c5cb02203df4 - mips n64 working thunks
cslag
parents: 101
diff changeset
35