📄 seq.h
字号:
/* seq.h * Pseudo instruction sequences. * * Copyright (c) 1996, 1997 * Transvirtual Technologies, Inc. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file. */#ifndef __seq_hh#define __seq_hhstruct _sequence;struct _label_;typedef void (*ifunc)(struct _sequence*);typedef struct _sequence { ifunc func; union { jword iconst; jlong lconst; jdouble fconst; struct _label_* labconst; Method* methconst; struct { struct SlotInfo* slot; struct _sequence* seq; } s; } u[5]; struct _sequence* next;} sequence;void initSeq(void);sequence* nextSeq(void);extern sequence* firstSeq;extern sequence* lastSeq;extern sequence* currSeq;#define ALLOCSEQNR 1024#define seq(s) ((s)->insn)#define seq_slot(_s, _i) ((_s)->u[_i].s.slot)#define seq_seq(_s, _i) ((_s)->u[_i].s.seq)#define seq_value(_s, _i) ((_s)->u[_i].iconst)#define seq_dst(_s) seq_slot(_s, 0)#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -