📄 hipe_x86.h
字号:
/* $Id$ */#ifndef HIPE_X86_H#define HIPE_X86_Hstatic __inline__ void hipe_flush_icache_word(void *address){ /* Do nothing. This works as long as compiled code is executed by a single CPU thread. */}static __inline__ voidhipe_flush_icache_range(void *address, unsigned int nbytes){ /* Do nothing. This works as long as compiled code is executed by a single CPU thread. */}/* for stack descriptor hash lookup */#define HIPE_RA_LSR_COUNT 0 /* all bits are significant *//* for hipe_bifs_{read,write}_{s,u}32 */static __inline__ int hipe_word32_address_ok(void *address){ return 1;}/* Used when a BIF can trigger a stack walk. */static __inline__ void hipe_set_narity(Process *p, unsigned int arity){ p->hipe.narity = arity;}/* Native stack growth direction. */#define HIPE_NSTACK_GROWS_DOWN#define hipe_arch_name am_x86extern void nbif_inc_stack_0(void);extern void nbif_handle_fp_exception(void);/* for hipe_bifs_enter_code_2 */extern void *hipe_alloc_code(Uint nrbytes, Eterm callees, Eterm *trampolines, Process *p);#define HIPE_ALLOC_CODE(n,c,t,p) hipe_alloc_code((n),(c),(t),(p))#endif /* HIPE_X86_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -