xo-expression2: DGlobalSymtab mvp implementation
This commit is contained in:
parent
017a7a092c
commit
b187f1a719
2 changed files with 109 additions and 22 deletions
|
|
@ -7,32 +7,57 @@
|
|||
#include "DUniqueString.hpp"
|
||||
#include <xo/expression2/Expression.hpp>
|
||||
#include <xo/expression2/Variable.hpp>
|
||||
#include <xo/object2/Array.hpp>
|
||||
#include <xo/gc/GCObject.hpp>
|
||||
#include <xo/facet/FacetRegistry.hpp>
|
||||
#include <xo/indentlog/scope.hpp>
|
||||
|
||||
namespace xo {
|
||||
using xo::map::DArenaHashMap;
|
||||
using xo::mm::AGCObject;
|
||||
|
||||
namespace scm {
|
||||
|
||||
#ifdef NOT_YET
|
||||
DVariable *
|
||||
DGlobalSymtab::lookup_binding(Binding ix) noexcept
|
||||
DGlobalSymtab::DGlobalSymtab(repr_type * map,
|
||||
DArray * vars)
|
||||
: map_{map}, vars_{vars}
|
||||
{
|
||||
assert(ix.i_link() == -1);
|
||||
assert(ix.j_slot() >= 0);
|
||||
assert(vars_);
|
||||
assert(std::uint64_t(ix.j_slot()) < vars_->size());
|
||||
|
||||
auto var_gco = obj<AGCObject,DVariable>::from((*vars_)[ix.j_slot()]);;
|
||||
auto var = var_gco.to_facet<AExpression>();
|
||||
|
||||
assert(var.data());
|
||||
|
||||
return var.data();
|
||||
}
|
||||
#endif
|
||||
|
||||
DGlobalSymtab *
|
||||
DGlobalSymtab::make(obj<AAllocator> global_mm,
|
||||
obj<AAllocator> mm,
|
||||
const ArenaHashMapConfig & cfg)
|
||||
{
|
||||
repr_type * map = nullptr;
|
||||
{
|
||||
/** memory DGlobalSymtab::map_
|
||||
* (but not counting the mmap()'s that map will make for itself)
|
||||
**/
|
||||
void * global_mem = global_mm.alloc_for<repr_type>();
|
||||
|
||||
map = new (global_mem) repr_type(cfg);
|
||||
}
|
||||
assert(map);
|
||||
|
||||
void * symtab_mem = mm.alloc_for<DGlobalSymtab>();
|
||||
|
||||
/* choosing same capacity for hash, vars */
|
||||
DArray * vars = DArray::empty(mm, map->capacity());
|
||||
assert(vars);
|
||||
|
||||
DGlobalSymtab * symtab = new (symtab_mem) DGlobalSymtab(map, vars);
|
||||
assert(symtab);
|
||||
|
||||
return symtab;
|
||||
}
|
||||
|
||||
void
|
||||
DGlobalSymtab::visit_pools(const MemorySizeVisitor & visitor) const
|
||||
{
|
||||
if (map_)
|
||||
map_->visit_pools(visitor);
|
||||
}
|
||||
|
||||
DVariable *
|
||||
DGlobalSymtab::lookup_variable(const DUniqueString * sym) const noexcept
|
||||
|
|
@ -62,6 +87,9 @@ namespace xo {
|
|||
|
||||
DArray::size_type n = vars_->size();
|
||||
|
||||
// NOTE: expansion here is moot at present (Feb 2026).
|
||||
// Not implemented in ArenaHashMap
|
||||
|
||||
/** make sure vars_ has room **/
|
||||
if (n == vars_->capacity()) {
|
||||
// reallocate with more capacity
|
||||
|
|
@ -82,7 +110,9 @@ namespace xo {
|
|||
return var;
|
||||
}
|
||||
|
||||
map_[sym] = binding.j_slot();
|
||||
assert(map_->size() < map_->capacity());
|
||||
|
||||
(*map_)[sym] = binding.j_slot();
|
||||
|
||||
bool ok = vars_->push_back(obj<AGCObject,DVariable>(var));
|
||||
|
||||
|
|
@ -101,14 +131,38 @@ namespace xo {
|
|||
scope log(XO_DEBUG(true), "stub");
|
||||
log && log(xtag("sym", std::string_view(*sym)));
|
||||
|
||||
auto ix = map_.find(sym);
|
||||
auto ix = map_->find(sym);
|
||||
|
||||
if (ix == map_.end())
|
||||
if (ix == map_->end())
|
||||
return Binding::null();
|
||||
|
||||
return Binding::global(ix->second);
|
||||
}
|
||||
|
||||
// ----- gcobject facet -----
|
||||
|
||||
std::size_t
|
||||
DGlobalSymtab::shallow_size() const noexcept
|
||||
{
|
||||
return sizeof(DGlobalSymtab);
|
||||
}
|
||||
|
||||
DGlobalSymtab *
|
||||
DGlobalSymtab::shallow_copy(obj<AAllocator> mm) const noexcept
|
||||
{
|
||||
return mm.std_copy_for<DGlobalSymtab>(this);
|
||||
}
|
||||
|
||||
std::size_t
|
||||
DGlobalSymtab::forward_children(obj<ACollector> gc) noexcept
|
||||
{
|
||||
// map_ doesn't contain any gc-owned data, can skip
|
||||
|
||||
gc.forward_inplace(&vars_);
|
||||
|
||||
return this->shallow_size();
|
||||
}
|
||||
|
||||
} /*namespace scm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue