3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00

Added consteval testing to xsthammer and fixed bugs

This commit is contained in:
Clifford Wolf 2013-06-13 19:51:13 +02:00
parent 7f6c83a853
commit 30db70b1ba
3 changed files with 112 additions and 2 deletions

View file

@ -185,6 +185,14 @@ struct CellTypes
static RTLIL::Const eval(std::string type, const RTLIL::Const &arg1, const RTLIL::Const &arg2, bool signed1, bool signed2, int result_len)
{
if (type == "$sshr" && !signed1)
type = "$shr";
if (type == "$sshl" && !signed1)
type = "$shl";
if (!signed1 || !signed2)
signed1 = false, signed2 = false;
#define HANDLE_CELL_TYPE(_t) if (type == "$" #_t) return const_ ## _t(arg1, arg2, signed1, signed2, result_len);
HANDLE_CELL_TYPE(not)
HANDLE_CELL_TYPE(and)