summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mem/cache/compressors/cpack.cc5
-rw-r--r--src/mem/cache/compressors/cpack.hh49
2 files changed, 23 insertions, 31 deletions
diff --git a/src/mem/cache/compressors/cpack.cc b/src/mem/cache/compressors/cpack.cc
index 1192963e2..625bedcd8 100644
--- a/src/mem/cache/compressors/cpack.cc
+++ b/src/mem/cache/compressors/cpack.cc
@@ -159,8 +159,6 @@ CPack::compress(const uint64_t* data, Cycles& comp_lat, Cycles& decomp_lat)
uint32_t
CPack::decompressWord(const Pattern* pattern)
{
- std::array<uint8_t, 4> data;
-
// Search for matching entry
std::vector<std::array<uint8_t, 4>>::iterator entry_it =
dictionary.begin();
@@ -168,7 +166,8 @@ CPack::decompressWord(const Pattern* pattern)
// Decompress the match. If the decompressed value must be added to
// the dictionary, do it
- if (pattern->decompress(*entry_it, data)) {
+ const std::array<uint8_t, 4> data = pattern->decompress(*entry_it);
+ if (pattern->shouldAllocate()) {
dictionary[numEntries++] = data;
}
diff --git a/src/mem/cache/compressors/cpack.hh b/src/mem/cache/compressors/cpack.hh
index 664a37601..1a271eeae 100644
--- a/src/mem/cache/compressors/cpack.hh
+++ b/src/mem/cache/compressors/cpack.hh
@@ -357,11 +357,10 @@ class CPack::Pattern
* its data.
*
* @param dict_bytes The bytes in the corresponding matching entry.
- * @param data The decompressed pattern.
- * @return Whether entry should be added to dictionary or not.
+ * @return The decompressed pattern.
*/
- virtual bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const = 0;
+ virtual std::array<uint8_t, 4> decompress(
+ const std::array<uint8_t, 4> dict_bytes) const = 0;
};
class CPack::PatternZZZZ : public Pattern
@@ -378,11 +377,10 @@ class CPack::PatternZZZZ : public Pattern
(bytes[0] == 0);
}
- bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const override
+ std::array<uint8_t, 4>
+ decompress(const std::array<uint8_t, 4> dict_bytes) const override
{
- data = {0, 0, 0, 0};
- return false;
+ return {0, 0, 0, 0};
}
};
@@ -407,11 +405,10 @@ class CPack::PatternXXXX : public Pattern
return true;
}
- bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const override
+ std::array<uint8_t, 4>
+ decompress(const std::array<uint8_t, 4> dict_bytes) const override
{
- data = bytes;
- return true;
+ return bytes;
}
};
@@ -428,11 +425,10 @@ class CPack::PatternMMMM : public Pattern
return (bytes == dict_bytes) && (match_location >= 0);
}
- bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const override
+ std::array<uint8_t, 4>
+ decompress(const std::array<uint8_t, 4> dict_bytes) const override
{
- data = dict_bytes;
- return true;
+ return dict_bytes;
}
};
@@ -461,11 +457,10 @@ class CPack::PatternMMXX : public Pattern
}
- bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const override
+ std::array<uint8_t, 4>
+ decompress(const std::array<uint8_t, 4> dict_bytes) const override
{
- data = {byte0, byte1, dict_bytes[2], dict_bytes[3]};
- return true;
+ return {byte0, byte1, dict_bytes[2], dict_bytes[3]};
}
};
@@ -489,11 +484,10 @@ class CPack::PatternZZZX : public Pattern
(bytes[0] != 0);
}
- bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const override
+ std::array<uint8_t, 4>
+ decompress(const std::array<uint8_t, 4> dict_bytes) const override
{
- data = {byte, 0, 0, 0};
- return false;
+ return {byte, 0, 0, 0};
}
};
@@ -519,11 +513,10 @@ class CPack::PatternMMMX : public Pattern
(match_location >= 0);
}
- bool decompress(const std::array<uint8_t, 4> dict_bytes,
- std::array<uint8_t, 4>& data) const override
+ std::array<uint8_t, 4>
+ decompress(const std::array<uint8_t, 4> dict_bytes) const override
{
- data = {byte, dict_bytes[1], dict_bytes[2], dict_bytes[3]};
- return true;
+ return {byte, dict_bytes[1], dict_bytes[2], dict_bytes[3]};
}
};