Coming from programming assembly in PIC I'm so used to looking up their instruction set summary table where I can readily check for the CPU cycles for different instructions (e.g. 1 cycles for ADDWF, 2 cycles for CALL etc.). Specifically for my application I need to know the exact cycles each instruction takes (x-cycles for decrement, y-cycles for branch, z-cycles for rotate etc...), but now I'm weeks into MSP430 I'm still not able to locate these information in the TI's MSP430FR2x Family User Guide:
They are NOT in 4.6 Instruction Set Description
They are NOT in 4.6.2 MSP Instructions Description
Only in 4.5.1.5.3 Jump Instructions Cycles and Lengths did I find JUMP takes 2 cycles .... but that's only for jump instructions through, but what about other instructions? So I literally searched for each operand and yet no information found.
Appreciate if someone can tell me where they are or is there a separate document or table that lists out the number of cycles for each instruction operand.