There's no such encoding as vmla.32 q1, q2, d0; let's assume you meant q0.
The simple, naive answer is:
vqmovn.s32 d0, q1 // saturate and narrow 32 -> 16
vqmovn.s16 d0, q0 // saturate and narrow 16 -> 8
this does signed saturation; if you have unsigned values, use the .u32 and .u16 types, and if you have signed values but want to saturate to unsigned, you use the vqmovun instruction.
To your question of whether or not you can do some sort of narrowing multiply, that depends heavily on the exact operation (and the values involved); given that you're using a vmla, the answer is "probably not", however.
Can you use the saturating operations in NEON and avoid widening to start with, or do you need all of that headroom?