invokeNative_osx_universal.s 385 B

123456789101112131415161718
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #if defined(__aarch64__)
  6. #if WASM_ENABLE_SIMD == 0
  7. #include "invokeNative_aarch64.s"
  8. #else
  9. #include "invokeNative_aarch64_simd.s"
  10. #endif
  11. #else
  12. #if WASM_ENABLE_SIMD == 0
  13. #include "invokeNative_em64.s"
  14. #else
  15. #include "invokeNative_em64_simd.s"
  16. #endif
  17. #endif