Well, for those curious about VAXen (which is the preferred plural of VAX),...
VAXen had all of the PDP-11 instructions (well, most of them) plus a few others to muck about with bits directly.
PDP-11 could do a ROR(B) (word or byte Rotate One Right), ROL(B) (word or byte Rotate One Left), ASL(B) (arithmetic shift left word or byte), ASR(B) (arithmetic shift right word or byte), ASH(C) (arithmetic shift register or combined registers) plus ADC(B)/SBC(B) (add or subtract carry to word or byte). You could bit-twiddle with the best of them. Not to mention mask-based instructions like BIS, BIT, and BIC (Bit set, bit test, and bit clear) and XOR (exclusive or). Plus the branch instructions that tested the carry after a rotate, and you could set or clear the carry BEFORE a rotate if you wanted.
But the VAX had even the PDP-11 beat. It included ASH(L/Q) (long/quadword shift), ADWC (add with carry), all of the XOR, BIC, BIS, and BIT for byte, word, & longword, and the king of all bit-twiddlers: the INSV/EXTV (insert/extract bit sub-field). You could define a field as 1 to 32 bits starting anywhere in a longword. Pull the field into a register, muck it about, and drop it back where you found it without touching anything adjacent to it.
Now, many folks didn't know this about VAXen, but there really was only one true VAX for lots of years. That was the 11/750. ALL OTHER VAXEN were microcoded until the VAX mod 3900s came out. Most VAXen were faceless until they loaded their microcode. And it was shown more than once at the old DECus conventions that some wag had programmed the VAX microcode to emulate an IBM 3xx family machine or another CPU as an experiment to prove something or other.
In terms of ability, I still love the old VAXens. But these days, there is something better on the market, even if not quite so approachable as VAX was - the Alpha CPU is pure speed. Due to the teaming agreements worked out between Intel and DEC before DEC got bought out, your modern PCs are about half Alpha inside. Particularly in the L2 cache arena and the instruction pipelining segments. And the new IA64 chip, whatever they finally call it, is about 3/4 Alpha. My home machine, with twin CPUs running at 2.8 GHz, uses Alpha technology to keep its multiprocessing operations running smoothly.
None of which helps anyone who needs to use Access to bit-twiddle today.