src/lj_trace.h - luajit-2.0-src

Data types defined

Macros defined

Source code

  1. /*
  2. ** Trace management.
  3. ** Copyright (C) 2005-2015 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 void LJ_FASTCALL lj_trace_stitch(jit_State *J, const BCIns *pc);
  31. LJ_FUNCA int LJ_FASTCALL lj_trace_exit(jit_State *J, void *exptr);

  32. /* Signal asynchronous abort of trace or end of trace. */
  33. #define lj_trace_abort(g)        (G2J(g)->state &= ~LJ_TRACE_ACTIVE)
  34. #define lj_trace_end(J)                (J->state = LJ_TRACE_END)

  35. #else

  36. #define lj_trace_flushall(L)        (UNUSED(L), 0)
  37. #define lj_trace_initstate(g)        UNUSED(g)
  38. #define lj_trace_freestate(g)        UNUSED(g)
  39. #define lj_trace_abort(g)        UNUSED(g)
  40. #define lj_trace_end(J)                UNUSED(J)

  41. #endif

  42. #endif