Home | History | Annotate | Download | only in java

Lines Matching full:system

44     System.out.printf("0x%x:\t%s\t%s\n", ins.address, ins.mnemonic, ins.opStr);
48 System.out.printf("\tPrefix: %s\n", array2hex(operands.prefix));
50 System.out.printf("\tOpcode: %s\n", array2hex(operands.opcode));
53 System.out.printf("\trex: 0x%x\n", operands.rex);
56 System.out.printf("\taddr_size: %d\n", operands.addrSize);
59 System.out.printf("\tmodrm: 0x%x\n", operands.modrm);
62 System.out.printf("\tdisp: 0x%x\n", operands.disp);
67 System.out.printf("\tsib: 0x%x\n", operands.sib);
69 System.out.printf("\t\tsib_base: %s\n\t\tsib_index: %s\n\t\tsib_scale: %d\n",
74 System.out.printf("\tsse_cc: %u\n", operands.sseCC);
77 System.out.printf("\tavx_cc: %u\n", operands.avxCC);
80 System.out.printf("\tavx_sae: TRUE\n");
83 System.out.printf("\tavx_rm: %u\n", operands.avxRm);
87 System.out.printf("\timm_count: %d\n", count);
90 System.out.printf("\t\timms[%d]: 0x%x\n", i+1, (operands.op[index].value.imm));
95 System.out.printf("\top_count: %d\n", operands.op.length);
100 System.out.printf("\t\toperands[%d].type: REG = %s\n", c, ins.regName(i.value.reg));
102 System.out.printf("\t\toperands[%d].type: IMM = 0x%x\n", c, i.value.imm);
104 System.out.printf("\t\toperands[%d].type: FP = %f\n", c, i.value.fp);
106 System.out.printf("\t\toperands[%d].type: MEM\n",c);
111 System.out.printf("\t\t\toperands[%d].mem.segment: REG = %s\n", c, segment);
113 System.out.printf("\t\t\toperands[%d].mem.base: REG = %s\n", c, base);
115 System.out.printf("\t\t\toperands[%d].mem.index: REG = %s\n", c, index);
117 System.out.printf("\t\t\toperands[%d].mem.scale: %d\n", c, i.value.mem.scale);
119 System.out.printf("\t\t\toperands[%d].mem.disp: 0x%x\n", c, i.value.mem.disp);
124 System.out.printf("\t\toperands[%d].avx_bcast: %d\n", c, i.avx_bcast);
129 System.out.printf("\t\toperands[%d].avx_zero_opmask: TRUE\n", c);
132 System.out.printf("\t\toperands[%d].size: %d\n", c, i.size);
148 System.out.println(new String(new char[16]).replace("\0", "*"));
149 System.out.println("Platform: " + test.comment);
150 System.out.println("Code: " + Test.stringToHex(test.code));
151 System.out.println("Disasm:");
162 System.out.println();
165 System.out.printf("0x%x:\n\n", all_ins[all_ins.length-1].address + all_ins[all_ins.length-1].size);