Home
last modified time | relevance | path

Searched refs:Instruction (Results 1 – 25 of 34) sorted by relevance

12

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlopcodes.h71 #define MASK1(n,p) ((~((~(Instruction)0)<<n))<<p)
82 ((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP))))
86 ((cast(Instruction, u)<<POS_A)&MASK1(SIZE_A,POS_A))))
90 ((cast(Instruction, b)<<POS_B)&MASK1(SIZE_B,POS_B))))
94 ((cast(Instruction, b)<<POS_C)&MASK1(SIZE_C,POS_C))))
98 ((cast(Instruction, b)<<POS_Bx)&MASK1(SIZE_Bx,POS_Bx))))
105 | (cast(Instruction, a)<<POS_A) \
106 | (cast(Instruction, b)<<POS_B) \
107 | (cast(Instruction, c)<<POS_C))
110 | (cast(Instruction, a)<<POS_A) \
[all …]
H A Dlcode.c36 Instruction *previous; in luaK_nil()
81 Instruction *jmp = &fs->f->code[pc]; in fixjump()
109 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
110 Instruction *pi = &fs->f->code[pc]; in getjumpcontrol()
124 Instruction i = *getjumpcontrol(fs, list); in need_value()
132 Instruction *i = getjumpcontrol(fs, node); in patchtestreg()
363 Instruction *pc = &getcode(fs, e); in discharge2reg()
517 Instruction *pc = getjumpcontrol(fs, e->u.s.info); in invertjump()
526 Instruction ie = getcode(fs, e); in jumponcond()
789 static int luaK_code (FuncState *fs, Instruction i, int line) { in luaK_code()
[all …]
H A Dprint.c76 const Instruction* code=f->code; in PrintCode()
80 Instruction i=code[pc]; in PrintCode()
173 S(f->sizecode),f->sizecode*Sizeof(Instruction),VOID(f)); in PrintHeader()
H A Dlstate.h52 const Instruction *savedpc;
107 const Instruction *savedpc; /* `savedpc' of current function */
H A Dldebug.c290 int luaG_checkopenop (Instruction i) { in luaG_checkopenop()
317 static Instruction symbexec (const Proto *pt, int lastpc, int reg) { in symbexec()
323 Instruction i = pt->code[pc]; in symbexec()
355 Instruction d = pt->code[dest-1-j]; in symbexec()
502 Instruction i; in getobjname()
545 Instruction i; in getfuncname()
H A Dlundump.c93 f->code=luaM_newvector(S->L,n,Instruction); in LoadCode()
95 LoadVector(S,f->code,n,sizeof(Instruction)); in LoadCode()
224 *h++=(char)sizeof(Instruction); in luaU_header()
H A Dldebug.h31 LUAI_FUNC int luaG_checkopenop (Instruction i);
H A Dllimits.h88 typedef lu_int32 Instruction; typedef
H A Dluac.c131 f->code=luaM_newvector(L,pc,Instruction); in combine()
H A Dlvm.c60 static void traceexec (lua_State *L, const Instruction *pc) { in traceexec()
62 const Instruction *oldpc = L->savedpc; in traceexec()
381 const Instruction *pc; in luaV_execute()
390 const Instruction i = *pc++; in luaV_execute()
H A Dldump.c76 #define DumpCode(f,D) DumpVector(f->code,f->sizecode,sizeof(Instruction),D)
H A Dlfunc.c142 luaM_freearray(L, f->code, f->sizecode, Instruction); in luaF_freeproto()
H A Dlobject.h234 Instruction *code;
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlopcodes.h81 #define MASK1(n,p) ((~((~(Instruction)0)<<(n)))<<(p))
92 ((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP))))
117 #define CREATE_ABC(o,a,b,c) ((cast(Instruction, o)<<POS_OP) \
118 | (cast(Instruction, a)<<POS_A) \
119 | (cast(Instruction, b)<<POS_B) \
120 | (cast(Instruction, c)<<POS_C))
122 #define CREATE_ABx(o,a,bc) ((cast(Instruction, o)<<POS_OP) \
123 | (cast(Instruction, a)<<POS_A) \
124 | (cast(Instruction, bc)<<POS_Bx))
126 #define CREATE_Ax(o,a) ((cast(Instruction, o)<<POS_OP) \
[all …]
H A Dlcode.c36 Instruction *previous; in luaK_nil()
79 Instruction *jmp = &fs->f->code[pc]; in fixjump()
107 static Instruction *getjumpcontrol (FuncState *fs, int pc) { in getjumpcontrol()
108 Instruction *pi = &fs->f->code[pc]; in getjumpcontrol()
122 Instruction i = *getjumpcontrol(fs, list); in need_value()
130 Instruction *i = getjumpcontrol(fs, node); in patchtestreg()
210 static int luaK_code (FuncState *fs, Instruction i) { in luaK_code()
214 luaM_growvector(fs->ls->L, f->code, fs->pc, f->sizecode, Instruction, in luaK_code()
439 Instruction *pc = &getcode(fs, e); in discharge2reg()
597 Instruction *pc = getjumpcontrol(fs, e->u.info); in invertjump()
[all …]
H A Dlstate.h80 const Instruction *savedpc;
161 const Instruction *oldpc; /* last pc traced */
H A Dldebug.c359 Instruction i = p->code[pc]; in findsetreg()
414 Instruction i = p->code[pc]; in getobjname()
463 Instruction i = p->code[pc]; /* calling instruction */ in getfuncname()
H A Dllimits.h142 typedef lu_int32 Instruction; typedef
/f-stack/freebsd/contrib/edk2/Include/IndustryStandard/
H A DAcpi40.h1025 UINT8 Instruction; member
1104 UINT8 Instruction; member
H A DAcpi50.h1696 UINT8 Instruction; member
1775 UINT8 Instruction; member
H A DAcpi51.h1712 UINT8 Instruction; member
1791 UINT8 Instruction; member
H A DAcpi60.h1899 UINT8 Instruction; member
1978 UINT8 Instruction; member
/f-stack/freebsd/contrib/dev/acpica/include/
H A Dactbl3.h774 UINT8 Instruction; member
/f-stack/freebsd/contrib/dev/acpica/common/
H A Ddmtbinfo1.c689 {ACPI_DMT_EINJINST, ACPI_EINJ0_OFFSET (Instruction), "Instruction", 0},
718 {ACPI_DMT_ERSTINST, ACPI_ERST0_OFFSET (Instruction), "Instruction", 0},
H A Ddmtbinfo3.c595 {ACPI_DMT_UINT8, ACPI_WDAT0_OFFSET (Instruction), "Instruction", 0},

12