Lines Matching defs:instructions
34 # All instructions in the ISA
35 instructions = []
311 instructions.append(instr)
313 # Build all the instructions in a group by duplicating the group itself with
376 # Texture instructions share a common encoding
428 instruction_dict = { ins.name: ins for ins in instructions }
430 # Validate there are no duplicated instructions
431 if len(instruction_dict) != len(instructions):
433 counts = collections.Counter([i.name for i in instructions])
438 assert(len(instruction_dict) == len(instructions))