Lines Matching refs:dests
184 def __init__(self, name, opcode, opcode2, srcs = [], dests = [], immediates = [], modifiers = [], staging = None, unit = None):
187 self.dests = dests
218 assert(len(dests) == 0 or not staging)
274 # Get explicit sources/dests
290 dests = [Dest(dest.text or '') for dest in el.findall('dest')]
294 dests = dests + ([Dest()] * int(el.attrib.get('dests', 0)))
309 instr = Instruction(name, opcode, opcode2, srcs = sources, dests = dests, immediates = imms, modifiers = modifiers, staging = staging, unit = unit)