syscall_32bit.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. // SPDX-License-Identifier: Apache-2.0
  2. // SPDX-FileCopyrightText: 2022 The Ebitengine Authors
  3. //go:build (386 || arm) && (freebsd || linux || netbsd || windows)
  4. package purego
  5. // CDecl marks a function as being called using the __cdecl calling convention as defined in
  6. // the [MSDocs] when passed to NewCallback. It must be the first argument to the function.
  7. // This is only useful on 386 Windows, but it is safe to use on other platforms.
  8. //
  9. // [MSDocs]: https://learn.microsoft.com/en-us/cpp/cpp/cdecl?view=msvc-170
  10. type CDecl struct{}
  11. const (
  12. maxArgs = 32
  13. )
  14. type syscall15Args struct {
  15. fn, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, a11, a12, a13, a14, a15 uintptr
  16. a16, a17, a18, a19, a20, a21, a22, a23, a24, a25, a26, a27, a28, a29, a30, a31, a32 uintptr
  17. f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11, f12, f13, f14, f15, f16 uintptr
  18. arm64_r8 uintptr
  19. }
  20. func (s *syscall15Args) Set(fn uintptr, ints []uintptr, floats []uintptr, r8 uintptr) {
  21. s.fn = fn
  22. s.a1 = ints[0]
  23. s.a2 = ints[1]
  24. s.a3 = ints[2]
  25. s.a4 = ints[3]
  26. s.a5 = ints[4]
  27. s.a6 = ints[5]
  28. s.a7 = ints[6]
  29. s.a8 = ints[7]
  30. s.a9 = ints[8]
  31. s.a10 = ints[9]
  32. s.a11 = ints[10]
  33. s.a12 = ints[11]
  34. s.a13 = ints[12]
  35. s.a14 = ints[13]
  36. s.a15 = ints[14]
  37. s.a16 = ints[15]
  38. s.a17 = ints[16]
  39. s.a18 = ints[17]
  40. s.a19 = ints[18]
  41. s.a20 = ints[19]
  42. s.a21 = ints[20]
  43. s.a22 = ints[21]
  44. s.a23 = ints[22]
  45. s.a24 = ints[23]
  46. s.a25 = ints[24]
  47. s.a26 = ints[25]
  48. s.a27 = ints[26]
  49. s.a28 = ints[27]
  50. s.a29 = ints[28]
  51. s.a30 = ints[29]
  52. s.a31 = ints[30]
  53. s.a32 = ints[31]
  54. s.f1 = floats[0]
  55. s.f2 = floats[1]
  56. s.f3 = floats[2]
  57. s.f4 = floats[3]
  58. s.f5 = floats[4]
  59. s.f6 = floats[5]
  60. s.f7 = floats[6]
  61. s.f8 = floats[7]
  62. s.f9 = floats[8]
  63. s.f10 = floats[9]
  64. s.f11 = floats[10]
  65. s.f12 = floats[11]
  66. s.f13 = floats[12]
  67. s.f14 = floats[13]
  68. s.f15 = floats[14]
  69. s.f16 = floats[15]
  70. s.arm64_r8 = r8
  71. }
  72. // SyscallN takes fn, a C function pointer and a list of arguments as uintptr.
  73. // There is an internal maximum number of arguments that SyscallN can take. It panics
  74. // when the maximum is exceeded. It returns the result and the libc error code if there is one.
  75. //
  76. // In order to call this function properly make sure to follow all the rules specified in [unsafe.Pointer]
  77. // especially point 4.
  78. //
  79. // NOTE: SyscallN does not properly call functions that have both integer and float parameters.
  80. // See discussion comment https://github.com/ebiten/purego/pull/1#issuecomment-1128057607
  81. // for an explanation of why that is.
  82. //
  83. // On amd64, if there are more than 8 floats the 9th and so on will be placed incorrectly on the
  84. // stack.
  85. //
  86. // The pragma go:nosplit is not needed at this function declaration because it uses go:uintptrescapes
  87. // which forces all the objects that the uintptrs point to onto the heap where a stack split won't affect
  88. // their memory location.
  89. //
  90. //go:uintptrescapes
  91. func SyscallN(fn uintptr, args ...uintptr) (r1, r2, err uintptr) {
  92. if fn == 0 {
  93. panic("purego: fn is nil")
  94. }
  95. if len(args) > maxArgs {
  96. panic("purego: too many arguments to SyscallN")
  97. }
  98. // add padding so there is no out-of-bounds slicing
  99. var tmp [maxArgs]uintptr
  100. copy(tmp[:], args)
  101. return syscall_syscall15X(fn, tmp[0], tmp[1], tmp[2], tmp[3], tmp[4], tmp[5], tmp[6], tmp[7], tmp[8], tmp[9], tmp[10], tmp[11], tmp[12], tmp[13], tmp[14])
  102. }