-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpattern_signed.hpp
More file actions
59 lines (42 loc) · 1.98 KB
/
pattern_signed.hpp
File metadata and controls
59 lines (42 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#pragma once
#include <pl/patterns/pattern.hpp>
namespace pl::ptrn {
class PatternSigned : public Pattern {
public:
PatternSigned(core::Evaluator *evaluator, u64 offset, size_t size, u32 line)
: Pattern(evaluator, offset, size, line) { }
[[nodiscard]] std::shared_ptr<Pattern> clone() const override {
return std::shared_ptr<Pattern>(new PatternSigned(*this));
}
[[nodiscard]] core::Token::Literal getValue() const override {
i128 data = 0;
this->getEvaluator()->readData(this->getOffset(), &data, this->getSize(), this->getSection());
data = hlp::changeEndianess(data, this->getSize(), this->getEndian());
return transformValue(hlp::signExtend(this->getSize() * 8, data));
}
[[nodiscard]] std::string getFormattedName() const override {
return this->getTypeName();
}
[[nodiscard]] bool operator==(const Pattern &other) const override { return compareCommonProperties<decltype(*this)>(other); }
void accept(PatternVisitor &v) override {
v.visit(*this);
}
std::string formatDisplayValue() override {
auto data = this->getValue().toSigned();
return Pattern::callUserFormatFunc(this->getValue()).value_or(fmt::format("{:d}", data));
}
[[nodiscard]] std::string toString() override {
auto value = this->getValue();
auto result = fmt::format("{:d}", value.toSigned());
return Pattern::callUserFormatFunc(value, true).value_or(result);
}
std::vector<u8> getRawBytes() override {
std::vector<u8> result;
result.resize(this->getSize());
this->getEvaluator()->readData(this->getOffset(), result.data(), result.size(), this->getSection());
if (this->getEndian() != std::endian::native)
std::reverse(result.begin(), result.end());
return result;
}
};
}