HomeSort by relevance Sort by last modified time
    Searched refs:GET_OPCODE (Results 1 - 25 of 28) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbDisasm.c 132 ASSERT (GET_OPCODE(InstructionAddress) == OPCODE_BREAK);
179 ASSERT (GET_OPCODE(InstructionAddress) == OPCODE_JMP);
253 ASSERT (GET_OPCODE(InstructionAddress) == OPCODE_JMP8);
306 ASSERT (GET_OPCODE(InstructionAddress) == OPCODE_CALL);
401 ASSERT (GET_OPCODE(InstructionAddress) == OPCODE_RET);
446 (GET_OPCODE(InstructionAddress) == OPCODE_CMPEQ) ||
447 (GET_OPCODE(InstructionAddress) == OPCODE_CMPLTE) ||
448 (GET_OPCODE(InstructionAddress) == OPCODE_CMPGTE) ||
449 (GET_OPCODE(InstructionAddress) == OPCODE_CMPULTE) ||
450 (GET_OPCODE(InstructionAddress) == OPCODE_CMPUGTE)
    [all...]
EdbDisasm.h 23 #define GET_OPCODE(Addr) (UINT8)((*(UINT8 *)(UINTN)(Addr)) & 0x3F)
EdbCmdStep.c 32 if (GET_OPCODE(Address) != OPCODE_CALL) {
58 if (GET_OPCODE(Address) != OPCODE_RET) {
EdbCmdBreakpoint.c 32 if (GET_OPCODE(Address) != OPCODE_BREAK) {
EdbDisasmSupport.c 1135 Opcode = GET_OPCODE(InstructionAddress);
  /external/pcre/dist2/src/sljit/
sljitLir.c 79 #define GET_OPCODE(op) \
629 switch (GET_OPCODE(op)) { \
676 switch (GET_OPCODE(op)) { \
764 if (GET_OPCODE(op) >= SLJIT_MOVU && GET_OPCODE(op) <= SLJIT_MOVU_P) { \
    [all...]
sljitNativeARM_64.c     [all...]
sljitNativePPC_common.c     [all...]
sljitNativeSPARC_common.c 770 op = GET_OPCODE(op);
822 op = GET_OPCODE(op);
892 op = GET_OPCODE(op);
    [all...]
sljitNativeX86_common.c 755 switch (GET_OPCODE(op)) {
793 op = GET_OPCODE(op);
    [all...]
sljitNativeARM_32.c 991 switch (GET_OPCODE(op)) {
    [all...]
sljitNativeMIPS_common.c     [all...]
sljitNativeARM_T2_32.c     [all...]
sljitNativeTILEGX_64.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lcode.c 42 if (GET_OPCODE(*previous) == OP_LOADNIL) {
111 if (pc >= 1 && testTMode(GET_OPCODE(*(pi-1))))
125 if (GET_OPCODE(i) != OP_TESTSET) return 1;
133 if (GET_OPCODE(*i) != OP_TESTSET)
183 lua_assert(GET_OPCODE(fs->f->code[list]) == OP_JMP &&
600 lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET &&
601 GET_OPCODE(*pc) != OP_TEST);
609 if (GET_OPCODE(ie) == OP_NOT) {
832 if (e2->k == VRELOCABLE && GET_OPCODE(getcode(fs, e2)) == OP_CONCAT)
    [all...]
lvm.c 427 OpCode op = GET_OPCODE(inst);
443 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
463 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_TFORLOOP);
491 #define RB(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgR, base+GETARG_B(i))
492 #define RC(i) check_exp(getCMode(GET_OPCODE(i)) == OpArgR, base+GETARG_C(i))
493 #define RKB(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, \
495 #define RKC(i) check_exp(getCMode(GET_OPCODE(i)) == OpArgK, \
556 vmdispatch (GET_OPCODE(i)) {
566 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_EXTRAARG);
763 lua_assert(GET_OPCODE(*((ci)->u.l.savedpc - 1)) == OP_CALL)
    [all...]
ldebug.c 346 OpCode op = GET_OPCODE(i);
401 OpCode op = GET_OPCODE(i);
450 switch (GET_OPCODE(i)) {
lopcodes.h 89 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
luac.c 284 OpCode o=GET_OPCODE(i);
ldo.c 248 GET_OPCODE(*(ci->previous->u.l.savedpc - 1)) == OP_TAILCALL) {
  /external/syslinux/com32/lua/src/
lcode.c 42 if (GET_OPCODE(*previous) == OP_LOADNIL) {
111 if (pc >= 1 && testTMode(GET_OPCODE(*(pi-1))))
125 if (GET_OPCODE(i) != OP_TESTSET) return 1;
133 if (GET_OPCODE(*i) != OP_TESTSET)
183 lua_assert(GET_OPCODE(fs->f->code[list]) == OP_JMP &&
600 lua_assert(testTMode(GET_OPCODE(*pc)) && GET_OPCODE(*pc) != OP_TESTSET &&
601 GET_OPCODE(*pc) != OP_TEST);
609 if (GET_OPCODE(ie) == OP_NOT) {
832 if (e2->k == VRELOCABLE && GET_OPCODE(getcode(fs, e2)) == OP_CONCAT)
    [all...]
lvm.c 450 OpCode op = GET_OPCODE(inst);
466 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
486 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_TFORLOOP);
514 #define RB(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgR, base+GETARG_B(i))
515 #define RC(i) check_exp(getCMode(GET_OPCODE(i)) == OpArgR, base+GETARG_C(i))
516 #define RKB(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, \
518 #define RKC(i) check_exp(getCMode(GET_OPCODE(i)) == OpArgK, \
579 vmdispatch (GET_OPCODE(i)) {
589 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_EXTRAARG);
786 lua_assert(GET_OPCODE(*((ci)->u.l.savedpc - 1)) == OP_CALL)
    [all...]
ldebug.c 346 OpCode op = GET_OPCODE(i);
401 OpCode op = GET_OPCODE(i);
450 switch (GET_OPCODE(i)) {
lopcodes.h 89 #define GET_OPCODE(i) (cast(OpCode, ((i)>>POS_OP) & MASK1(SIZE_OP,0)))
luac.c 284 OpCode o=GET_OPCODE(i);

Completed in 355 milliseconds

1 2