MCPcopy Create free account
hub / github.com/AliveToolkit/alive2 / align_ge_size

Function align_ge_size

ir/memory.cpp:176–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176static bool align_ge_size(const expr &align, const expr &size) {
177 uint64_t algn, sz;
178 return align.isUInt(algn) && size.isUInt(sz) && (1ull << algn) >= sz;
179}
180
181static bool align_gt_size(const expr &align, const expr &size) {
182 uint64_t algn, sz;

Callers 2

disjointFunction · 0.85
mkAxiomsMethod · 0.85

Calls 1

isUIntMethod · 0.80

Tested by

no test coverage detected