Qt 4.8 (Qt Quick 1) で QML の実行時間を計測する

var t1 = new Date().getTime();
...
var t2 = new Date().gettime();
console.debug(t2 - t1);