~ubuntu-branches/ubuntu/trusty/luajit/trusty

« back to all changes in this revision

Viewing changes to src/lj_vm.h

  • Committer: Bazaar Package Importer
  • Author(s): Enrico Tassi
  • Date: 2011-05-09 23:14:21 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20110509231421-zdcnqbqk5h6iryxr
Tags: 2.0.0~beta7+dfsg-1
New upstream release with arm support

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
LJ_ASMF_NORET void LJ_FASTCALL lj_vm_unwind_ff(void *cframe);
20
20
LJ_ASMF void lj_vm_unwind_c_eh(void);
21
21
LJ_ASMF void lj_vm_unwind_ff_eh(void);
 
22
#if LJ_TARGET_X86ORX64
 
23
LJ_ASMF void lj_vm_unwind_rethrow(void);
 
24
#endif
22
25
 
23
26
/* Miscellaneous functions. */
24
27
#if LJ_TARGET_X86ORX64
28
31
#if LJ_HASJIT
29
32
LJ_ASMF double lj_vm_foldfpm(double x, int op);
30
33
#endif
 
34
#if !LJ_ARCH_HASFPU
 
35
/* Declared in lj_obj.h: LJ_ASMF int32_t lj_vm_tobit(double x); */
 
36
#endif
31
37
 
32
38
/* Dispatch targets for recording and hooks. */
33
39
LJ_ASMF void lj_vm_record(void);