mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
replace a few old-school constructors for a 0.5% reduction in code size
don't waste those 128 KB!
This commit is contained in:
parent
a3eb2ff58d
commit
ef58376c14
|
@ -114,9 +114,9 @@ class pattern_inference_cfg : public default_rewriter_cfg {
|
||||||
//
|
//
|
||||||
class collect {
|
class collect {
|
||||||
struct entry {
|
struct entry {
|
||||||
expr * m_node;
|
expr * m_node = nullptr;
|
||||||
unsigned m_delta;
|
unsigned m_delta = 0;
|
||||||
entry():m_node(nullptr), m_delta(0) {}
|
entry() = default;
|
||||||
entry(expr * n, unsigned d):m_node(n), m_delta(d) {}
|
entry(expr * n, unsigned d):m_node(n), m_delta(d) {}
|
||||||
unsigned hash() const {
|
unsigned hash() const {
|
||||||
return hash_u_u(m_node->get_id(), m_delta);
|
return hash_u_u(m_node->get_id(), m_delta);
|
||||||
|
|
|
@ -52,9 +52,8 @@ public:
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
struct cell {
|
struct cell {
|
||||||
cell * m_next;
|
cell * m_next = (cell*)1;
|
||||||
T m_data;
|
T m_data;
|
||||||
cell():m_next(reinterpret_cast<cell*>(1)) {}
|
|
||||||
bool is_free() const { return GET_TAG(m_next) == 1; }
|
bool is_free() const { return GET_TAG(m_next) == 1; }
|
||||||
void mark_free() { m_next = TAG(cell*, m_next, 1); }
|
void mark_free() { m_next = TAG(cell*, m_next, 1); }
|
||||||
void unmark_free() { m_next = UNTAG(cell*, m_next); }
|
void unmark_free() { m_next = UNTAG(cell*, m_next); }
|
||||||
|
|
|
@ -19,6 +19,7 @@ Revision History:
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include<cstdlib>
|
#include<cstdlib>
|
||||||
|
#include<memory>
|
||||||
#include<ostream>
|
#include<ostream>
|
||||||
#include<iomanip>
|
#include<iomanip>
|
||||||
#include "util/z3_exception.h"
|
#include "util/z3_exception.h"
|
||||||
|
@ -105,18 +106,14 @@ ALLOC_ATTR T * alloc_vect(unsigned sz);
|
||||||
template<typename T>
|
template<typename T>
|
||||||
T * alloc_vect(unsigned sz) {
|
T * alloc_vect(unsigned sz) {
|
||||||
T * r = static_cast<T*>(memory::allocate(sizeof(T) * sz));
|
T * r = static_cast<T*>(memory::allocate(sizeof(T) * sz));
|
||||||
T * curr = r;
|
std::uninitialized_default_construct_n(r, sz);
|
||||||
for (unsigned i = 0; i < sz; i++, curr++)
|
|
||||||
new (curr) T();
|
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
void dealloc_vect(T * ptr, unsigned sz) {
|
void dealloc_vect(T * ptr, unsigned sz) {
|
||||||
if (ptr == nullptr) return;
|
if (ptr == nullptr) return;
|
||||||
T * curr = ptr;
|
std::destroy_n(ptr, sz);
|
||||||
for (unsigned i = 0; i < sz; i++, curr++)
|
|
||||||
curr->~T();
|
|
||||||
memory::deallocate(ptr);
|
memory::deallocate(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -56,10 +56,9 @@ template<typename Key, typename Value>
|
||||||
class obj_map {
|
class obj_map {
|
||||||
public:
|
public:
|
||||||
struct key_data {
|
struct key_data {
|
||||||
Key * m_key;
|
Key * m_key = nullptr;
|
||||||
Value m_value;
|
Value m_value;
|
||||||
key_data():m_key(nullptr), m_value() {
|
key_data() = default;
|
||||||
}
|
|
||||||
key_data(Key * k):
|
key_data(Key * k):
|
||||||
m_key(k), m_value() {
|
m_key(k), m_value() {
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ template<typename T>
|
||||||
class symbol_table;
|
class symbol_table;
|
||||||
|
|
||||||
class symbol {
|
class symbol {
|
||||||
char const * m_data;
|
char const * m_data = nullptr;
|
||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
friend class symbol_table;
|
friend class symbol_table;
|
||||||
|
@ -50,9 +50,7 @@ class symbol {
|
||||||
}
|
}
|
||||||
static symbol m_dummy;
|
static symbol m_dummy;
|
||||||
public:
|
public:
|
||||||
symbol():
|
symbol() = default;
|
||||||
m_data(nullptr) {
|
|
||||||
}
|
|
||||||
explicit symbol(char const * d);
|
explicit symbol(char const * d);
|
||||||
explicit symbol(const std::string & str) : symbol(str.c_str()) {}
|
explicit symbol(const std::string & str) : symbol(str.c_str()) {}
|
||||||
explicit symbol(unsigned idx):
|
explicit symbol(unsigned idx):
|
||||||
|
|
|
@ -31,8 +31,7 @@ class symbol_table {
|
||||||
symbol m_key;
|
symbol m_key;
|
||||||
T m_data;
|
T m_data;
|
||||||
|
|
||||||
key_data() {
|
key_data() = default;
|
||||||
}
|
|
||||||
|
|
||||||
explicit key_data(symbol k):
|
explicit key_data(symbol k):
|
||||||
m_key(k) {
|
m_key(k) {
|
||||||
|
@ -59,10 +58,12 @@ class symbol_table {
|
||||||
struct hash_entry {
|
struct hash_entry {
|
||||||
typedef key_data data;
|
typedef key_data data;
|
||||||
key_data m_data;
|
key_data m_data;
|
||||||
|
|
||||||
|
#if 0
|
||||||
hash_entry() {
|
hash_entry() {
|
||||||
SASSERT(m_data.m_key == symbol::null);
|
SASSERT(m_data.m_key == symbol::null);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
unsigned get_hash() const {
|
unsigned get_hash() const {
|
||||||
return m_data.m_key.hash();
|
return m_data.m_key.hash();
|
||||||
|
|
Loading…
Reference in a new issue