Lines Matching refs:opname
19 opname = ["<0>"]
20 for name in opcode.opname[1:]:
26 opname.append(name)
30 opmap = {name: i for i, name in enumerate(opname)}
120 def kind_to_text(kind, defines, opname):
123 if opname.endswith("ATTR"):
124 opname = "ATTR"
125 if opname.endswith("SUBSCR"):
126 opname = "SUBSCR"
127 if opname.startswith("PRECALL"):
128 opname = "CALL"
130 if name.startswith(opname):
131 return pretty(name[len(opname)+1:])
148 name = opname[i]
215 counts.append((count, opname[i], miss))
239 name = opname[i]
305 rows.append((opname[i] + " " + opname[j], count, f"{100*count/total:0.1f}%",
328 pred_rows = [(opname[pred], count, f"{count/total1:.1%}")
331 succ_rows = [(opname[succ], count, f"{count/total2:.1%}")