bit.xor_from_ptrΒΆ
Effectively: bit.xor dst, *ptr
dst is a bit. ptr is a bit[:w] that holds an address, which we assume is dw-aligned.
SignatureΒΆ
def xor_from_ptr dst, ptr { ... }
Defined in bit/pointers.fj β lines 149β151 (view on GitHub).
ComplexityΒΆ
Time:
8w@Space:
8w@
See the complexity glossary for what @, w, dw, dbit, n mean.
Requires initΒΆ
The following must be initialised before this macro is invoked:
bit.pointers.ptr_init
SourceΒΆ
Click to view the macro body
def xor_from_ptr dst, ptr {
.exact_xor_from_ptr dst+dbit, ptr
}
Depends onΒΆ
β Previous: bit.ptr_wflip_2nd_word
Next: bit.exact_xor_from_ptr β