aot_emit_parametric.h 596 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _AOT_EMIT_PARAMETRIC_H_
  6. #define _AOT_EMIT_PARAMETRIC_H_
  7. #include "aot_compiler.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. bool
  12. aot_compile_op_drop(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
  13. bool is_drop_32);
  14. bool
  15. aot_compile_op_select(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
  16. bool is_select_32);
  17. #ifdef __cplusplus
  18. } /* end of extern "C" */
  19. #endif
  20. #endif /* end of _AOT_EMIT_PARAMETRIC_H_ */