You may actually be accessing the hash table three times. Why? Because the push macro may expand into code that does a gethash to get the list, and then some system::sethash operation to store the value.
In this problem, you are inspecting the value of a place, which is a list. If that list satisfies some predicate test, then you push something onto that place.
This problem can be attacked by creating special-purpose operator which captures this semantics:
(push-if <new-value> <predicate> <place>)
For instance:
(push-if i #'may-add (gethash complex-list table))
This push-if is defined as a macro which uses the get-setf-expansion function on the <place> form argument to obtain the pieces needed to generate the code to access that place just once.
The generated code evaluates a load form to get the old value from the place, then applies the condition to the old value, and if it succeeds, then it prepares the new value in the appropriate temporary store variable obtained from get-setf-expansion and evaluates the store form.
This is the best you can do in portable Lisp, and you may find that this still performs two hash operations, as mentioned above. (In which case you hope there is a decent caching optimization in the hash table itself. But at least it is down to two ops.)
The approach will be as optimized as the built in place mutating forms: incf, push, rotatef, etc. Our push-if will be on par with the built-ins.
If it still sucks (performs two hashes to update a hash place, with no caching optimization), then the only way to fix that is at the implementation level.
push-if code follows:
(defmacro push-if (new-value predicate-fun list-place &environment env)
(multiple-value-bind (temp-syms val-forms
store-vars store-form access-form)
(get-setf-expansion list-place env)
(let ((old-val (gensym)))
(when (rest store-vars)
(error "PUSH-IF: cannot take ref of multiple-value place"))
`(multiple-value-bind (,@temp-syms) (values ,@val-forms)
(let ((,old-val ,access-form))
(when (funcall ,predicate-fun ,old-val)
(setf ,(first store-vars) (cons ,new-value ,old-val))
,store-form))))))
Sample expansion:
> (macroexpand '(push-if new test place))
(LET* ((#:VALUES-12731 (MULTIPLE-VALUE-LIST (VALUES))))
(LET ((#:G12730 PLACE))
(WHEN (FUNCALL TEST #:G12730) (SETF #:NEW-12729 (CONS NEW #:G12730))
(SETQ PLACE #:NEW-12729)))) ;
Looks sane for the simple case when the place is a variable. There is only a slight problem that I'm not going to fix: the forms new, test and place are evaluated just once each, but not in left-to-right order!
Test with a hash table place (CLISP):
> (macroexpand '(push-if new test (gethash a b)))
(LET*
((#:VALUES-12736 (MULTIPLE-VALUE-LIST (VALUES A B)))
(#:G12732 (POP #:VALUES-12736)) (#:G12733 (POP #:VALUES-12736)))
(LET ((#:G12735 (GETHASH #:G12732 #:G12733)))
(WHEN (FUNCALL TEST #:G12735) (SETF #:G12734 (CONS NEW #:G12735))
(SYSTEM::PUTHASH #:G12732 #:G12733 #:G12734)))) ;
Aha; now there is somewhat more interesting code being generated in order to avoid evaluating a and b twice. The gethash function is invoked once, but its arguments are gensym variables. The old value is captured as #:G12735. The test is applied to it, and if it passes, the store variabel #:G12734 is updated with a the old list value with new consed in front of it. Then, that value is put into the hash table with system::puthash.
So in this Lisp implementation, there is no way to avoid two hash table operations to perform an update: gethash and system::puthash. This is the best we can do and hope that the two work as an optimized pair.