src/make-quickutils.lisp @ ba205f6b2875
Excise the stupid fucking `set-*` opcodes
The book uses the horribly-confusingly-named `set-*` operations for handling
subterms in query mode. The author does this because he claims this is both
easier to understand and more performant. In reality it is neither of these
things.
If you just name the subterm-handling opcodes something not completely stupid,
like `handle-subterm-*` instead of `unify-*` it becomes obvious what they do.
Also, despite the fact that `put-*` instructions now need to set the WAM's
`mode`, we still get about a 10% speedup here, likely from some combination of
reducing the VM loop code size and simplifying the compilation process. So it's
not even more performant.
TL;DR: Just say "No" to `set-*`.
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 10 Jul 2016 14:21:18 +0000 |
parents |
a3466a551136 |
children |
a8598eafe403 |
(ql:quickload 'quickutil)
(qtlc:save-utils-as
"quickutils.lisp"
:utilities '(:define-constant
:set-equal
:curry
:switch
:ensure-boolean
:while
:until
:tree-member-p
:tree-collect
:with-gensyms
:once-only
:zip
:alist-to-hash-table
:map-tree
:weave
:alist-plist
:equivalence-classes
:map-product)
:package "BONES.QUICKUTILS")