From: Nikos Nikoleris Date: Fri, 7 Jun 2019 12:31:09 +0000 (+0100) Subject: configs: Fix read_config to work with new AddrRange serialization X-Git-Tag: v19.0.0.0~768 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=007d71a95da5532efeb2bfcd325bac0472be5922;p=gem5.git configs: Fix read_config to work with new AddrRange serialization Change-Id: I122c77c34c2f8c75f8b32682be858f651112ce89 Signed-off-by: Nikos Nikoleris Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/19151 Reviewed-by: Daniel Carvalho Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power Tested-by: kokoro --- diff --git a/configs/example/read_config.py b/configs/example/read_config.py index b1e820c62..167815c70 100644 --- a/configs/example/read_config.py +++ b/configs/example/read_config.py @@ -89,12 +89,17 @@ def tick_parser(cast=lambda i: i): def addr_range_parser(cls, flags, param): sys.stdout.flush() - (low, high, intlv_high_bit, xor_high_bit, - intlv_bits, intlv_match) = param.split(':') - return m5.objects.AddrRange( - start=long(low), end=long(high), - intlvHighBit=long(intlv_high_bit), xorHighBit=long(xor_high_bit), - intlvBits=long(intlv_bits), intlvMatch=long(intlv_match)) + _param = param.split(':') + (start, end) = _param[0:2] + if len(_param) == 2: + return m5.objects.AddrRange(start=long(start), end=long(end)) + else: + assert len(_param) > 2 + intlv_match = _param[2] + masks = [ long(m) for m in _param[3:] ] + return m5.objects.AddrRange(start=long(start), end=long(end), + masks=masks, intlvMatch=long(intlv_match)) + def memory_bandwidth_parser(cls, flags, param): # The string will be in tick/byte