Lines Matching full:system
38 System.out.printf("0x%x:\t%s\t%s\n", ins.address, ins.mnemonic, ins.opStr);
43 System.out.printf("\top_count: %d\n", operands.op.length);
48 System.out.printf("\t\toperands[%d].type: SYSREG = %d\n", c, i.value.reg);
50 System.out.printf("\t\toperands[%d].type: REG = %s\n", c, ins.regName(i.value.reg));
52 System.out.printf("\t\toperands[%d].type: IMM = 0x%x\n", c, i.value.imm);
54 System.out.printf("\t\toperands[%d].type: P-IMM = %d\n", c, i.value.imm);
56 System.out.printf("\t\toperands[%d].type: C-IMM = %d\n", c, i.value.imm);
58 System.out.printf("\t\toperands[%d].type: SETEND = %s\n", c, i.value.setend == ARM_SETEND_BE? "be" : "le");
60 System.out.printf("\t\toperands[%d].type: FP = %f\n", c, i.value.fp);
62 System.out.printf("\t\toperands[%d].type: MEM\n",c);
66 System.out.printf("\t\t\toperands[%d].mem.base: REG = %s\n", c, base);
68 System.out.printf("\t\t\toperands[%d].mem.index: REG = %s\n", c, index);
70 System.out.printf("\t\t\toperands[%d].mem.scale: %d\n", c, (i.value.mem.scale));
72 System.out.printf("\t\t\toperands[%d].mem.disp: 0x%x\n", c, (i.value.mem.disp));
75 System.out.printf("\t\t\toperands[%d].vector_index = %d\n", c, (i.vector_index));
77 System.out.printf("\t\t\tShift: %d = %d\n", i.shift.type, i.shift.value);
79 System.out.printf("\t\t\toperands[%d].subtracted = True\n", c);
83 System.out.println("\tWrite-back: True");
86 System.out.println("\tUpdate-flags: True");
89 System.out.printf("\tCode condition: %d\n", operands.cc);
92 System.out.printf("\tCPSI-mode: %d\n", operands.cpsMode);
95 System.out.printf("\tCPSI-flag: %d\n", operands.cpsFlag);
98 System.out.printf("\tVector-data: %d\n", operands.vectorData);
101 System.out.printf("\tVector-size: %d\n", operands.vectorSize);
104 System.out.printf("\tUser-mode: True\n");
118 System.out.println(new String(new char[16]).replace("\0", "*"));
119 System.out.println("Platform: " + test.comment);
120 System.out.println("Code: " + Test.stringToHex(test.code));
121 System.out.println("Disasm:");
131 System.out.println();
133 System.out.printf("0x%x:\n\n", (all_ins[all_ins.length-1].address + all_ins[all_ins.length-1].size));