src/lj_asm.h - luajit-2.0-src

Macros defined

Source code

  1. /*
  2. ** IR assembler (SSA IR -> machine code).
  3. ** Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
  4. */

  5. #ifndef _LJ_ASM_H
  6. #define _LJ_ASM_H

  7. #include "lj_jit.h"

  8. #if LJ_HASJIT
  9. LJ_FUNC void lj_asm_trace(jit_State *J, GCtrace *T);
  10. LJ_FUNC void lj_asm_patchexit(jit_State *J, GCtrace *T, ExitNo exitno,
  11.                               MCode *target);
  12. #endif

  13. #endif