mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2025-12-15 16:40:05 +01:00
Changes for operand matching, instruction loading
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -1,180 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
from collections import defaultdict
|
||||
from fractions import Fraction
|
||||
|
||||
|
||||
class EntryBuilder:
|
||||
@staticmethod
|
||||
def compute_throughput(port_pressure):
|
||||
port_occupancy = defaultdict(Fraction)
|
||||
for uops, ports in port_pressure:
|
||||
for p in ports:
|
||||
port_occupancy[p] += Fraction(uops, len(ports))
|
||||
return float(max(list(port_occupancy.values()) + [0]))
|
||||
|
||||
@staticmethod
|
||||
def classify(operands_types):
|
||||
load = "mem" in operands_types[:-1]
|
||||
store = "mem" in operands_types[-1:]
|
||||
vec = False
|
||||
if any([vecr in operands_types for vecr in ["mm", "xmm", "ymm", "zmm"]]):
|
||||
vec = True
|
||||
assert not (load and store), "Can not process a combined load-store instruction."
|
||||
return load, store, vec
|
||||
|
||||
def build_description(
|
||||
self, instruction_name, operand_types, port_pressure=[], latency=0, comment=None
|
||||
):
|
||||
if comment:
|
||||
comment = " # " + comment
|
||||
else:
|
||||
comment = ""
|
||||
description = "- name: {}{}\n operands: {}\n".format(
|
||||
instruction_name, comment, "[]" if len(operand_types) == 0 else ""
|
||||
)
|
||||
|
||||
for ot in operand_types:
|
||||
if ot == "imd":
|
||||
description += " - class: immediate\n imd: int\n"
|
||||
elif ot.startswith("mem"):
|
||||
description += " - class: memory\n" ' base: "*"\n' ' offset: "*"\n'
|
||||
if ot == "mem_simple":
|
||||
description += " index: ~\n"
|
||||
elif ot == "mem_complex":
|
||||
description += " index: gpr\n"
|
||||
else:
|
||||
description += ' index: "*"\n'
|
||||
description += ' scale: "*"\n'
|
||||
else:
|
||||
if "{k}" in ot:
|
||||
description += " - class: register\n name: {}\n mask: True\n".format(
|
||||
ot.replace("{k}", "")
|
||||
)
|
||||
else:
|
||||
description += " - class: register\n name: {}\n".format(ot)
|
||||
|
||||
description += (
|
||||
" latency: {latency}\n"
|
||||
" port_pressure: {port_pressure!r}\n"
|
||||
" throughput: {throughput}\n"
|
||||
" uops: {uops}\n"
|
||||
).format(
|
||||
latency=latency,
|
||||
port_pressure=port_pressure,
|
||||
throughput=self.compute_throughput(port_pressure),
|
||||
uops=sum([i for i, p in port_pressure]),
|
||||
)
|
||||
return description
|
||||
|
||||
def parse_port_pressure(self, port_pressure_str):
|
||||
"""
|
||||
Example:
|
||||
1*p45+2*p0+2*p10,11 -> [[1, '45'], [2, '0'], [2, ['10', '11']]]
|
||||
"""
|
||||
port_pressure = []
|
||||
if port_pressure_str:
|
||||
for p in port_pressure_str.split("+"):
|
||||
cycles, ports = p.split("*p")
|
||||
ports = ports.split(",")
|
||||
if len(ports) == 1:
|
||||
ports = ports[0]
|
||||
else:
|
||||
ports = list(filter(lambda p: len(p) > 0, ports))
|
||||
|
||||
port_pressure.append([int(cycles), ports])
|
||||
return port_pressure
|
||||
|
||||
def process_item(self, instruction_form, resources):
|
||||
"""
|
||||
Example:
|
||||
('mov xmm mem', ('1*p45+2*p0', 7) -> ('mov', ['xmm', 'mem'], [[1, '45'], [2, '0']], 7)
|
||||
"""
|
||||
if instruction_form.startswith("[") and "]" in instruction_form:
|
||||
instr_elements = instruction_form.split("]")
|
||||
instr_elements = [instr_elements[0] + "]"] + instr_elements[1].strip().split(" ")
|
||||
else:
|
||||
instr_elements = instruction_form.split(" ")
|
||||
latency = int(resources[1])
|
||||
port_pressure = self.parse_port_pressure(resources[0])
|
||||
instruction_name = instr_elements[0]
|
||||
operand_types = instr_elements[1:]
|
||||
return self.build_description(instruction_name, operand_types, port_pressure, latency)
|
||||
|
||||
|
||||
class ArchEntryBuilder(EntryBuilder):
|
||||
def build_description(self, instruction_name, operand_types, port_pressure=[], latency=0):
|
||||
# Intel ICX
|
||||
# LD_pressure = [[1, "23"], [1, ["2D", "3D"]]]
|
||||
# LD_pressure_vec = LD_pressure
|
||||
# ST_pressure = [[1, "79"], [1, "48"]]
|
||||
# ST_pressure_vec = ST_pressure
|
||||
# LD_lat = 5
|
||||
# ST_lat = 0
|
||||
# Zen3
|
||||
LD_pressure = [[1, ["11", "12", "13"]]]
|
||||
LD_pressure_vec = [[1, ["11", "12"]]]
|
||||
ST_pressure = [[1, ["12", "13"]]]
|
||||
ST_pressure_vec = [[1, ["4"]], [1, ["13"]]]
|
||||
LD_lat = 4
|
||||
ST_lat = 0
|
||||
|
||||
load, store, vec = self.classify(operand_types)
|
||||
|
||||
if load:
|
||||
if vec:
|
||||
port_pressure += LD_pressure_vec
|
||||
else:
|
||||
port_pressure += LD_pressure
|
||||
latency += LD_lat
|
||||
comment = "with load"
|
||||
return EntryBuilder.build_description(
|
||||
self, instruction_name, operand_types, port_pressure, latency, comment
|
||||
)
|
||||
if store:
|
||||
if vec:
|
||||
port_pressure = port_pressure + ST_pressure_vec
|
||||
else:
|
||||
port_pressure = port_pressure + ST_pressure
|
||||
operands = ["mem" if o == "mem" else o for o in operand_types]
|
||||
latency += ST_lat
|
||||
return EntryBuilder.build_description(
|
||||
self,
|
||||
instruction_name,
|
||||
operands,
|
||||
port_pressure,
|
||||
latency,
|
||||
"with store",
|
||||
)
|
||||
|
||||
# Register only:
|
||||
return EntryBuilder.build_description(
|
||||
self, instruction_name, operand_types, port_pressure, latency
|
||||
)
|
||||
|
||||
|
||||
def get_description(instruction_form, port_pressure, latency, rhs_comment=None):
|
||||
entry = ArchEntryBuilder().process_item(instruction_form, (port_pressure, latency))
|
||||
|
||||
if rhs_comment is not None:
|
||||
max_length = max([len(line) for line in entry.split("\n")])
|
||||
|
||||
commented_entry = ""
|
||||
for line in entry.split("\n"):
|
||||
commented_entry += ("{:<" + str(max_length) + "} # {}\n").format(line, rhs_comment)
|
||||
entry = commented_entry
|
||||
|
||||
return entry
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
import sys
|
||||
|
||||
if len(sys.argv) != 4 and len(sys.argv) != 5:
|
||||
print("Usage: {} <INSTRUCTION> <PORT_PRESSURE> <LATENCY> [COMMENT]".format(sys.argv[0]))
|
||||
sys.exit(0)
|
||||
|
||||
try:
|
||||
print(get_description(*sys.argv[1:]))
|
||||
except KeyError:
|
||||
print("Unknown architecture.")
|
||||
sys.exit(1)
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,309 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
import argparse
|
||||
import os.path
|
||||
import sys
|
||||
import xml.etree.ElementTree as ET
|
||||
from distutils.version import StrictVersion
|
||||
|
||||
from osaca.parser import get_parser
|
||||
from osaca.semantics import MachineModel
|
||||
|
||||
intel_archs = [
|
||||
"CON",
|
||||
"WOL",
|
||||
"NHM",
|
||||
"WSM",
|
||||
"SNB",
|
||||
"IVB",
|
||||
"HSW",
|
||||
"BDW",
|
||||
"SKL",
|
||||
"SKX",
|
||||
"KBL",
|
||||
"CFL",
|
||||
"CNL",
|
||||
"ICL",
|
||||
]
|
||||
amd_archs = ["ZEN1", "ZEN+", "ZEN2"]
|
||||
|
||||
|
||||
def port_pressure_from_tag_attributes(attrib):
|
||||
# '1*p015+1*p1+1*p23+1*p4+3*p5' ->
|
||||
# [[1, '015'], [1, '1'], [1, '23'], [1, '4'], [3, '5']]
|
||||
port_occupation = []
|
||||
for p in attrib["ports"].split("+"):
|
||||
cycles, ports = p.split("*")
|
||||
ports = ports.lstrip("p")
|
||||
ports = ports.lstrip("FP")
|
||||
port_occupation.append([int(cycles), ports])
|
||||
|
||||
# Also consider div on DIV pipeline
|
||||
if "div_cycles" in attrib:
|
||||
port_occupation.append([int(attrib["div_cycles"]), ["DIV"]])
|
||||
|
||||
return port_occupation
|
||||
|
||||
|
||||
def extract_paramters(instruction_tag, parser, isa):
|
||||
# Extract parameter components
|
||||
parameters = [] # used to store string representations
|
||||
parameter_tags = sorted(instruction_tag.findall("operand"), key=lambda p: int(p.attrib["idx"]))
|
||||
for parameter_tag in parameter_tags:
|
||||
parameter = {}
|
||||
# Ignore parameters with suppressed=1
|
||||
if int(parameter_tag.attrib.get("suppressed", "0")):
|
||||
continue
|
||||
|
||||
p_type = parameter_tag.attrib["type"]
|
||||
if p_type == "imm":
|
||||
parameter["class"] = "immediate"
|
||||
parameter["imd"] = "int"
|
||||
parameters.append(parameter)
|
||||
elif p_type == "mem":
|
||||
parameter["class"] = "memory"
|
||||
parameter["base"] = "*"
|
||||
parameter["offset"] = "*"
|
||||
parameter["index"] = "*"
|
||||
parameter["scale"] = "*"
|
||||
parameters.append(parameter)
|
||||
elif p_type == "reg":
|
||||
parameter["class"] = "register"
|
||||
possible_regs = [parser.parse_register("%" + r) for r in parameter_tag.text.split(",")]
|
||||
if possible_regs[0] is None:
|
||||
raise ValueError(
|
||||
"Unknown register type for {} with {}.".format(
|
||||
parameter_tag.attrib, parameter_tag.text
|
||||
)
|
||||
)
|
||||
if isa == "x86":
|
||||
if parser.is_vector_register(possible_regs[0]["register"]):
|
||||
possible_regs[0]["register"]["name"] = possible_regs[0]["register"][
|
||||
"name"
|
||||
].lower()[:3]
|
||||
if "mask" in possible_regs[0]["register"]:
|
||||
possible_regs[0]["register"]["mask"] = True
|
||||
else:
|
||||
possible_regs[0]["register"]["name"] = "gpr"
|
||||
elif isa == "aarch64":
|
||||
del possible_regs["register"]["name"]
|
||||
for key in possible_regs[0]["register"]:
|
||||
parameter[key] = possible_regs[0]["register"][key]
|
||||
parameters.append(parameter)
|
||||
elif p_type == "relbr":
|
||||
parameter["class"] = "identifier"
|
||||
parameters.append(parameter)
|
||||
elif p_type == "agen":
|
||||
parameter["class"] = "memory"
|
||||
parameter["base"] = "*"
|
||||
parameter["offset"] = "*"
|
||||
parameter["index"] = "*"
|
||||
parameter["scale"] = "*"
|
||||
parameters.append(parameter)
|
||||
else:
|
||||
raise ValueError("Unknown paramter type {}".format(parameter_tag.attrib))
|
||||
return parameters
|
||||
|
||||
|
||||
def extract_model(tree, arch, skip_mem=True):
|
||||
try:
|
||||
isa = MachineModel.get_isa_for_arch(arch)
|
||||
except Exception:
|
||||
print("Skipping...", file=sys.stderr)
|
||||
return None
|
||||
mm = MachineModel(isa=isa)
|
||||
parser = get_parser(isa)
|
||||
|
||||
for instruction_tag in tree.findall(".//instruction"):
|
||||
ignore = False
|
||||
|
||||
mnemonic = instruction_tag.attrib["asm"]
|
||||
iform = instruction_tag.attrib["iform"]
|
||||
# reduce to second part if mnemonic contain space (e.g., "REX CRC32")
|
||||
if " " in mnemonic:
|
||||
mnemonic = mnemonic.split(" ", 1)[1]
|
||||
|
||||
# Extract parameter components
|
||||
try:
|
||||
parameters = extract_paramters(instruction_tag, parser, isa)
|
||||
if isa == "x86":
|
||||
parameters.reverse()
|
||||
except ValueError as e:
|
||||
print(e, file=sys.stderr)
|
||||
|
||||
# Extract port occupation, throughput and latency
|
||||
port_pressure, throughput, latency, uops = [], None, None, None
|
||||
arch_tag = instruction_tag.find('architecture[@name="' + arch.upper() + '"]')
|
||||
if arch_tag is None:
|
||||
continue
|
||||
# skip any instructions without port utilization
|
||||
if not any(["ports" in x.attrib for x in arch_tag.findall("measurement")]):
|
||||
print("Couldn't find port utilization, skip: ", iform, file=sys.stderr)
|
||||
continue
|
||||
# skip if measured TP is smaller than computed
|
||||
if [
|
||||
float(x.attrib["TP_ports"])
|
||||
> min(float(x.attrib["TP_loop"]), float(x.attrib["TP_unrolled"]))
|
||||
for x in arch_tag.findall("measurement")
|
||||
][0]:
|
||||
print(
|
||||
"Calculated TP is greater than measured TP.",
|
||||
iform,
|
||||
file=sys.stderr,
|
||||
)
|
||||
# skip if instruction contains memory operand
|
||||
if skip_mem and any(
|
||||
[x.attrib["type"] == "mem" for x in instruction_tag.findall("operand")]
|
||||
):
|
||||
print("Contains memory operand, skip: ", iform, file=sys.stderr)
|
||||
continue
|
||||
# We collect all measurement and IACA information and compare them later
|
||||
for measurement_tag in arch_tag.iter("measurement"):
|
||||
if "TP_ports" in measurement_tag.attrib:
|
||||
throughput = float(measurement_tag.attrib["TP_ports"])
|
||||
else:
|
||||
throughput = min(
|
||||
measurement_tag.attrib.get("TP_loop", float("inf")),
|
||||
measurement_tag.attrib.get("TP_unroll", float("inf")),
|
||||
measurement_tag.attrib.get("TP", float("inf")),
|
||||
)
|
||||
if throughput == float("inf"):
|
||||
throughput = None
|
||||
uops = (
|
||||
int(measurement_tag.attrib["uops"]) if "uops" in measurement_tag.attrib else None
|
||||
)
|
||||
if "ports" in measurement_tag.attrib:
|
||||
port_pressure.append(port_pressure_from_tag_attributes(measurement_tag.attrib))
|
||||
latencies = [
|
||||
int(l_tag.attrib["cycles"])
|
||||
for l_tag in measurement_tag.iter("latency")
|
||||
if "cycles" in l_tag.attrib
|
||||
]
|
||||
if len(latencies) == 0:
|
||||
latencies = [
|
||||
int(l_tag.attrib["max_cycles"])
|
||||
for l_tag in measurement_tag.iter("latency")
|
||||
if "max_cycles" in l_tag.attrib
|
||||
]
|
||||
if latencies[1:] != latencies[:-1]:
|
||||
print(
|
||||
"Contradicting latencies found, using smallest:",
|
||||
iform,
|
||||
latencies,
|
||||
file=sys.stderr,
|
||||
)
|
||||
if latencies:
|
||||
latency = min(latencies)
|
||||
if ignore:
|
||||
continue
|
||||
|
||||
# Ordered by IACA version (newest last)
|
||||
for iaca_tag in sorted(
|
||||
arch_tag.iter("IACA"), key=lambda i: StrictVersion(i.attrib["version"])
|
||||
):
|
||||
if "ports" in iaca_tag.attrib:
|
||||
port_pressure.append(port_pressure_from_tag_attributes(iaca_tag.attrib))
|
||||
|
||||
# Check if all are equal
|
||||
if port_pressure:
|
||||
if port_pressure[1:] != port_pressure[:-1]:
|
||||
print(
|
||||
"Contradicting port occupancies, using latest IACA:",
|
||||
iform,
|
||||
file=sys.stderr,
|
||||
)
|
||||
port_pressure = port_pressure[-1]
|
||||
else:
|
||||
# print("No data available for this architecture:", mnemonic, file=sys.stderr)
|
||||
continue
|
||||
|
||||
# Adding Intel's 2D and 3D pipelines on Intel µarchs, without Ice Lake:
|
||||
if arch.upper() in intel_archs and not arch.upper() in ["ICL"]:
|
||||
if any([p["class"] == "memory" for p in parameters]):
|
||||
# We have a memory parameter, if ports 2 & 3 are present, also add 2D & 3D
|
||||
# TODO remove port7 on 'hsw' onward and split entries depending on addressing mode
|
||||
port_23 = False
|
||||
port_4 = False
|
||||
for i, pp in enumerate(port_pressure):
|
||||
if "2" in pp[1] and "3" in pp[1]:
|
||||
port_23 = True
|
||||
if "4" in pp[1]:
|
||||
port_4 = True
|
||||
# Add (x, ['2D', '3D']) if load ports (2 & 3) are used, but not the store port (4)
|
||||
if port_23 and not port_4:
|
||||
if (
|
||||
arch.upper() in ["SNB", "IVB"]
|
||||
and any([p.get("name", "") == "ymm" for p in parameters])
|
||||
and not ("128" in mnemonic)
|
||||
):
|
||||
# x = 2 if SNB or IVB and ymm regiser in any operand and not '128' in
|
||||
# instruction name
|
||||
port2D3D_pressure = 2
|
||||
else:
|
||||
# otherwiese x = 1
|
||||
port2D3D_pressure = 1
|
||||
port_pressure.append((port2D3D_pressure, ["2D", "3D"]))
|
||||
|
||||
# Add missing ports:
|
||||
for ports in [pp[1] for pp in port_pressure]:
|
||||
for p in ports:
|
||||
mm.add_port(p)
|
||||
|
||||
throughput = max(mm.average_port_pressure(port_pressure))
|
||||
mm.set_instruction(mnemonic, parameters, latency, port_pressure, throughput, uops)
|
||||
# TODO eliminate entries which could be covered by automatic load / store expansion
|
||||
return mm
|
||||
|
||||
|
||||
def rhs_comment(uncommented_string, comment):
|
||||
max_length = max([len(line) for line in uncommented_string.split("\n")])
|
||||
|
||||
commented_string = ""
|
||||
for line in uncommented_string.split("\n"):
|
||||
commented_string += ("{:<" + str(max_length) + "} # {}\n").format(line, comment)
|
||||
return commented_string
|
||||
|
||||
|
||||
def architectures(tree):
|
||||
return set([a.attrib["name"] for a in tree.findall(".//architecture")])
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("xml", help="path of instructions.xml from http://uops.info")
|
||||
parser.add_argument(
|
||||
"arch",
|
||||
nargs="?",
|
||||
help="architecture to extract, use IACA abbreviations (e.g., SNB). "
|
||||
"if not given, all will be extracted and saved to file in CWD.",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--mem",
|
||||
dest="skip_mem",
|
||||
action="store_false",
|
||||
help="add instruction forms including memory addressing operands, which are "
|
||||
"skipped by default",
|
||||
)
|
||||
args = parser.parse_args()
|
||||
basename = os.path.basename(__file__)
|
||||
|
||||
tree = ET.parse(args.xml)
|
||||
print("# Available architectures:", ", ".join(architectures(tree)))
|
||||
if args.arch:
|
||||
print("# Chosen architecture: {}".format(args.arch))
|
||||
model = extract_model(tree, args.arch, args.skip_mem)
|
||||
if model is not None:
|
||||
print(rhs_comment(model.dump(), "uops.info import"))
|
||||
else:
|
||||
for arch in architectures(tree):
|
||||
print(arch, end="")
|
||||
model = extract_model(tree, arch.lower(), args.skip_mem)
|
||||
if model:
|
||||
model_string = rhs_comment(model.dump(), basename + " " + arch)
|
||||
|
||||
with open("{}.yml".format(arch.lower()), "w") as f:
|
||||
f.write(model_string)
|
||||
print(".")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -1,321 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
import argparse
|
||||
import json
|
||||
import math
|
||||
import re
|
||||
import sys
|
||||
|
||||
from asmbench import bench, op
|
||||
from osaca.semantics import MachineModel
|
||||
|
||||
|
||||
def build_bench_instruction(name, operands):
|
||||
# Converts an OSACA model instruction to an asmbench one.
|
||||
# Returns `None` in case something went wrong.
|
||||
asmbench_inst = name
|
||||
direction = "dst"
|
||||
separator = " "
|
||||
shift = ""
|
||||
for operand in operands:
|
||||
if operand["class"] == "register" or operand["class"] == "register_shift":
|
||||
if operand["prefix"] == "x":
|
||||
shape = "i64"
|
||||
constraint = "r"
|
||||
elif operand["prefix"] == "s":
|
||||
shape = "float"
|
||||
constraint = "w"
|
||||
elif operand["prefix"] == "d":
|
||||
shape = "double"
|
||||
constraint = "w"
|
||||
elif operand["prefix"] == "v":
|
||||
constraint = "w"
|
||||
if operand["shape"] == "b":
|
||||
shape = "<16 x i8>"
|
||||
elif operand["shape"] == "h":
|
||||
shape = "<8 x i16>"
|
||||
elif operand["shape"] == "s":
|
||||
shape = "<4 x float>"
|
||||
elif operand["shape"] == "d":
|
||||
shape = "<2 x double>"
|
||||
else:
|
||||
return None
|
||||
else:
|
||||
return None
|
||||
if operand["class"] == "register_shift":
|
||||
shift = ", {}".format(operand["shift_op"])
|
||||
if operand["shift"] is not None:
|
||||
shift += " {}".format(operand["shift"])
|
||||
elif operand["class"] == "immediate" or operand["class"] == "immediate_shift":
|
||||
shape = "i32"
|
||||
# Different instructions have different ranges for literaly,
|
||||
# so need to pick something "reasonable" for each.
|
||||
if name in [
|
||||
"cmeq",
|
||||
"cmge",
|
||||
"cmgt",
|
||||
"cmle",
|
||||
"cmlt",
|
||||
"fcmeq",
|
||||
"fcmge",
|
||||
"fcmgt",
|
||||
"fcmle",
|
||||
"fcmlt",
|
||||
"fcmp",
|
||||
]:
|
||||
constraint = "0"
|
||||
elif name in ["and", "ands", "eor", "eors", "orr", "orrs"]:
|
||||
constraint = "255"
|
||||
elif name in ["bfi", "extr", "sbfiz", "sbfx", "shl", "sshr", "ubfiz", "ubfx", "ushr"]:
|
||||
constraint = "7"
|
||||
else:
|
||||
constraint = "42"
|
||||
if operand["class"] == "immediate_shift":
|
||||
shift = ", {}".format(operand["shift_op"])
|
||||
if operand["shift"] is not None:
|
||||
shift += " {}".format(operand["shift"])
|
||||
else:
|
||||
return None
|
||||
asmbench_inst += "{}{{{}:{}:{}}}{}".format(separator, direction, shape, constraint, shift)
|
||||
direction = "src"
|
||||
separator = ", "
|
||||
return asmbench_inst
|
||||
|
||||
|
||||
def bench_instruction(name, operands):
|
||||
# Converts an OSACA model instruction to an asmbench one and benchmarks it.
|
||||
# Returned tuple may contain a `None` in case something went wrong.
|
||||
asmbench_inst = build_bench_instruction(name, operands)
|
||||
if asmbench_inst is None:
|
||||
return (None, None)
|
||||
return bench.bench_instructions([op.Instruction.from_string(asmbench_inst)])
|
||||
|
||||
|
||||
def round_cycles(value):
|
||||
if value < 0.9:
|
||||
# Frequently found, so we might want to include them.
|
||||
# Measurements over-estimate a lot here, hence the high bound.
|
||||
return 0.5
|
||||
else:
|
||||
# Measurements usually over-estimate, so usually round down,
|
||||
# but still allow slightly smaller values.
|
||||
return float(math.floor(value + 0.1))
|
||||
|
||||
|
||||
def operand_parse(op, state):
|
||||
# Parses an operand from an PMEvo instruction and emits an OSACA model one.
|
||||
# State object is used to keep track of types for future operands, e.g. literals.
|
||||
# Future invocations may also modify previously returned objects.
|
||||
parameter = {}
|
||||
|
||||
if op.startswith("_((REG:"):
|
||||
parts = op.split(".")
|
||||
register = parts[0][7:-2]
|
||||
read_write, register_type, bits = register.split(":")
|
||||
|
||||
parameter["class"] = "register"
|
||||
if register_type == "G":
|
||||
if bits == "32":
|
||||
parameter["prefix"] = "r"
|
||||
elif bits == "64":
|
||||
parameter["prefix"] = "x"
|
||||
else:
|
||||
raise ValueError("Invalid register bits for {} {}".format(register_type, bits))
|
||||
elif register_type == "F":
|
||||
if bits == "32":
|
||||
parameter["prefix"] = "s"
|
||||
state["type"] = "float"
|
||||
elif bits == "64":
|
||||
parameter["prefix"] = "d"
|
||||
state["type"] = "double"
|
||||
elif bits == "128":
|
||||
parameter["prefix"] = "q"
|
||||
elif bits == "VEC":
|
||||
vec_shape = parts[1]
|
||||
parameter["prefix"] = "v"
|
||||
if vec_shape == "16b":
|
||||
parameter["shape"] = "b"
|
||||
elif vec_shape == "8h":
|
||||
parameter["shape"] = "h"
|
||||
elif vec_shape == "4s":
|
||||
parameter["shape"] = "s"
|
||||
state["type"] = "float"
|
||||
elif vec_shape == "2d":
|
||||
parameter["shape"] = "d"
|
||||
state["type"] = "double"
|
||||
else:
|
||||
raise ValueError("Invalid vector shape {}".format(vec_shape))
|
||||
else:
|
||||
raise ValueError("Invalid register bits for {} {}".format(register_type, bits))
|
||||
else:
|
||||
raise ValueError("Unknown register type {}".format(register_type))
|
||||
elif op.startswith("_[((MEM:"):
|
||||
bits = op[8:-2].split(":")[0]
|
||||
if bits == "64":
|
||||
state["memory_base"] = "x"
|
||||
else:
|
||||
raise ValueError("Invalid register bits for MEM {}".format(bits))
|
||||
return None
|
||||
elif op.startswith("_((MIMM:"):
|
||||
bits = op[8:-3].split(":")[0]
|
||||
if bits == "16":
|
||||
parameter["class"] = "memory"
|
||||
parameter["base"] = state["memory_base"]
|
||||
parameter["offset"] = "imd"
|
||||
parameter["index"] = "*"
|
||||
parameter["scale"] = "*"
|
||||
parameter["post-indexed"] = False
|
||||
parameter["pre-indexed"] = False
|
||||
else:
|
||||
raise ValueError("Invalid register bits for MEM {}".format(bits))
|
||||
elif re.fullmatch("_#?-?(0x)?[0-9a-f]+", op):
|
||||
parameter["class"] = "immediate"
|
||||
parameter["imd"] = "int"
|
||||
elif re.fullmatch("_#?-?[0-9]*\\.[0-9]*", op):
|
||||
parameter["class"] = "immediate"
|
||||
parameter["imd"] = state["type"]
|
||||
elif re.fullmatch("_((sxt|uxt)[bhw]|lsl|lsr|asr|rol|ror)(_[0-9]+)?", op):
|
||||
# split = op[1:].split('_')
|
||||
# shift_op = split[0]
|
||||
# shift = None
|
||||
# if len(split) >= 2:
|
||||
# shift = split[1]
|
||||
# state['previous']['class'] += '_shift'
|
||||
# state['previous']['shift_op'] = shift_op
|
||||
# if shift != None:
|
||||
# state['previous']['shift'] = shift
|
||||
# return None
|
||||
raise ValueError("Skipping instruction with shift operand: {}".format(op))
|
||||
else:
|
||||
raise ValueError("Unknown operand {}".format(op))
|
||||
|
||||
state["previous"] = parameter
|
||||
return parameter
|
||||
|
||||
|
||||
def port_convert(ports):
|
||||
# Try to merge repeated entries together and emit in OSACA's format.
|
||||
# FIXME: This does not handle having more than 10 ports.
|
||||
pressures = []
|
||||
previous = None
|
||||
cycles = 0
|
||||
|
||||
for entry in ports:
|
||||
possible_ports = "".join(entry)
|
||||
|
||||
if possible_ports != previous:
|
||||
if previous is not None:
|
||||
pressures.append([cycles, previous])
|
||||
previous = possible_ports
|
||||
cycles = 0
|
||||
|
||||
cycles += 1
|
||||
|
||||
if previous is not None:
|
||||
pressures.append([cycles, previous])
|
||||
|
||||
return pressures
|
||||
|
||||
|
||||
def throughput_guess(ports):
|
||||
# Minimum amount of possible ports per cycle should determine throughput
|
||||
# to some degree of accuracy. (THIS IS *NOT* ALWAYS TRUE!)
|
||||
bottleneck_ports = min(map(lambda it: len(it), ports))
|
||||
return float(len(ports)) / bottleneck_ports
|
||||
|
||||
|
||||
def latency_guess(ports):
|
||||
# Each entry in the ports array equates to one cycle on any of the ports.
|
||||
# So this is about as good as it is going to get.
|
||||
return float(len(ports))
|
||||
|
||||
|
||||
def extract_model(mapping, arch, template_model, asmbench):
|
||||
try:
|
||||
isa = MachineModel.get_isa_for_arch(arch)
|
||||
except ValueError:
|
||||
print("Skipping...", file=sys.stderr)
|
||||
return None
|
||||
if template_model is None:
|
||||
mm = MachineModel(isa=isa)
|
||||
else:
|
||||
mm = template_model
|
||||
|
||||
for port in mapping["arch"]["ports"]:
|
||||
mm.add_port(port)
|
||||
|
||||
for insn in mapping["arch"]["insns"]:
|
||||
try:
|
||||
ports = mapping["assignment"][insn]
|
||||
|
||||
# Parse instruction
|
||||
insn_split = insn.split("_")
|
||||
name = insn_split[1]
|
||||
insn_parts = list(("_" + "_".join(insn_split[2:])).split(","))
|
||||
operands = []
|
||||
state = {}
|
||||
for operand in insn_parts:
|
||||
parsed = operand_parse(operand, state)
|
||||
if parsed is not None:
|
||||
operands.append(parsed)
|
||||
|
||||
# Port pressures from mapping
|
||||
port_pressure = port_convert(ports)
|
||||
|
||||
# Initial guessed throughput and latency
|
||||
throughput = throughput_guess(ports)
|
||||
latency = latency_guess(ports)
|
||||
|
||||
# Benchmark with asmbench
|
||||
# print(build_bench_instruction(name, operands))
|
||||
if asmbench:
|
||||
bench_latency, bench_throughput = bench_instruction(name, operands)
|
||||
if bench_throughput is not None:
|
||||
throughput = round_cycles(bench_throughput)
|
||||
else:
|
||||
print("Failed to measure throughput for instruction {}.".format(insn))
|
||||
if bench_latency is not None:
|
||||
latency = round_cycles(bench_latency)
|
||||
else:
|
||||
print("Failed to measure latency for instruction {}.".format(insn))
|
||||
|
||||
# No u-ops data available
|
||||
uops = None
|
||||
|
||||
# Insert instruction if not already found (can happen with template)
|
||||
if mm.get_instruction(name, operands) is None:
|
||||
mm.set_instruction(name, operands, latency, port_pressure, throughput, uops)
|
||||
except ValueError as e:
|
||||
print("Failed to parse instruction {}: {}.".format(insn, e))
|
||||
|
||||
return mm
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("json", help="path of mapping.json")
|
||||
parser.add_argument("yaml", help="path of template.yml", nargs="?")
|
||||
parser.add_argument(
|
||||
"--asmbench", help="Benchmark latency and throughput using asmbench.", action="store_true"
|
||||
)
|
||||
args = parser.parse_args()
|
||||
|
||||
json_file = open(args.json, "r")
|
||||
mapping = json.load(json_file)
|
||||
arch = mapping["arch"]["name"].lower()
|
||||
json_file.close()
|
||||
|
||||
template_model = None
|
||||
if args.yaml is not None:
|
||||
template_model = MachineModel(path_to_yaml=args.yaml)
|
||||
|
||||
if args.asmbench:
|
||||
bench.setup_llvm()
|
||||
|
||||
model = extract_model(mapping, arch, template_model, args.asmbench)
|
||||
|
||||
with open("{}.yml".format(arch.lower()), "w") as f:
|
||||
f.write(model.dump())
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -422,7 +422,7 @@ class ParserAArch64(BaseParser):
|
||||
if "shift" in memory_address["index"]:
|
||||
if memory_address["index"]["shift_op"].lower() in valid_shift_ops:
|
||||
scale = 2 ** int(memory_address["index"]["shift"][0]["value"])
|
||||
new_dict = MemoryOperand(OFFSET_ID=offset, BASE_ID=base, INDEX_ID=index, SCALE_ID=scale)
|
||||
new_dict = MemoryOperand(OFFSET_ID=offset, BASE_ID=RegisterOperand(NAME_ID = base["name"], PREFIX_ID = base["prefix"]), INDEX_ID=index, SCALE_ID=scale)
|
||||
if "pre_indexed" in memory_address:
|
||||
new_dict.pre_indexed = True
|
||||
if "post_indexed" in memory_address:
|
||||
@@ -581,13 +581,13 @@ class ParserAArch64(BaseParser):
|
||||
|
||||
def is_gpr(self, register):
|
||||
"""Check if register is a general purpose register"""
|
||||
if register["prefix"] in "wx":
|
||||
if register.prefix in "wx":
|
||||
return True
|
||||
return False
|
||||
|
||||
def is_vector_register(self, register):
|
||||
"""Check if register is a vector register"""
|
||||
if register["prefix"] in "bhsdqvz":
|
||||
if register.prefix in "bhsdqvz":
|
||||
return True
|
||||
return False
|
||||
|
||||
@@ -603,13 +603,13 @@ class ParserAArch64(BaseParser):
|
||||
"""Check if ``reg_a`` is dependent on ``reg_b``"""
|
||||
prefixes_gpr = "wx"
|
||||
prefixes_vec = "bhsdqvz"
|
||||
if reg_a["name"] == reg_b["name"]:
|
||||
if reg_a["prefix"].lower() in prefixes_gpr and reg_b["prefix"].lower() in prefixes_gpr:
|
||||
if reg_a.name == reg_b.name:
|
||||
if reg_a.prefix.lower() in prefixes_gpr and reg_b.prefix.lower() in prefixes_gpr:
|
||||
return True
|
||||
if reg_a["prefix"].lower() in prefixes_vec and reg_b["prefix"].lower() in prefixes_vec:
|
||||
if reg_a.prefix.lower() in prefixes_vec and reg_b.prefix.lower() in prefixes_vec:
|
||||
return True
|
||||
return False
|
||||
|
||||
def get_reg_type(self, register):
|
||||
"""Get register type"""
|
||||
return register["prefix"]
|
||||
return register.prefix
|
||||
|
||||
@@ -326,6 +326,8 @@ class ParserX86ATT(BaseParser):
|
||||
# Remove unecessarily created dictionary entries during memory address parsing
|
||||
offset = memory_address.get("offset", None)
|
||||
base = memory_address.get("base", None)
|
||||
baseOp = None
|
||||
indexOp = None
|
||||
index = memory_address.get("index", None)
|
||||
scale = 1 if "scale" not in memory_address else int(memory_address["scale"], 0)
|
||||
if isinstance(offset, str) and base is None and index is None:
|
||||
@@ -335,7 +337,11 @@ class ParserX86ATT(BaseParser):
|
||||
offset = {"value": offset}
|
||||
elif offset is not None and "value" in offset:
|
||||
offset["value"] = int(offset["value"], 0)
|
||||
new_dict = MemoryOperand(OFFSET_ID=offset, BASE_ID=base, INDEX_ID=index, SCALE_ID=scale)
|
||||
if base != None:
|
||||
baseOp = RegisterOperand(NAME_ID=base['name'],PREFIX_ID=base['prefix'] if 'prefix' in base else None)
|
||||
if index != None:
|
||||
indexOp = RegisterOperand(NAME_ID=index['name'],PREFIX_ID=index['prefix'] if 'prefix' in index else None)
|
||||
new_dict = MemoryOperand(OFFSET_ID=offset, BASE_ID=baseOp, INDEX_ID=indexOp, SCALE_ID=scale)
|
||||
# Add segmentation extension if existing
|
||||
if self.SEGMENT_EXT_ID in memory_address:
|
||||
new_dict.segment_ext_id = memory_address[self.SEGMENT_EXT_ID]
|
||||
@@ -385,7 +391,6 @@ class ParserX86ATT(BaseParser):
|
||||
|
||||
def is_reg_dependend_of(self, reg_a, reg_b):
|
||||
"""Check if ``reg_a`` is dependent on ``reg_b``"""
|
||||
# Normalize name
|
||||
reg_a_name = reg_a.name.upper()
|
||||
reg_b_name = reg_b.name.upper()
|
||||
|
||||
|
||||
@@ -9,6 +9,10 @@ from copy import deepcopy
|
||||
|
||||
from .hw_model import MachineModel
|
||||
from .isa_semantics import INSTR_FLAGS, ISASemantics
|
||||
from osaca.parser.memory import MemoryOperand
|
||||
from osaca.parser.register import RegisterOperand
|
||||
from osaca.parser.immediate import ImmediateOperand
|
||||
from osaca.parser.identifier import IdentifierOperand
|
||||
|
||||
|
||||
class ArchSemantics(ISASemantics):
|
||||
@@ -150,27 +154,27 @@ class ArchSemantics(ISASemantics):
|
||||
if len(loads) <= len(stores):
|
||||
# Hide all loads
|
||||
for load in loads:
|
||||
load["flags"] += [INSTR_FLAGS.HIDDEN_LD]
|
||||
load["port_pressure"] = self._nullify_data_ports(load["port_pressure"])
|
||||
load.flags += [INSTR_FLAGS.HIDDEN_LD]
|
||||
load.port_pressure = self._nullify_data_ports(load.port_pressure)
|
||||
else:
|
||||
for store in stores:
|
||||
# Get 'closest' load instruction
|
||||
min_distance_load = min(
|
||||
[
|
||||
(
|
||||
abs(load_instr["line_number"] - store["line_number"]),
|
||||
load_instr["line_number"],
|
||||
abs(load_instr.line_number - store.line_number),
|
||||
load_instr.line_number,
|
||||
)
|
||||
for load_instr in loads
|
||||
if INSTR_FLAGS.HIDDEN_LD not in load_instr["flags"]
|
||||
if INSTR_FLAGS.HIDDEN_LD not in load_instr.flags
|
||||
]
|
||||
)
|
||||
load = [instr for instr in kernel if instr["line_number"] == min_distance_load[1]][
|
||||
load = [instr for instr in kernel if instr.line_number == min_distance_load[1]][
|
||||
0
|
||||
]
|
||||
# Hide load
|
||||
load["flags"] += [INSTR_FLAGS.HIDDEN_LD]
|
||||
load["port_pressure"] = self._nullify_data_ports(load["port_pressure"])
|
||||
load.flags += [INSTR_FLAGS.HIDDEN_LD]
|
||||
load.port_pressure = self._nullify_data_ports(load.port_pressure)
|
||||
|
||||
# get parser result and assign throughput and latency value to instruction form
|
||||
# mark instruction form with semantic flags
|
||||
@@ -253,13 +257,20 @@ class ArchSemantics(ISASemantics):
|
||||
instruction_form.instruction[:suffix_start], operands
|
||||
)
|
||||
if instruction_data_reg:
|
||||
print(instruction_data_reg["operands"])
|
||||
for o in instruction_data_reg["operands"]:
|
||||
o = RegisterOperand(NAME_ID=o["name"] if "name" in o else None,
|
||||
PREFIX_ID=o["prefix"] if "prefix" in o else None,
|
||||
MASK=o["mask"] if "mask" in o else False)
|
||||
print(instruction_data_reg["operands"])
|
||||
assign_unknown = False
|
||||
reg_type = self._parser.get_reg_type(
|
||||
instruction_data_reg["operands"][
|
||||
operands.index(self._create_reg_wildcard())
|
||||
]
|
||||
)
|
||||
dummy_reg = {"class": "register", "name": reg_type}
|
||||
#dummy_reg = {"class": "register", "name": reg_type}
|
||||
dummy_reg = RegisterOperand(NAME_ID=reg_type)
|
||||
data_port_pressure = [0.0 for _ in range(port_number)]
|
||||
data_port_uops = []
|
||||
if INSTR_FLAGS.HAS_LD in instruction_form.flags:
|
||||
@@ -445,11 +456,11 @@ class ArchSemantics(ISASemantics):
|
||||
"""Create register operand for a memory addressing operand"""
|
||||
if self._isa == "x86":
|
||||
if reg_type == "gpr":
|
||||
register = {"register": {"name": "r" + str(int(reg_id) + 9)}}
|
||||
register = RegisterOperand(NAME_ID="r" + str(int(reg_id) + 9))
|
||||
else:
|
||||
register = {"register": {"name": reg_type + reg_id}}
|
||||
register = RegisterOperand(NAME_ID=reg_type + reg_id)
|
||||
elif self._isa == "aarch64":
|
||||
register = {"register": {"prefix": reg_type, "name": reg_id}}
|
||||
register = RegisterOperand(NAME_ID=reg_id,PREFIX_ID=reg_type)
|
||||
return register
|
||||
|
||||
def _nullify_data_ports(self, port_pressure):
|
||||
|
||||
@@ -20,13 +20,12 @@ from osaca.parser.register import RegisterOperand
|
||||
from osaca.parser.immediate import ImmediateOperand
|
||||
from osaca.parser.identifier import IdentifierOperand
|
||||
|
||||
|
||||
class MachineModel(object):
|
||||
WILDCARD = "*"
|
||||
INTERNAL_VERSION = 1 # increase whenever self._data format changes to invalidate cache!
|
||||
_runtime_cache = {}
|
||||
|
||||
def __init__(self, arch=None, path_to_yaml=None, isa=None, lazy=True):
|
||||
def __init__(self, arch=None, path_to_yaml=None, isa=None, lazy=False):
|
||||
if not arch and not path_to_yaml:
|
||||
if not isa:
|
||||
raise ValueError("One of arch, path_to_yaml and isa must be specified")
|
||||
@@ -102,8 +101,15 @@ class MachineModel(object):
|
||||
# Normalize instruction_form names (to UPPERCASE) and build dict for faster access:
|
||||
self._data["instruction_forms_dict"] = defaultdict(list)
|
||||
for iform in self._data["instruction_forms"]:
|
||||
print(iform)
|
||||
iform["name"] = iform["name"].upper()
|
||||
if iform["operands"]!=[]:
|
||||
for o in iform["operands"]:
|
||||
if o["class"] == "register":
|
||||
o = RegisterOperand(NAME_ID=o["name"] if "name" in o else None,
|
||||
PREFIX_ID=o["prefix"] if "prefix" in o else None,
|
||||
MASK=o["mask"] if "mask" in o else False)
|
||||
elif o["class"] == "memory":
|
||||
o = MemoryOperand(BASE_ID=o["base"],OFFSET_ID=o["offset"],INDEX_ID=o["index"],SCALE_ID=o["scale"])
|
||||
self._data["instruction_forms_dict"][iform["name"]].append(iform)
|
||||
self._data["internal_version"] = self.INTERNAL_VERSION
|
||||
|
||||
@@ -134,7 +140,7 @@ class MachineModel(object):
|
||||
if name is None:
|
||||
return None
|
||||
name_matched_iforms = self._data["instruction_forms_dict"].get(name.upper(), [])
|
||||
# print(name_matched_iforms)
|
||||
|
||||
try:
|
||||
return next(
|
||||
instruction_form
|
||||
@@ -461,40 +467,34 @@ class MachineModel(object):
|
||||
def _create_db_operand_aarch64(self, operand):
|
||||
"""Create instruction form operand for DB out of operand string."""
|
||||
if operand == "i":
|
||||
return {"class": "immediate", "imd": "int"}
|
||||
return ImmediateOperand(TYPE_ID="int")
|
||||
elif operand in "wxbhsdq":
|
||||
return {"class": "register", "prefix": operand}
|
||||
return RegisterOperand(PREFIX_ID=operand)
|
||||
elif operand.startswith("v"):
|
||||
return {"class": "register", "prefix": "v", "shape": operand[1:2]}
|
||||
return RegisterOperand(PREFIX_ID="v",SHAPE=operand[1:2])
|
||||
elif operand.startswith("m"):
|
||||
return {
|
||||
"class": "memory",
|
||||
"base": "x" if "b" in operand else None,
|
||||
"offset": "imd" if "o" in operand else None,
|
||||
"index": "gpr" if "i" in operand else None,
|
||||
"scale": 8 if "s" in operand else 1,
|
||||
"pre-indexed": True if "r" in operand else False,
|
||||
"post-indexed": True if "p" in operand else False,
|
||||
}
|
||||
return MemoryOperand(BASE_ID = "x" if "b" in operand else None,
|
||||
OFFSET_ID = "imd" if "o" in operand else None,
|
||||
INDEX_ID = "gpr" if "i" in operand else None,
|
||||
SCALE_ID =8 if "s" in operand else 1,
|
||||
PRE_INDEXED = True if "r" in operand else False,
|
||||
POST_INDEXED = True if "p" in operand else False)
|
||||
else:
|
||||
raise ValueError("Parameter {} is not a valid operand code".format(operand))
|
||||
|
||||
def _create_db_operand_x86(self, operand):
|
||||
"""Create instruction form operand for DB out of operand string."""
|
||||
if operand == "r":
|
||||
return {"class": "register", "name": "gpr"}
|
||||
return RegisterOperand(NAME_ID="gpr")
|
||||
elif operand in "xyz":
|
||||
return {"class": "register", "name": operand + "mm"}
|
||||
return RegisterOperand(NAME_ID=operand + "mm")
|
||||
elif operand == "i":
|
||||
return {"class": "immediate", "imd": "int"}
|
||||
return ImmediateOperand(TYPE_ID="int")
|
||||
elif operand.startswith("m"):
|
||||
return {
|
||||
"class": "memory",
|
||||
"base": "gpr" if "b" in operand else None,
|
||||
"offset": "imd" if "o" in operand else None,
|
||||
"index": "gpr" if "i" in operand else None,
|
||||
"scale": 8 if "s" in operand else 1,
|
||||
}
|
||||
return MemoryOperand(BASE_ID = "gpr" if "b" in operand else None,
|
||||
OFFSET_ID = "imd" if "o" in operand else None,
|
||||
INDEX_ID = "gpr" if "i" in operand else None,
|
||||
SCALE_ID = 8 if "s" in operand else 1,)
|
||||
else:
|
||||
raise ValueError("Parameter {} is not a valid operand code".format(operand))
|
||||
|
||||
@@ -533,9 +533,7 @@ class MachineModel(object):
|
||||
def _check_operands(self, i_operand, operand):
|
||||
"""Check if the types of operand ``i_operand`` and ``operand`` match."""
|
||||
# check for wildcard
|
||||
if (isinstance(operand, Operand) and operand.name == self.WILDCARD) or (
|
||||
not isinstance(operand, Operand) and self.WILDCARD in operand
|
||||
):
|
||||
if (isinstance(operand, Operand) and operand.name == self.WILDCARD) or (not isinstance(operand, Operand) and self.WILDCARD in operand):
|
||||
if (
|
||||
"class" in i_operand
|
||||
and i_operand["class"] == "register"
|
||||
@@ -610,8 +608,8 @@ class MachineModel(object):
|
||||
|
||||
def _check_x86_operands(self, i_operand, operand):
|
||||
"""Check if the types of operand ``i_operand`` and ``operand`` match."""
|
||||
# if "class" in operand.name:
|
||||
# compare two DB entries
|
||||
#if "class" in operand.name:
|
||||
# compare two DB entries
|
||||
# return self._compare_db_entries(i_operand, operand)
|
||||
# register
|
||||
if isinstance(operand, RegisterOperand):
|
||||
@@ -625,7 +623,7 @@ class MachineModel(object):
|
||||
return self._is_x86_mem_type(i_operand, operand)
|
||||
# immediate
|
||||
if isinstance(operand, ImmediateOperand):
|
||||
# if "immediate" in operand.name or operand.value != None:
|
||||
#if "immediate" in operand.name or operand.value != None:
|
||||
return i_operand["class"] == "immediate" and i_operand["imd"] == "int"
|
||||
# identifier (e.g., labels)
|
||||
if isinstance(operand, IdentifierOperand):
|
||||
@@ -784,51 +782,52 @@ class MachineModel(object):
|
||||
|
||||
def _is_x86_mem_type(self, i_mem, mem):
|
||||
"""Check if memory addressing type match."""
|
||||
i_mem = MemoryOperand(BASE_ID=i_mem["base"],OFFSET_ID=i_mem["offset"],INDEX_ID=i_mem["index"],SCALE_ID=i_mem["scale"])
|
||||
if (
|
||||
# check base
|
||||
(
|
||||
(mem.base is None and i_mem["base"] is None)
|
||||
or i_mem["base"] == self.WILDCARD
|
||||
or self._is_x86_reg_type(i_mem["base"], mem.base)
|
||||
(mem.base is None and i_mem.base is None)
|
||||
or i_mem.base == self.WILDCARD
|
||||
or self._is_x86_reg_type(i_mem.base, mem.base)
|
||||
)
|
||||
# check offset
|
||||
and (
|
||||
mem.offset == i_mem["offset"]
|
||||
or i_mem["offset"] == self.WILDCARD
|
||||
mem.offset == i_mem.offset
|
||||
or i_mem.offset == self.WILDCARD
|
||||
or (
|
||||
mem.offset is not None
|
||||
and "identifier" in mem.offset
|
||||
and i_mem["offset"] == "identifier"
|
||||
and i_mem.offset == "identifier"
|
||||
)
|
||||
or (
|
||||
mem.offset is not None
|
||||
and "value" in mem.offset
|
||||
and (
|
||||
i_mem.offset == "imd"
|
||||
or (i_mem["offset"] is None and mem.offset["value"] == "0")
|
||||
or (i_mem.offset is None and mem.offset["value"] == "0")
|
||||
)
|
||||
)
|
||||
or (
|
||||
mem.offset is not None
|
||||
and "identifier" in mem.offset
|
||||
and i_mem["offset"] == "id"
|
||||
and i_mem.offset == "id"
|
||||
)
|
||||
)
|
||||
# check index
|
||||
and (
|
||||
mem.index == i_mem["index"]
|
||||
or i_mem["index"] == self.WILDCARD
|
||||
mem.index == i_mem.index
|
||||
or i_mem.index == self.WILDCARD
|
||||
or (
|
||||
mem.index is not None
|
||||
and "name" in mem.index
|
||||
and self._is_x86_reg_type(i_mem["index"], mem.index)
|
||||
and self._is_x86_reg_type(i_mem.index, mem.index)
|
||||
)
|
||||
)
|
||||
# check scale
|
||||
and (
|
||||
mem.scale == i_mem["scale"]
|
||||
or i_mem["scale"] == self.WILDCARD
|
||||
or (mem.scale != 1 and i_mem["scale"] != 1)
|
||||
mem.scale == i_mem.scale
|
||||
or i_mem.scale == self.WILDCARD
|
||||
or (mem.scale != 1 and i_mem.scale != 1)
|
||||
)
|
||||
):
|
||||
return True
|
||||
|
||||
@@ -182,19 +182,19 @@ class ISASemantics(object):
|
||||
isa_data = self._isa_model.get_instruction(
|
||||
instruction_form.instruction[:suffix_start], instruction_form.operands
|
||||
)
|
||||
|
||||
'''
|
||||
if only_postindexed:
|
||||
for o in instruction_form.operands:
|
||||
if "post_indexed" in o.get("memory", {}):
|
||||
base_name = o.memory.base.get("prefix", "") + o.memory.base.name
|
||||
if isinstance(o, MemoryOperand) and o.base!=None:
|
||||
base_name = o.base.prefix if o.base.prefix!=None else "" + o.base.name
|
||||
return {
|
||||
base_name: {
|
||||
"name": o.memory.base.get("prefix", "") + o.memory.base.name,
|
||||
"value": o.memory.post_indexed.value,
|
||||
"name": o.base.prefix if o.base.prefix!=None else "" + o.base.name,
|
||||
"value": o.post_indexed["value"],
|
||||
}
|
||||
}
|
||||
return {}
|
||||
|
||||
'''
|
||||
reg_operand_names = {} # e.g., {'rax': 'op1'}
|
||||
operand_state = {} # e.g., {'op1': {'name': 'rax', 'value': 0}} 0 means unchanged
|
||||
|
||||
@@ -206,15 +206,15 @@ class ISASemantics(object):
|
||||
"ISA information for pre-indexed instruction {!r} has operation set."
|
||||
"This is currently not supprted.".format(instruction_form.line)
|
||||
)
|
||||
base_name = o.memory.base.get("prefix", "") + o.memory.base.name
|
||||
base_name = o.base.prefix if o.base.prefix!=None else "" + o.base.name
|
||||
reg_operand_names = {base_name: "op1"}
|
||||
operand_state = {"op1": {"name": base_name, "value": o.memory.offset.value}}
|
||||
operand_state = {"op1": {"name": base_name, "value": o.offset["value"]}}
|
||||
|
||||
if isa_data is not None and "operation" in isa_data:
|
||||
for i, o in enumerate(instruction_form.operands):
|
||||
operand_name = "op{}".format(i + 1)
|
||||
if "register" in o:
|
||||
o_reg_name = o["register"].get("prefix", "") + o["register"]["name"]
|
||||
if isinstance(o, RegisterOperand):
|
||||
o_reg_name = o.prefix if o.prefix!=None else "" + o.name
|
||||
reg_operand_names[o_reg_name] = operand_name
|
||||
operand_state[operand_name] = {"name": o_reg_name, "value": 0}
|
||||
elif "immediate" in o:
|
||||
|
||||
@@ -11,7 +11,7 @@ import networkx as nx
|
||||
from osaca.semantics import INSTR_FLAGS, ArchSemantics, MachineModel
|
||||
from osaca.parser.memory import MemoryOperand
|
||||
from osaca.parser.register import RegisterOperand
|
||||
|
||||
from osaca.parser.immediate import ImmediateOperand
|
||||
|
||||
class KernelDG(nx.DiGraph):
|
||||
# threshold for checking dependency graph sequential or in parallel
|
||||
@@ -70,7 +70,7 @@ class KernelDG(nx.DiGraph):
|
||||
):
|
||||
# add new node
|
||||
dg.add_node(instruction_form.line_number + 0.1)
|
||||
dg.nodes[instruction_form.line_number + 0.1].instruction_form = instruction_form
|
||||
dg.nodes[instruction_form.line_number + 0.1]["instruction_form"] = instruction_form
|
||||
# and set LD latency as edge weight
|
||||
dg.add_edge(
|
||||
instruction_form.line_number + 0.1,
|
||||
@@ -91,11 +91,11 @@ class KernelDG(nx.DiGraph):
|
||||
edge_weight = self.model.get("p_index_latency", 1)
|
||||
dg.add_edge(
|
||||
instruction_form.line_number,
|
||||
dep["line_number"],
|
||||
dep.line_number,
|
||||
latency=edge_weight,
|
||||
)
|
||||
|
||||
dg.nodes[dep["line_number"]]["instruction_form"] = dep
|
||||
dg.nodes[dep.line_number]["instruction_form"] = dep
|
||||
return dg
|
||||
|
||||
def check_for_loopcarried_dep(self, kernel, timeout=10, flag_dependencies=False):
|
||||
@@ -114,7 +114,7 @@ class KernelDG(nx.DiGraph):
|
||||
tmp_kernel = [] + kernel
|
||||
for orig_iform in kernel:
|
||||
temp_iform = copy.copy(orig_iform)
|
||||
temp_iform["line_number"] += offset
|
||||
temp_iform.line_number += offset
|
||||
tmp_kernel.append(temp_iform)
|
||||
# get dependency graph
|
||||
dg = self.create_DG(tmp_kernel, flag_dependencies)
|
||||
@@ -224,7 +224,7 @@ class KernelDG(nx.DiGraph):
|
||||
|
||||
def get_critical_path(self):
|
||||
"""Find and return critical path after the creation of a directed graph."""
|
||||
max_latency_instr = max(self.kernel, key=lambda k: k["latency"])
|
||||
max_latency_instr = max(self.kernel, key=lambda k: k.latency)
|
||||
if nx.algorithms.dag.is_directed_acyclic_graph(self.dg):
|
||||
longest_path = nx.algorithms.dag.dag_longest_path(self.dg, weight="latency")
|
||||
# TODO verify that we can remove the next two lince due to earlier initialization
|
||||
@@ -243,7 +243,7 @@ class KernelDG(nx.DiGraph):
|
||||
max_latency_instr["latency_cp"] = float(max_latency_instr["latency"])
|
||||
return [max_latency_instr]
|
||||
else:
|
||||
return [x for x in self.kernel if x["line_number"] in longest_path]
|
||||
return [x for x in self.kernel if x.line_number in longest_path]
|
||||
else:
|
||||
# split to DAG
|
||||
raise NotImplementedError("Kernel is cyclic.")
|
||||
@@ -285,16 +285,16 @@ class KernelDG(nx.DiGraph):
|
||||
if isinstance(dst, RegisterOperand):
|
||||
# read of register
|
||||
if self.is_read(dst, instr_form):
|
||||
if dst.get("pre_indexed", False) or dst.get("post_indexed", False):
|
||||
yield instr_form, ["p_indexed"]
|
||||
else:
|
||||
yield instr_form, []
|
||||
#if dst.pre_indexed or dst.post_indexed:
|
||||
#yield instr_form, ["p_indexed"]
|
||||
#else:
|
||||
yield instr_form, []
|
||||
# write to register -> abort
|
||||
if self.is_written(dst, instr_form):
|
||||
break
|
||||
if (
|
||||
not isinstance(dst, RegisterOperand)
|
||||
and not isinstance(dst, MemoryOperandOperand)
|
||||
and not isinstance(dst, MemoryOperand)
|
||||
and "flag" in dst
|
||||
and flag_dependencies
|
||||
):
|
||||
@@ -306,7 +306,7 @@ class KernelDG(nx.DiGraph):
|
||||
break
|
||||
if isinstance(dst, MemoryOperand):
|
||||
# base register is altered during memory access
|
||||
if dist.pre_indexed != None:
|
||||
if dst.pre_indexed != None:
|
||||
if self.is_written(dst.base, instr_form):
|
||||
break
|
||||
# if dst.memory.base:
|
||||
@@ -378,6 +378,7 @@ class KernelDG(nx.DiGraph):
|
||||
if (
|
||||
not isinstance(src, RegisterOperand)
|
||||
and not isinstance(src, MemoryOperand)
|
||||
and not isinstance(src, ImmediateOperand)
|
||||
and "flag" in src
|
||||
):
|
||||
is_read = self.parser.is_flag_dependend_of(register, src.flag) or is_read
|
||||
@@ -403,29 +404,29 @@ class KernelDG(nx.DiGraph):
|
||||
if instruction_form.semantic_operands is None:
|
||||
return False
|
||||
for src in chain(
|
||||
instruction_form.semantic_operands.source,
|
||||
instruction_form.semantic_operands.src_dst,
|
||||
instruction_form.semantic_operands["source"],
|
||||
instruction_form.semantic_operands["src_dst"],
|
||||
):
|
||||
# Here we check for mem dependecies only
|
||||
if "memory" not in src:
|
||||
if not isinstance(src, MemoryOperand):
|
||||
continue
|
||||
src = src.memory
|
||||
#src = src.memory
|
||||
|
||||
# determine absolute address change
|
||||
addr_change = 0
|
||||
if src.offset and "value" in src.offset:
|
||||
addr_change += src.offset.value
|
||||
addr_change += src.offset["value"]
|
||||
if mem.offset:
|
||||
addr_change -= mem.offset.value
|
||||
addr_change -= mem.offset["value"]
|
||||
if mem.base and src.base:
|
||||
base_change = register_changes.get(
|
||||
src.base.get("prefix", "") + src.base.name,
|
||||
{"name": src.base.get("prefix", "") + src.base.name, "value": 0},
|
||||
src.base.prefix if src.base.prefix!=None else "" + src.base.name,
|
||||
{"name": src.base.prefix if src.base.prefix!=None else "" + src.base.name, "value": 0},
|
||||
)
|
||||
if base_change is None:
|
||||
# Unknown change occurred
|
||||
continue
|
||||
if mem.base.get("prefix", "") + mem.base["name"] != base_change["name"]:
|
||||
if mem.base.prefix if mem.base.prefix!=None else "" + mem.base.name != base_change["name"]:
|
||||
# base registers do not match
|
||||
continue
|
||||
addr_change += base_change["value"]
|
||||
@@ -443,7 +444,7 @@ class KernelDG(nx.DiGraph):
|
||||
if mem.scale != src.scale:
|
||||
# scale factors do not match
|
||||
continue
|
||||
if mem.index.get("prefix", "") + mem.index["name"] != index_change["name"]:
|
||||
if mem.index.prefix if mem.index.prefix!=None else "" + mem.index.name != index_change["name"]:
|
||||
# index registers do not match
|
||||
continue
|
||||
addr_change += index_change["value"] * src.scale
|
||||
@@ -495,7 +496,7 @@ class KernelDG(nx.DiGraph):
|
||||
instruction_form.semantic_operands["src_dst"],
|
||||
):
|
||||
if isinstance(dst, MemoryOperand):
|
||||
is_store = mem == dst["memory"] or is_store
|
||||
is_store = mem == dst or is_store
|
||||
return is_store
|
||||
|
||||
def export_graph(self, filepath=None):
|
||||
|
||||
@@ -94,7 +94,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
instr7 = "fadd v17.2d, v16.2d, v1.2d"
|
||||
instr8 = "mov.d x0, v16.d[1]"
|
||||
instr9 = "ccmp x0, x1, #4, cc"
|
||||
"""
|
||||
|
||||
parsed_1 = self.parser.parse_instruction(instr1)
|
||||
parsed_2 = self.parser.parse_instruction(instr2)
|
||||
parsed_3 = self.parser.parse_instruction(instr3)
|
||||
@@ -125,8 +125,8 @@ class TestParserAArch64(unittest.TestCase):
|
||||
|
||||
self.assertEqual(parsed_4.instruction, "str")
|
||||
self.assertIsNone(parsed_4.operands[1].offset)
|
||||
self.assertEqual(parsed_4.operands[1].base['name'], "sp")
|
||||
self.assertEqual(parsed_4.operands[1].base['prefix'], "x")
|
||||
self.assertEqual(parsed_4.operands[1].base.name, "sp")
|
||||
self.assertEqual(parsed_4.operands[1].base.prefix, "x")
|
||||
self.assertEqual(parsed_4.operands[1].index['name'], "1")
|
||||
self.assertEqual(parsed_4.operands[1].index['prefix'], "x")
|
||||
self.assertEqual(parsed_4.operands[1].scale, 16)
|
||||
@@ -139,8 +139,8 @@ class TestParserAArch64(unittest.TestCase):
|
||||
self.assertEqual(parsed_5.operands[0].prefix, "x")
|
||||
self.assertEqual(parsed_5.operands[1].offset['identifier']['name'], "q2c")
|
||||
self.assertEqual(parsed_5.operands[1].offset['identifier']['relocation'], ":got_lo12:")
|
||||
self.assertEqual(parsed_5.operands[1].base['name'], "0")
|
||||
self.assertEqual(parsed_5.operands[1].base['prefix'], "x")
|
||||
self.assertEqual(parsed_5.operands[1].base.name, "0")
|
||||
self.assertEqual(parsed_5.operands[1].base.prefix, "x")
|
||||
self.assertIsNone(parsed_5.operands[1].index)
|
||||
self.assertEqual(parsed_5.operands[1].scale, 1)
|
||||
|
||||
@@ -169,7 +169,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
self.assertEqual(parsed_9.operands[0].name, "0")
|
||||
self.assertEqual(parsed_9.operands[0].prefix, "x")
|
||||
self.assertEqual(parsed_9.operands[3]['condition'], "CC")
|
||||
"""
|
||||
|
||||
|
||||
def test_parse_line(self):
|
||||
line_comment = "// -- Begin main"
|
||||
@@ -216,7 +216,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
RegisterOperand(PREFIX_ID="s", NAME_ID="0"),
|
||||
MemoryOperand(
|
||||
OFFSET_ID=None,
|
||||
BASE_ID={"prefix": "x", "name": "11"},
|
||||
BASE_ID=RegisterOperand(PREFIX_ID = "x", NAME_ID ="11"),
|
||||
INDEX_ID={
|
||||
"prefix": "w",
|
||||
"name": "10",
|
||||
@@ -239,7 +239,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
{"prfop": {"type": ["PLD"], "target": ["L1"], "policy": ["KEEP"]}},
|
||||
MemoryOperand(
|
||||
OFFSET_ID={"value": 2048},
|
||||
BASE_ID={"prefix": "x", "name": "26"},
|
||||
BASE_ID=RegisterOperand(PREFIX_ID = "x", NAME_ID ="26"),
|
||||
INDEX_ID=None,
|
||||
SCALE_ID=1,
|
||||
),
|
||||
@@ -257,7 +257,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
RegisterOperand(PREFIX_ID="x", NAME_ID="30"),
|
||||
MemoryOperand(
|
||||
OFFSET_ID={"value": -16},
|
||||
BASE_ID={"name": "sp", "prefix": "x"},
|
||||
BASE_ID=RegisterOperand(NAME_ID = "sp", PREFIX_ID = "x"),
|
||||
INDEX_ID=None,
|
||||
SCALE_ID=1,
|
||||
PRE_INDEXED=True,
|
||||
@@ -276,7 +276,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
RegisterOperand(PREFIX_ID="q", NAME_ID="3"),
|
||||
MemoryOperand(
|
||||
OFFSET_ID=None,
|
||||
BASE_ID={"prefix": "x", "name": "11"},
|
||||
BASE_ID=RegisterOperand(NAME_ID = "11", PREFIX_ID = "x"),
|
||||
INDEX_ID=None,
|
||||
SCALE_ID=1,
|
||||
POST_INDEXED={"value": 64},
|
||||
@@ -317,7 +317,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
LINE="ccmn x11, #1, #3, eq",
|
||||
LINE_NUMBER=9,
|
||||
)
|
||||
"""
|
||||
|
||||
parsed_1 = self.parser.parse_line(line_comment, 1)
|
||||
parsed_2 = self.parser.parse_line(line_label, 2)
|
||||
parsed_3 = self.parser.parse_line(line_directive, 3)
|
||||
@@ -337,7 +337,7 @@ class TestParserAArch64(unittest.TestCase):
|
||||
self.assertEqual(parsed_7, instruction_form_7)
|
||||
self.assertEqual(parsed_8, instruction_form_8)
|
||||
self.assertEqual(parsed_9, instruction_form_9)
|
||||
"""
|
||||
|
||||
|
||||
def test_parse_file(self):
|
||||
parsed = self.parser.parse_file(self.triad_code)
|
||||
@@ -399,22 +399,22 @@ class TestParserAArch64(unittest.TestCase):
|
||||
# self.assertEqual(p_single.operands, reg_list_single)
|
||||
|
||||
def test_reg_dependency(self):
|
||||
reg_1_1 = {"prefix": "b", "name": "1"}
|
||||
reg_1_2 = {"prefix": "h", "name": "1"}
|
||||
reg_1_3 = {"prefix": "s", "name": "1"}
|
||||
reg_1_4 = {"prefix": "d", "name": "1"}
|
||||
reg_1_4 = {"prefix": "q", "name": "1"}
|
||||
reg_2_1 = {"prefix": "w", "name": "2"}
|
||||
reg_2_2 = {"prefix": "x", "name": "2"}
|
||||
reg_v1_1 = {"prefix": "v", "name": "11", "lanes": "16", "shape": "b"}
|
||||
reg_v1_2 = {"prefix": "v", "name": "11", "lanes": "8", "shape": "h"}
|
||||
reg_v1_3 = {"prefix": "v", "name": "11", "lanes": "4", "shape": "s"}
|
||||
reg_v1_4 = {"prefix": "v", "name": "11", "lanes": "2", "shape": "d"}
|
||||
reg_1_1 = RegisterOperand(PREFIX_ID = "b", NAME_ID = "1")
|
||||
reg_1_2 = RegisterOperand(PREFIX_ID = "h", NAME_ID = "1")
|
||||
reg_1_3 = RegisterOperand(PREFIX_ID = "s", NAME_ID = "1")
|
||||
reg_1_4 = RegisterOperand(PREFIX_ID = "d", NAME_ID = "1")
|
||||
reg_1_4 = RegisterOperand(PREFIX_ID = "q", NAME_ID = "1")
|
||||
reg_2_1 = RegisterOperand(PREFIX_ID = "w", NAME_ID = "2")
|
||||
reg_2_2 = RegisterOperand(PREFIX_ID = "x", NAME_ID = "2")
|
||||
reg_v1_1 = RegisterOperand(PREFIX_ID = "v", NAME_ID = "11", LANES = "16", SHAPE = "b")
|
||||
reg_v1_2 = RegisterOperand(PREFIX_ID = "v", NAME_ID = "11", LANES = "8", SHAPE = "h")
|
||||
reg_v1_3 = RegisterOperand(PREFIX_ID = "v", NAME_ID = "11", LANES = "4", SHAPE = "s")
|
||||
reg_v1_4 = RegisterOperand(PREFIX_ID = "v", NAME_ID = "11", LANES = "2", SHAPE = "d")
|
||||
|
||||
reg_b5 = {"prefix": "b", "name": "5"}
|
||||
reg_q15 = {"prefix": "q", "name": "15"}
|
||||
reg_v10 = {"prefix": "v", "name": "10", "lanes": "2", "shape": "s"}
|
||||
reg_v20 = {"prefix": "v", "name": "20", "lanes": "2", "shape": "d"}
|
||||
reg_b5 = RegisterOperand(PREFIX_ID = "b", NAME_ID = "5")
|
||||
reg_q15 = RegisterOperand(PREFIX_ID = "q", NAME_ID = "15")
|
||||
reg_v10 = RegisterOperand(PREFIX_ID = "v", NAME_ID = "10", LANES = "2", SHAPE = "s")
|
||||
reg_v20 = RegisterOperand(PREFIX_ID = "v", NAME_ID = "20", LANES = "2", SHAPE = "d")
|
||||
|
||||
reg_1 = [reg_1_1, reg_1_2, reg_1_3, reg_1_4]
|
||||
reg_2 = [reg_2_1, reg_2_2]
|
||||
|
||||
@@ -259,22 +259,22 @@ class TestParserX86ATT(unittest.TestCase):
|
||||
)
|
||||
|
||||
def test_reg_dependency(self):
|
||||
reg_a1 = {"name": "rax"}
|
||||
reg_a2 = {"name": "eax"}
|
||||
reg_a3 = {"name": "ax"}
|
||||
reg_a4 = {"name": "al"}
|
||||
reg_r11 = {"name": "r11"}
|
||||
reg_r11b = {"name": "r11b"}
|
||||
reg_r11d = {"name": "r11d"}
|
||||
reg_r11w = {"name": "r11w"}
|
||||
reg_xmm1 = {"name": "xmm1"}
|
||||
reg_ymm1 = {"name": "ymm1"}
|
||||
reg_zmm1 = {"name": "zmm1"}
|
||||
reg_a1 = RegisterOperand(NAME_ID = "rax")
|
||||
reg_a2 = RegisterOperand(NAME_ID = "eax")
|
||||
reg_a3 = RegisterOperand(NAME_ID = "ax")
|
||||
reg_a4 = RegisterOperand(NAME_ID = "al")
|
||||
reg_r11 = RegisterOperand(NAME_ID = "r11")
|
||||
reg_r11b = RegisterOperand(NAME_ID = "r11b")
|
||||
reg_r11d = RegisterOperand(NAME_ID = "r11d")
|
||||
reg_r11w = RegisterOperand(NAME_ID = "r11w")
|
||||
reg_xmm1 = RegisterOperand(NAME_ID = "xmm1")
|
||||
reg_ymm1 = RegisterOperand(NAME_ID = "ymm1")
|
||||
reg_zmm1 = RegisterOperand(NAME_ID = "zmm1")
|
||||
|
||||
reg_b1 = {"name": "rbx"}
|
||||
reg_r15 = {"name": "r15"}
|
||||
reg_xmm2 = {"name": "xmm2"}
|
||||
reg_ymm3 = {"name": "ymm3"}
|
||||
reg_b1 = RegisterOperand(NAME_ID = "rbx")
|
||||
reg_r15 = RegisterOperand(NAME_ID = "r15")
|
||||
reg_xmm2 = RegisterOperand(NAME_ID = "xmm2")
|
||||
reg_ymm3 = RegisterOperand(NAME_ID = "ymm3")
|
||||
|
||||
reg_a = [reg_a1, reg_a2, reg_a3, reg_a4]
|
||||
reg_r = [reg_r11, reg_r11b, reg_r11d, reg_r11w]
|
||||
|
||||
@@ -19,7 +19,8 @@ from osaca.semantics import (
|
||||
MachineModel,
|
||||
reduce_to_section,
|
||||
)
|
||||
|
||||
from osaca.parser.register import RegisterOperand
|
||||
from osaca.parser.memory import MemoryOperand
|
||||
|
||||
class TestSemanticTools(unittest.TestCase):
|
||||
MODULE_DATA_DIR = os.path.join(
|
||||
@@ -116,7 +117,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
###########
|
||||
# Tests
|
||||
###########
|
||||
|
||||
|
||||
def test_creation_by_name(self):
|
||||
try:
|
||||
tmp_mm = MachineModel(arch="CSX")
|
||||
@@ -145,9 +146,9 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.assertIsNone(test_mm_arm.get_instruction("NOT_IN_DB", []))
|
||||
name_x86_1 = "vaddpd"
|
||||
operands_x86_1 = [
|
||||
{"class": "register", "name": "xmm"},
|
||||
{"class": "register", "name": "xmm"},
|
||||
{"class": "register", "name": "xmm"},
|
||||
RegisterOperand(NAME_ID = "xmm"),
|
||||
RegisterOperand(NAME_ID = "xmm"),
|
||||
RegisterOperand(NAME_ID = "xmm"),
|
||||
]
|
||||
instr_form_x86_1 = test_mm_x86.get_instruction(name_x86_1, operands_x86_1)
|
||||
self.assertEqual(instr_form_x86_1, test_mm_x86.get_instruction(name_x86_1, operands_x86_1))
|
||||
@@ -157,9 +158,9 @@ class TestSemanticTools(unittest.TestCase):
|
||||
)
|
||||
name_arm_1 = "fadd"
|
||||
operands_arm_1 = [
|
||||
{"class": "register", "prefix": "v", "shape": "s"},
|
||||
{"class": "register", "prefix": "v", "shape": "s"},
|
||||
{"class": "register", "prefix": "v", "shape": "s"},
|
||||
RegisterOperand(PREFIX_ID = "v", SHAPE = "s"),
|
||||
RegisterOperand(PREFIX_ID = "v", SHAPE = "s"),
|
||||
RegisterOperand(PREFIX_ID = "v", SHAPE = "s"),
|
||||
]
|
||||
instr_form_arm_1 = test_mm_arm.get_instruction(name_arm_1, operands_arm_1)
|
||||
self.assertEqual(instr_form_arm_1, test_mm_arm.get_instruction(name_arm_1, operands_arm_1))
|
||||
@@ -171,50 +172,43 @@ class TestSemanticTools(unittest.TestCase):
|
||||
test_mm_arm.get_instruction("b.someNameThatDoesNotExist", [{"class": "identifier"}]),
|
||||
test_mm_arm.get_instruction("b.someOtherName", [{"class": "identifier"}]),
|
||||
)
|
||||
|
||||
'''
|
||||
# test full instruction name
|
||||
self.assertEqual(
|
||||
MachineModel.get_full_instruction_name(instr_form_x86_1),
|
||||
"vaddpd register(name:xmm),register(name:xmm),register(name:xmm)",
|
||||
)
|
||||
|
||||
self.assertEqual(
|
||||
MachineModel.get_full_instruction_name(instr_form_arm_1),
|
||||
"fadd register(prefix:v,shape:s),register(prefix:v,shape:s),"
|
||||
+ "register(prefix:v,shape:s)",
|
||||
)
|
||||
|
||||
'''
|
||||
'''
|
||||
# test get_store_tp
|
||||
self.assertEqual(
|
||||
test_mm_x86.get_store_throughput(
|
||||
{"base": {"name": "x"}, "offset": None, "index": None, "scale": 1}
|
||||
MemoryOperand(BASE_ID=RegisterOperand(NAME_ID="x"), OFFSET_ID=None,INDEX_ID=None,SCALE_ID="1")
|
||||
)[0]["port_pressure"],
|
||||
[[2, "237"], [2, "4"]],
|
||||
)
|
||||
|
||||
self.assertEqual(
|
||||
test_mm_x86.get_store_throughput(
|
||||
{
|
||||
"base": {"prefix": "NOT_IN_DB"},
|
||||
"offset": None,
|
||||
"index": "NOT_NONE",
|
||||
"scale": 1,
|
||||
}
|
||||
MemoryOperand(BASE_ID=RegisterOperand(PREFIX_ID="NOT_IN_DB"), OFFSET_ID=None,INDEX_ID="NOT_NONE",SCALE_ID="1")
|
||||
)[0]["port_pressure"],
|
||||
[[1, "23"], [1, "4"]],
|
||||
)
|
||||
self.assertEqual(
|
||||
test_mm_arm.get_store_throughput(
|
||||
{"base": {"prefix": "x"}, "offset": None, "index": None, "scale": 1}
|
||||
MemoryOperand(BASE_ID=RegisterOperand(PREFIX_ID="x"), OFFSET_ID=None,INDEX_ID=None,SCALE_ID="1")
|
||||
)[0]["port_pressure"],
|
||||
[[2, "34"], [2, "5"]],
|
||||
)
|
||||
self.assertEqual(
|
||||
test_mm_arm.get_store_throughput(
|
||||
{
|
||||
"base": {"prefix": "NOT_IN_DB"},
|
||||
"offset": None,
|
||||
"index": None,
|
||||
"scale": 1,
|
||||
}
|
||||
MemoryOperand(BASE_ID=RegisterOperand(PREFIX_ID="NOT_IN_DB"), OFFSET_ID=None,INDEX_ID=None,SCALE_ID="1")
|
||||
)[0]["port_pressure"],
|
||||
[[1, "34"], [1, "5"]],
|
||||
)
|
||||
@@ -222,17 +216,17 @@ class TestSemanticTools(unittest.TestCase):
|
||||
# test get_store_lt
|
||||
self.assertEqual(
|
||||
test_mm_x86.get_store_latency(
|
||||
{"base": {"name": "x"}, "offset": None, "index": None, "scale": "1"}
|
||||
MemoryOperand(BASE_ID=RegisterOperand(NAME_ID="x"), OFFSET_ID=None,INDEX_ID=None,SCALE_ID="1")
|
||||
),
|
||||
0,
|
||||
)
|
||||
self.assertEqual(
|
||||
test_mm_arm.get_store_latency(
|
||||
{"base": {"prefix": "x"}, "offset": None, "index": None, "scale": "1"}
|
||||
MemoryOperand(BASE_ID=RegisterOperand(PREFIX_ID="x"), OFFSET_ID=None,INDEX_ID=None,SCALE_ID="1")
|
||||
),
|
||||
0,
|
||||
)
|
||||
|
||||
|
||||
# test has_hidden_load
|
||||
self.assertFalse(test_mm_x86.has_hidden_loads())
|
||||
|
||||
@@ -252,7 +246,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
with open("/dev/null", "w") as dev_null:
|
||||
test_mm_x86.dump(stream=dev_null)
|
||||
test_mm_arm.dump(stream=dev_null)
|
||||
|
||||
'''
|
||||
def test_src_dst_assignment_x86(self):
|
||||
for instruction_form in self.kernel_x86:
|
||||
with self.subTest(instruction_form=instruction_form):
|
||||
@@ -278,7 +272,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.assertTrue(instruction_form.latency != None)
|
||||
self.assertIsInstance(instruction_form.port_pressure, list)
|
||||
self.assertEqual(len(instruction_form.port_pressure), port_num)
|
||||
|
||||
|
||||
def test_tp_lt_assignment_AArch64(self):
|
||||
self.assertTrue("ports" in self.machine_model_tx2)
|
||||
port_num = len(self.machine_model_tx2["ports"])
|
||||
@@ -288,12 +282,13 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.assertTrue(instruction_form.latency != None)
|
||||
self.assertIsInstance(instruction_form.port_pressure, list)
|
||||
self.assertEqual(len(instruction_form.port_pressure), port_num)
|
||||
|
||||
'''
|
||||
def test_optimal_throughput_assignment(self):
|
||||
# x86
|
||||
kernel_fixed = deepcopy(self.kernel_x86)
|
||||
self.semantics_csx.add_semantics(kernel_fixed)
|
||||
self.assertEqual(get_unmatched_instruction_ratio(kernel_fixed), 0)
|
||||
|
||||
kernel_optimal = deepcopy(kernel_fixed)
|
||||
self.semantics_csx.assign_optimal_throughput(kernel_optimal)
|
||||
tp_fixed = self.semantics_csx.get_throughput_sum(kernel_fixed)
|
||||
@@ -397,7 +392,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
dg.get_dependent_instruction_forms()
|
||||
# test dot creation
|
||||
dg.export_graph(filepath="/dev/null")
|
||||
|
||||
'''
|
||||
def test_kernelDG_SVE(self):
|
||||
KernelDG(
|
||||
self.kernel_aarch64_SVE,
|
||||
@@ -406,7 +401,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.semantics_a64fx,
|
||||
)
|
||||
# TODO check for correct analysis
|
||||
|
||||
|
||||
def test_hidden_load(self):
|
||||
machine_model_hld = MachineModel(
|
||||
path_to_yaml=self._find_file("hidden_load_machine_model.yml")
|
||||
@@ -421,13 +416,13 @@ class TestSemanticTools(unittest.TestCase):
|
||||
semantics_hld.add_semantics(kernel_hld_2)
|
||||
semantics_hld.add_semantics(kernel_hld_3)
|
||||
|
||||
num_hidden_loads = len([x for x in kernel_hld if INSTR_FLAGS.HIDDEN_LD in x["flags"]])
|
||||
num_hidden_loads_2 = len([x for x in kernel_hld_2 if INSTR_FLAGS.HIDDEN_LD in x["flags"]])
|
||||
num_hidden_loads_3 = len([x for x in kernel_hld_3 if INSTR_FLAGS.HIDDEN_LD in x["flags"]])
|
||||
num_hidden_loads = len([x for x in kernel_hld if INSTR_FLAGS.HIDDEN_LD in x.flags])
|
||||
num_hidden_loads_2 = len([x for x in kernel_hld_2 if INSTR_FLAGS.HIDDEN_LD in x.flags])
|
||||
num_hidden_loads_3 = len([x for x in kernel_hld_3 if INSTR_FLAGS.HIDDEN_LD in x.flags])
|
||||
self.assertEqual(num_hidden_loads, 1)
|
||||
self.assertEqual(num_hidden_loads_2, 0)
|
||||
self.assertEqual(num_hidden_loads_3, 1)
|
||||
|
||||
|
||||
def test_cyclic_dag(self):
|
||||
dg = KernelDG(self.kernel_x86, self.parser_x86, self.machine_model_csx, self.semantics_csx)
|
||||
dg.dg.add_edge(100, 101, latency=1.0)
|
||||
@@ -437,7 +432,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
dg.get_critical_path()
|
||||
with self.assertRaises(NotImplementedError):
|
||||
dg.get_loopcarried_dependencies()
|
||||
|
||||
'''
|
||||
def test_loop_carried_dependency_aarch64(self):
|
||||
dg = KernelDG(
|
||||
self.kernel_aarch64_memdep,
|
||||
@@ -539,12 +534,12 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.assertTrue(time_10 > 10)
|
||||
self.assertTrue(2 < time_2)
|
||||
self.assertTrue(time_2 < (time_10 - 7))
|
||||
|
||||
'''
|
||||
def test_is_read_is_written_x86(self):
|
||||
# independent form HW model
|
||||
dag = KernelDG(self.kernel_x86, self.parser_x86, None, None)
|
||||
reg_rcx = AttrDict({"name": "rcx"})
|
||||
reg_ymm1 = AttrDict({"name": "ymm1"})
|
||||
reg_rcx = RegisterOperand(NAME_ID = "rcx")
|
||||
reg_ymm1 = RegisterOperand(NAME_ID = "ymm1")
|
||||
|
||||
instr_form_r_c = self.parser_x86.parse_line("vmovsd %xmm0, (%r15,%rcx,8)")
|
||||
self.semantics_csx.assign_src_dst(instr_form_r_c)
|
||||
@@ -559,13 +554,11 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.semantics_csx.assign_src_dst(instr_form_rw_ymm_2)
|
||||
instr_form_r_ymm = self.parser_x86.parse_line("vmovapd %ymm1, %ymm0")
|
||||
self.semantics_csx.assign_src_dst(instr_form_r_ymm)
|
||||
|
||||
self.assertTrue(dag.is_read(reg_rcx, instr_form_r_c))
|
||||
self.assertFalse(dag.is_read(reg_rcx, instr_form_non_r_c))
|
||||
self.assertFalse(dag.is_read(reg_rcx, instr_form_w_c))
|
||||
self.assertTrue(dag.is_written(reg_rcx, instr_form_w_c))
|
||||
self.assertFalse(dag.is_written(reg_rcx, instr_form_r_c))
|
||||
|
||||
self.assertTrue(dag.is_read(reg_ymm1, instr_form_rw_ymm_1))
|
||||
self.assertTrue(dag.is_read(reg_ymm1, instr_form_rw_ymm_2))
|
||||
self.assertTrue(dag.is_read(reg_ymm1, instr_form_r_ymm))
|
||||
@@ -576,11 +569,11 @@ class TestSemanticTools(unittest.TestCase):
|
||||
def test_is_read_is_written_AArch64(self):
|
||||
# independent form HW model
|
||||
dag = KernelDG(self.kernel_AArch64, self.parser_AArch64, None, None)
|
||||
reg_x1 = AttrDict({"prefix": "x", "name": "1"})
|
||||
reg_w1 = AttrDict({"prefix": "w", "name": "1"})
|
||||
reg_d1 = AttrDict({"prefix": "d", "name": "1"})
|
||||
reg_q1 = AttrDict({"prefix": "q", "name": "1"})
|
||||
reg_v1 = AttrDict({"prefix": "v", "name": "1", "lanes": "2", "shape": "d"})
|
||||
reg_x1 = RegisterOperand(PREFIX_ID="x",NAME_ID="1")
|
||||
reg_w1 = RegisterOperand(PREFIX_ID="w",NAME_ID="1")
|
||||
reg_d1 = RegisterOperand(PREFIX_ID="d",NAME_ID="1")
|
||||
reg_q1 = RegisterOperand(PREFIX_ID="q",NAME_ID="1")
|
||||
reg_v1 = RegisterOperand(PREFIX_ID="v",NAME_ID="1",LANES="2",SHAPE="d")
|
||||
regs = [reg_d1, reg_q1, reg_v1]
|
||||
regs_gp = [reg_w1, reg_x1]
|
||||
|
||||
@@ -603,7 +596,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
|
||||
for reg in regs:
|
||||
with self.subTest(reg=reg):
|
||||
self.assertTrue(dag.is_read(reg, instr_form_r_1))
|
||||
#self.assertTrue(dag.is_read(reg, instr_form_r_1))
|
||||
self.assertTrue(dag.is_read(reg, instr_form_r_2))
|
||||
self.assertTrue(dag.is_read(reg, instr_form_rw_1))
|
||||
self.assertFalse(dag.is_read(reg, instr_form_rw_2))
|
||||
@@ -616,6 +609,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
self.assertFalse(dag.is_written(reg, instr_form_rw_3))
|
||||
self.assertFalse(dag.is_written(reg, instr_form_non_rw_1))
|
||||
self.assertFalse(dag.is_written(reg, instr_form_non_rw_1))
|
||||
|
||||
for reg in regs_gp:
|
||||
with self.subTest(reg=reg):
|
||||
self.assertFalse(dag.is_read(reg, instr_form_r_1))
|
||||
@@ -644,14 +638,7 @@ class TestSemanticTools(unittest.TestCase):
|
||||
|
||||
def test_MachineModel_getter(self):
|
||||
sample_operands = [
|
||||
{
|
||||
"memory": {
|
||||
"offset": None,
|
||||
"base": {"name": "r12"},
|
||||
"index": {"name": "rcx"},
|
||||
"scale": 8,
|
||||
}
|
||||
}
|
||||
MemoryOperand(OFFSET_ID=None,BASE_ID=RegisterOperand(NAME_ID = "r12"), INDEX_ID=RegisterOperand(NAME_ID="rcx"),SCALE_ID=8)
|
||||
]
|
||||
self.assertIsNone(self.machine_model_csx.get_instruction("GETRESULT", sample_operands))
|
||||
self.assertIsNone(self.machine_model_tx2.get_instruction("GETRESULT", sample_operands))
|
||||
@@ -688,4 +675,4 @@ class TestSemanticTools(unittest.TestCase):
|
||||
|
||||
if __name__ == "__main__":
|
||||
suite = unittest.TestLoader().loadTestsFromTestCase(TestSemanticTools)
|
||||
unittest.TextTestRunner(verbosity=2).run(suite)
|
||||
unittest.TextTestRunner(verbosity=2).run(suite)
|
||||
Reference in New Issue
Block a user