Lines Matching full:system
35 System.out.printf("0x%x:\t%s\t%s\n", ins.address, ins.mnemonic, ins.opStr);
40 System.out.printf("\top_count: %d\n", operands.op.length);
45 System.out.printf("\t\toperands[%d].type: REG = %s\n", c, ins.regName(i.value.reg));
47 System.out.printf("\t\toperands[%d].type: REG_MRS = 0x%x\n", c, i.value.reg);
49 System.out.printf("\t\toperands[%d].type: REG_MSR = 0x%x\n", c, i.value.reg);
51 System.out.printf("\t\toperands[%d].type: PSTATE = 0x%x\n", c, i.value.imm);
53 System.out.printf("\t\toperands[%d].type: BARRIER = 0x%x\n", c, i.value.imm);
56 System.out.printf("\t\toperands[%d].type: IMM = 0x%x\n", c, i.value.imm);
58 System.out.printf("\t\toperands[%d].type: C-IMM = %d\n", c, i.value.imm);
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.disp: 0x%x\n", c, i.value.mem.disp);
73 System.out.printf("\t\t\tShift: type = %d, value = %d\n", i.shift.type, i.shift.value);
75 System.out.printf("\t\t\tExt: %d\n", i.ext);
77 System.out.printf("\t\t\tVector Arrangement Specifier: 0x%x\n", i.vas);
79 System.out.printf("\t\t\tVector Element Size Specifier: %d\n", i.vess);
81 System.out.printf("\t\t\tVector Index: %d\n", i.vector_index);
87 System.out.println("\tWrite-back: True");
90 System.out.println("\tUpdate-flags: True");
93 System.out.printf("\tCode-condition: %d\n", operands.cc);
105 System.out.println(new String(new char[16]).replace("\0", "*"));
106 System.out.println("Platform: " + test.comment);
107 System.out.println("Code: " + Test.stringToHex(test.code));
108 System.out.println("Disasm:");
116 System.out.println();
119 System.out.printf("0x%x: \n\n", all_ins[all_ins.length-1].address + all_ins[all_ins.length-1].size);