Action Classes Vs Controller Actions

Is there any performance penalty using the CAction classes (described here: http://www.yiiframework.com/doc/guide/1.1/en/basics.controller#action) versus standard Controllers with actions as methods?

Or is it actually better because the controllers are more slim and the actions are instantiated only on demand?

Any guidance would be appreciated.