Lines Matching defs:opcodes
138 } opcodes[] = {
164 for (op = 0; op < ARRAY_SIZE(opcodes); op++) {
165 if ((data[0] & 0x1f800000) >> 23 == opcodes[op].opcode) {
168 kgem_debug_print(data, offset, 0, "%s\n", opcodes[op].name);
169 if (opcodes[op].max_len > 1) {
170 len = (data[0] & opcodes[op].len_mask) + 2;
171 if (len < opcodes[op].min_len ||
172 len > opcodes[op].max_len)
175 len, opcodes[op].name,
176 opcodes[op].min_len,
177 opcodes[op].max_len);
202 } opcodes[] = {
348 for (op = 0; op < ARRAY_SIZE(opcodes); op++) {
349 if ((data[0] & 0x1fc00000) >> 22 == opcodes[op].opcode) {
353 kgem_debug_print(data, offset, 0, "%s\n", opcodes[op].name);
354 if (opcodes[op].max_len > 1) {
356 assert(len >= opcodes[op].min_len &&
357 len <= opcodes[op].max_len);
380 } opcodes[] = {
519 for (op = 0; op < ARRAY_SIZE(opcodes); op++) {
520 if ((data[0] & 0x1fc00000) >> 22 == opcodes[op].opcode) {
524 kgem_debug_print(data, offset, 0, "%s\n", opcodes[op].name);
525 if (opcodes[op].max_len > 1) {
527 assert(len >= opcodes[op].min_len &&
528 len <= opcodes[op].max_len);