Bitwise and operation fix.

This commit is contained in:
honzastor 2021-10-10 00:02:58 +02:00
parent 16c1757bc3
commit cfb5bba3ec
5 changed files with 9 additions and 9 deletions

View File

@ -526,7 +526,7 @@ class TwoInputInvertedLogicGate(TwoInputLogicGate):
Returns: Returns:
str: C code description of negated logic gate's Boolean function (with bitwise shifted inputs). 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 """ """ VERILOG CODE GENERATION """
# FLAT VERILOG # # FLAT VERILOG #
@ -586,7 +586,7 @@ class OneInputLogicGate(TwoInputLogicGate):
Returns: Returns:
str: C code description of logic gate's Boolean function (with bitwise shifted input). 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 # # HIERARCHICAL C #
def get_prototype_c_hier(self): def get_prototype_c_hier(self):

View File

@ -50,7 +50,7 @@ class ThreeInputOneBitCircuit(TwoInputOneBitCircuit):
output_bus_wire_names = [] output_bus_wire_names = []
[output_bus_wire_names.append(w.prefix) for w in self.out.bus] [output_bus_wire_names.append(w.prefix) for w in self.out.bus]
circuit_block = self.__class__() 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 """ """ VERILOG CODE GENERATION """
# FLAT VERILOG # # FLAT VERILOG #

View File

@ -66,7 +66,7 @@ class TwoInputOneBitCircuit(ArithmeticCircuit):
output_bus_wire_names = [] output_bus_wire_names = []
[output_bus_wire_names.append(w.prefix) for w in self.out.bus] [output_bus_wire_names.append(w.prefix) for w in self.out.bus]
circuit_block = self.__class__() 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 # Self circuit hierarchical generation
def get_declaration_c_hier(self): def get_declaration_c_hier(self):

View File

@ -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) # 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') # 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: 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: else:
return f"(({self.name} >> 0) & 0x01ull)" return f"(({self.name} >> 0) & 0x01)"
def get_wire_value_c_hier(self): def get_wire_value_c_hier(self):
"""Accesses desired bit value from wire represented in C code variable used for hierarchical generation. """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(): if self.is_const():
return f"({self.c_const})" return f"({self.c_const})"
else: 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): 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. """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.value = 1
self.parent_bus = None self.parent_bus = None
self.c_const = "0x01ull" self.c_const = "0x01"
self.v_const = "1'b1" self.v_const = "1'b1"
self.blif_const = "vdd" self.blif_const = "vdd"
# Constant wire id for CGP generation # Constant wire id for CGP generation

View File

@ -126,7 +126,7 @@ def parse_chromosome(chromosome, signed=False, function=None):
# Export converted outputs into C code function body # Export converted outputs into C code function body
for i in range(0, c_out): for i in range(0, c_out):
if outs[i] in trans: 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: else:
assert False assert False