Lines Matching refs:matches
143 def DtUntypedToLLVM(matches):
145 if matches[1] == "untyped8":
147 elif matches[1] == "untyped16":
149 elif matches[1] == "untyped32":
154 return "{}.{} {}, {}, {}".format(matches[0], dt, matches[2], matches[3], matches[4])
182 # look like. Empty curly braces are replaced by matches, in order.
259 def ConvertMovRdImm(matches):
267 imm = int(matches[1], 16)
271 return "mov.w {}, #{}".format(*matches)
273 return "mov {}, #{}".format(*matches)