Home | History | Annotate | Download | only in llvm-readobj

Lines Matching full:opcode1

108   uint8_t Opcode1 = Opcodes[OI++ ^ 3];
110 uint16_t GPRMask = (Opcode1 << 4) | ((Opcode0 & 0x0f) << 12);
113 Opcode0, Opcode1, GPRMask ? "pop " : "refuse to unwind");
149 uint8_t Opcode1 = Opcodes[OI++ ^ 3];
152 << format("0x%02X 0x%02X ; %s", Opcode0, Opcode1,
153 ((Opcode1 & 0xf0) || Opcode1 == 0x00) ? "spare" : "pop ");
154 if (((Opcode1 & 0xf0) == 0x00) && Opcode1)
155 PrintGPR((Opcode1 & 0x0f));
178 uint8_t Opcode1 = Opcodes[OI++ ^ 3];
179 SW.startLine() << format("0x%02X 0x%02X ; pop ", Opcode0, Opcode1);
180 uint8_t Start = ((Opcode1 & 0xf0) >> 4);
181 uint8_t Count = ((Opcode1 & 0x0f) >> 0);
198 uint8_t Opcode1 = Opcodes[OI++ ^ 3];
199 SW.startLine() << format("0x%02X 0x%02X ; pop ", Opcode0, Opcode1);
200 uint8_t Start = ((Opcode1 & 0xf0) >> 4);
201 uint8_t Count = ((Opcode1 & 0x0f) >> 0);
208 uint8_t Opcode1 = Opcodes[OI++ ^ 3];
210 << format("0x%02X 0x%02X ; %s", Opcode0, Opcode1,
211 ((Opcode1 & 0xf0) || Opcode1 == 0x00) ? "spare" : "pop ");
212 if ((Opcode1 & 0xf0) == 0x00 && Opcode1)
213 PrintRegisters(Opcode1 & 0x0f, "wCGR");
219 uint8_t Opcode1 = Opcodes[OI++ ^ 3];
220 SW.startLine() << format("0x%02X 0x%02X ; pop ", Opcode0, Opcode1);
221 uint8_t Start = 16 + ((Opcode1 & 0xf0) >> 4);
222 uint8_t Count = ((Opcode1 & 0x0f) >> 0);
229 uint8_t Opcode1 = Opcodes[OI++ ^ 3];
230 SW.startLine() << format("0x%02X 0x%02X ; pop ", Opcode0, Opcode1);
231 uint8_t Start = ((Opcode1 & 0xf0) >> 4);
232 uint8_t Count = ((Opcode1 & 0x0f) >> 0);