If AA is going to forward all method calls to BB (i.e. method foo in AA calls method foo in BB, and likewise for method bar e.t.c), then there's no point in subclassing BB. Just define AUTOLOAD in AA so that it does whatever preprocessing you want before calling the corresponding method in BB.
Decoration and inheritance are orthogonal techniques.