lj_trace.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. ** Trace management.
  3. ** Copyright (C) 2005-2014 Mike Pall. See Copyright Notice in luajit.h
  4. */
  5. #ifndef _LJ_TRACE_H
  6. #define _LJ_TRACE_H
  7. #include "lj_obj.h"
  8. #if LJ_HASJIT
  9. #include "lj_jit.h"
  10. #include "lj_dispatch.h"
  11. /* Trace errors. */
  12. typedef enum {
  13. #define TREDEF(name, msg) LJ_TRERR_##name,
  14. #include "lj_traceerr.h"
  15. LJ_TRERR__MAX
  16. } TraceError;
  17. LJ_FUNC_NORET void lj_trace_err(jit_State *J, TraceError e);
  18. LJ_FUNC_NORET void lj_trace_err_info(jit_State *J, TraceError e);
  19. /* Trace management. */
  20. LJ_FUNC void LJ_FASTCALL lj_trace_free(global_State *g, GCtrace *T);
  21. LJ_FUNC void lj_trace_reenableproto(GCproto *pt);
  22. LJ_FUNC void lj_trace_flushproto(global_State *g, GCproto *pt);
  23. LJ_FUNC void lj_trace_flush(jit_State *J, TraceNo traceno);
  24. LJ_FUNC int lj_trace_flushall(lua_State *L);
  25. LJ_FUNC void lj_trace_initstate(global_State *g);
  26. LJ_FUNC void lj_trace_freestate(global_State *g);
  27. /* Event handling. */
  28. LJ_FUNC void lj_trace_ins(jit_State *J, const BCIns *pc);
  29. LJ_FUNCA void LJ_FASTCALL lj_trace_hot(jit_State *J, const BCIns *pc);
  30. LJ_FUNCA int LJ_FASTCALL lj_trace_exit(jit_State *J, void *exptr);
  31. /* Signal asynchronous abort of trace or end of trace. */
  32. #define lj_trace_abort(g) (G2J(g)->state &= ~LJ_TRACE_ACTIVE)
  33. #define lj_trace_end(J) (J->state = LJ_TRACE_END)
  34. #else
  35. #define lj_trace_flushall(L) (UNUSED(L), 0)
  36. #define lj_trace_initstate(g) UNUSED(g)
  37. #define lj_trace_freestate(g) UNUSED(g)
  38. #define lj_trace_abort(g) UNUSED(g)
  39. #define lj_trace_end(J) UNUSED(J)
  40. #endif
  41. #endif