📄 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*);#define SEQSLOTS 5typedef struct _sequence { ifunc func; union { jvalue value; struct _label_* labconst; Method* methconst; struct SlotData** smask; struct SlotData* slot; } u[SEQSLOTS]; uint8 type; uint8 refed; uint32 lastuse; struct _sequence* next;} sequence;void initSeq(void);sequence* nextSeq(void);extern sequence* firstSeq;extern sequence* lastSeq;extern sequence* currSeq;extern sequence* activeSeq;#define ALLOCSEQNR 1024#define seq(s) ((s)->insn)#define seq_slot(_s, _i) ((_s)->u[_i].slot)#define seq_value(_s, _i) ((_s)->u[_i].value.i)#define seq_dst(_s) seq_slot(_s, 0)#define seq_ret(_s) seq_slot(_s, 0)#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -