Searched refs:Instruction (Results 1 – 13 of 13) sorted by relevance
/l4re-core-master/lua/lib/contrib/src/ |
A D | lopcodes.h | 105 #define MASK1(n,p) ((~((~(Instruction)0)<<(n)))<<(p)) 116 ((cast(Instruction, o)<<POS_OP)&MASK1(SIZE_OP,POS_OP)))) 157 | (cast(Instruction, a)<<POS_A) \ 158 | (cast(Instruction, b)<<POS_B) \ 159 | (cast(Instruction, c)<<POS_C) \ 160 | (cast(Instruction, k)<<POS_k)) 163 | (cast(Instruction, a)<<POS_A) \ 164 | (cast(Instruction, bc)<<POS_Bx)) 167 | (cast(Instruction, a)<<POS_Ax)) 170 | (cast(Instruction, j) << POS_sJ) \ [all …]
|
A D | lcode.c | 116 static const Instruction invalidinstruction = ~(Instruction)0; in previousinstruction() 167 Instruction *jmp = &fs->f->code[pc]; in fixjump() 243 Instruction *pi = &fs->f->code[pc]; in getjumpcontrol() 259 Instruction *i = getjumpcontrol(fs, node); in patchtestreg() 381 int luaK_code (FuncState *fs, Instruction i) { in luaK_code() 704 Instruction *pc = &getinstruction(fs, e); in luaK_setreturns() 1099 Instruction ie = getinstruction(fs, e); in jumponcond() 1623 Instruction *ie2 = previousinstruction(fs); in codeconcat() 1733 Instruction *inst = &fs->f->code[pc]; in luaK_settablesize() 1772 Instruction pc = code[i]; in finaltarget() [all …]
|
A D | ldebug.c | 445 static void rkname (const Proto *p, int pc, Instruction i, const char **name) { in rkname() 471 Instruction i = p->code[pc]; in findsetreg() 514 static const char *gxf (const Proto *p, int pc, Instruction i, int isup) { in gxf() 534 Instruction i = p->code[pc]; in getobjname() 598 Instruction i = p->code[pc]; /* calling instruction */ in funcnamefromcode() 833 int luaG_traceexec (lua_State *L, const Instruction *pc) { in luaG_traceexec()
|
A D | ldebug.h | 60 LUAI_FUNC int luaG_traceexec (lua_State *L, const Instruction *pc);
|
A D | lundump.c | 146 f->code = luaM_newvectorchecked(S->L, n, Instruction); in loadCode() 298 checksize(S, Instruction); in checkHeader()
|
A D | lvm.c | 811 Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */ in luaV_finishOp() 1069 #define donextjump(ci) { Instruction ni = *pc; dojump(ci, ni, 1); } 1133 const Instruction *pc; in luaV_execute() 1156 Instruction i; /* instruction being executed */ in luaV_execute() 1469 Instruction pi = *(pc - 2); /* original arith. expression */ in luaV_execute() 1478 Instruction pi = *(pc - 2); /* original arith. expression */ in luaV_execute() 1487 Instruction pi = *(pc - 2); /* original arith. expression */ in luaV_execute()
|
A D | lcode.h | 62 LUAI_FUNC int luaK_code (FuncState *fs, Instruction i);
|
A D | llimits.h | 178 typedef l_uint32 Instruction; typedef
|
A D | lstate.h | 178 const Instruction *savedpc;
|
A D | ldump.c | 202 dumpByte(D, sizeof(Instruction)); in dumpHeader()
|
A D | luac.c | 337 const Instruction* code=f->code; in PrintCode() 341 Instruction i=code[pc]; in PrintCode()
|
A D | lparser.c | 752 luaM_shrinkvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func() 1519 Instruction *jmp = &fs->f->code[pc]; in fixforjump() 1794 Instruction *inst; in exprstat()
|
A D | lobject.h | 554 Instruction *code; /* opcodes */
|
Completed in 25 milliseconds