Bitwise and operation fix.
This commit is contained in:
parent
16c1757bc3
commit
cfb5bba3ec
@ -526,7 +526,7 @@ class TwoInputInvertedLogicGate(TwoInputLogicGate):
|
||||
Returns:
|
||||
str: C code description of negated logic gate's Boolean function (with bitwise shifted inputs).
|
||||
"""
|
||||
return "~("+(super().get_function_c()) + ") & 0x01ull"
|
||||
return "~("+(super().get_function_c()) + ") & 0x01"
|
||||
|
||||
""" VERILOG CODE GENERATION """
|
||||
# FLAT VERILOG #
|
||||
@ -586,7 +586,7 @@ class OneInputLogicGate(TwoInputLogicGate):
|
||||
Returns:
|
||||
str: C code description of logic gate's Boolean function (with bitwise shifted input).
|
||||
"""
|
||||
return f"{self.operator}({self.a.get_wire_value_c_flat()}) & 0x01ull"
|
||||
return f"{self.operator}({self.a.get_wire_value_c_flat()}) & 0x01"
|
||||
|
||||
# HIERARCHICAL C #
|
||||
def get_prototype_c_hier(self):
|
||||
|
@ -50,7 +50,7 @@ class ThreeInputOneBitCircuit(TwoInputOneBitCircuit):
|
||||
output_bus_wire_names = []
|
||||
[output_bus_wire_names.append(w.prefix) for w in self.out.bus]
|
||||
circuit_block = self.__class__()
|
||||
return "".join([f" {c.out.prefix} = ({circuit_block.prefix}({self.a.get_wire_value_c_hier()}, {self.b.get_wire_value_c_hier()}, {self.c.get_wire_value_c_hier()}) >> {output_bus_wire_names.index(c.out.prefix)}) & 0x01ull;\n" for c in self.components if c.disable_generation is False and c.out.prefix in output_bus_wire_names])
|
||||
return "".join([f" {c.out.prefix} = ({circuit_block.prefix}({self.a.get_wire_value_c_hier()}, {self.b.get_wire_value_c_hier()}, {self.c.get_wire_value_c_hier()}) >> {output_bus_wire_names.index(c.out.prefix)}) & 0x01;\n" for c in self.components if c.disable_generation is False and c.out.prefix in output_bus_wire_names])
|
||||
|
||||
""" VERILOG CODE GENERATION """
|
||||
# FLAT VERILOG #
|
||||
|
@ -66,7 +66,7 @@ class TwoInputOneBitCircuit(ArithmeticCircuit):
|
||||
output_bus_wire_names = []
|
||||
[output_bus_wire_names.append(w.prefix) for w in self.out.bus]
|
||||
circuit_block = self.__class__()
|
||||
return "".join([f" {c.out.prefix} = ({circuit_block.prefix}({self.a.get_wire_value_c_hier()}, {self.b.get_wire_value_c_hier()}) >> {output_bus_wire_names.index(c.out.prefix)}) & 0x01ull;\n" for c in self.components if c.disable_generation is False and c.out.prefix in output_bus_wire_names])
|
||||
return "".join([f" {c.out.prefix} = ({circuit_block.prefix}({self.a.get_wire_value_c_hier()}, {self.b.get_wire_value_c_hier()}) >> {output_bus_wire_names.index(c.out.prefix)}) & 0x01;\n" for c in self.components if c.disable_generation is False and c.out.prefix in output_bus_wire_names])
|
||||
|
||||
# Self circuit hierarchical generation
|
||||
def get_declaration_c_hier(self):
|
||||
|
@ -65,9 +65,9 @@ class Wire():
|
||||
# If wire is part of an input bus (where wire names are concatenated from bus prefix and their index position inside the bus in square brackets)
|
||||
# then the wire value is obtained from bitwise shifting the required wire from the parent bus ('parent_bus.prefix' is the same value as 'self.prefix')
|
||||
if self.name.endswith("["+str(self.index)+"]") and self.parent_bus is not None:
|
||||
return f"(({self.prefix} >> {self.index}) & 0x01ull)"
|
||||
return f"(({self.prefix} >> {self.index}) & 0x01)"
|
||||
else:
|
||||
return f"(({self.name} >> 0) & 0x01ull)"
|
||||
return f"(({self.name} >> 0) & 0x01)"
|
||||
|
||||
def get_wire_value_c_hier(self):
|
||||
"""Accesses desired bit value from wire represented in C code variable used for hierarchical generation.
|
||||
@ -78,7 +78,7 @@ class Wire():
|
||||
if self.is_const():
|
||||
return f"({self.c_const})"
|
||||
else:
|
||||
return f"(({self.prefix} >> {self.index}) & 0x01ull)"
|
||||
return f"(({self.prefix} >> {self.index}) & 0x01)"
|
||||
|
||||
def return_wire_value_c_flat(self, offset: int = 0):
|
||||
"""Retrieves desired bit value from wire represented in C code variable and bitwise shifts it to desired position for storing it within a bus for flat generation.
|
||||
@ -290,7 +290,7 @@ class ConstantWireValue1(Wire):
|
||||
self.value = 1
|
||||
self.parent_bus = None
|
||||
|
||||
self.c_const = "0x01ull"
|
||||
self.c_const = "0x01"
|
||||
self.v_const = "1'b1"
|
||||
self.blif_const = "vdd"
|
||||
# Constant wire id for CGP generation
|
||||
|
2
chr2c.py
2
chr2c.py
@ -126,7 +126,7 @@ def parse_chromosome(chromosome, signed=False, function=None):
|
||||
# Export converted outputs into C code function body
|
||||
for i in range(0, c_out):
|
||||
if outs[i] in trans:
|
||||
lines_end.append(" y |= (%s & 0x01) << %d; // default output" % (trans[outs[i]], i))
|
||||
lines_end.append(" y |= (%s & 0x01ull) << %d; // default output" % (trans[outs[i]], i))
|
||||
else:
|
||||
assert False
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user