bit.unsafe_mov¶
note: doesn’t work if dst==src.
dst = src
dst,src are bits.
Signature¶
def unsafe_mov dst, src { ... }
Defined in bit/memory.fj — lines 64–67 (view on GitHub).
Complexity¶
Time:
2@-2Space:
2@-2
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def unsafe_mov dst, src {
.zero dst
.xor dst, src
}
Depends on¶
Used by¶
Example uses¶
bit.movinbit/memory.fj