mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
add lowlevel to inc/dec a data pointer
This commit is contained in:
parent
a61e7a696d
commit
cf54304cf4
13 changed files with 90 additions and 28 deletions
|
@ -116,8 +116,10 @@ pub enum LowLevel {
|
|||
Hash,
|
||||
PtrCast,
|
||||
PtrWrite,
|
||||
RefCountInc,
|
||||
RefCountDec,
|
||||
RefCountIncRcPtr,
|
||||
RefCountDecRcPtr,
|
||||
RefCountIncDataPtr,
|
||||
RefCountDecDataPtr,
|
||||
RefCountIsUnique,
|
||||
BoxExpr,
|
||||
UnboxExpr,
|
||||
|
@ -222,8 +224,10 @@ macro_rules! map_symbol_to_lowlevel {
|
|||
LowLevel::Hash => unimplemented!(),
|
||||
LowLevel::PtrCast => unimplemented!(),
|
||||
LowLevel::PtrWrite => unimplemented!(),
|
||||
LowLevel::RefCountInc => unimplemented!(),
|
||||
LowLevel::RefCountDec => unimplemented!(),
|
||||
LowLevel::RefCountIncRcPtr => unimplemented!(),
|
||||
LowLevel::RefCountDecRcPtr=> unimplemented!(),
|
||||
LowLevel::RefCountIncDataPtr => unimplemented!(),
|
||||
LowLevel::RefCountDecDataPtr=> unimplemented!(),
|
||||
LowLevel::RefCountIsUnique => unimplemented!(),
|
||||
|
||||
// these are not implemented, not sure why
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue