2014-09-09 00:18:28 +04:00
|
|
|
/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set shiftwidth=4 tabstop=4 autoindent cindent expandtab: */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var Instrument = {
|
|
|
|
enter: {},
|
|
|
|
exit: {},
|
2014-09-09 06:13:52 +04:00
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
profiling: false,
|
|
|
|
profile: null,
|
2014-09-21 02:13:26 +04:00
|
|
|
|
2014-09-09 06:00:05 +04:00
|
|
|
callEnterHooks: function(methodInfo, caller, callee) {
|
2014-10-07 22:14:05 +04:00
|
|
|
var key = methodInfo.implKey;
|
2014-09-09 06:00:05 +04:00
|
|
|
if (Instrument.enter[key]) {
|
|
|
|
Instrument.enter[key](caller, callee);
|
|
|
|
}
|
2014-09-21 02:13:26 +04:00
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
if (this.profiling) {
|
2014-09-22 21:50:36 +04:00
|
|
|
var now = performance.now();
|
2014-09-22 10:51:19 +04:00
|
|
|
|
2014-09-23 12:52:33 +04:00
|
|
|
if (caller.profileData && caller.profileData.then) {
|
2014-09-23 13:06:51 +04:00
|
|
|
caller.profileData.cost += now - caller.profileData.then;
|
|
|
|
caller.profileData.then = null;
|
2014-09-22 12:05:03 +04:00
|
|
|
}
|
2014-09-22 10:51:19 +04:00
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
callee.profileData = {
|
|
|
|
cost: 0,
|
|
|
|
then: now,
|
|
|
|
};
|
|
|
|
}
|
2014-09-09 06:00:05 +04:00
|
|
|
},
|
2014-09-09 06:13:52 +04:00
|
|
|
|
2014-09-09 06:00:05 +04:00
|
|
|
callExitHooks: function(methodInfo, caller, callee) {
|
2014-10-07 22:14:05 +04:00
|
|
|
var key = methodInfo.implKey;
|
2014-09-22 10:51:19 +04:00
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
if (this.profiling) {
|
2014-09-22 21:50:36 +04:00
|
|
|
var now = performance.now();
|
2014-09-22 10:51:19 +04:00
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
if (callee.profileData) {
|
2014-09-23 12:52:33 +04:00
|
|
|
if (callee.profileData.then) {
|
|
|
|
callee.profileData.cost += now - callee.profileData.then;
|
|
|
|
callee.profileData.then = null;
|
|
|
|
}
|
|
|
|
|
2014-09-22 22:29:35 +04:00
|
|
|
var methodProfileData = this.profile[key] || (this.profile[key] = { count: 0, cost: 0 });
|
|
|
|
methodProfileData.count++;
|
|
|
|
methodProfileData.cost += callee.profileData.cost;
|
2014-09-22 12:05:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (caller.profileData) {
|
|
|
|
caller.profileData.then = now;
|
|
|
|
}
|
2014-09-22 10:51:19 +04:00
|
|
|
}
|
|
|
|
|
2014-09-09 06:00:05 +04:00
|
|
|
if (Instrument.exit[key]) {
|
|
|
|
Instrument.exit[key](caller, callee);
|
|
|
|
}
|
|
|
|
},
|
2014-09-21 02:13:26 +04:00
|
|
|
|
2014-09-22 10:59:15 +04:00
|
|
|
callPauseHooks: function(frame) {
|
2014-09-23 12:52:33 +04:00
|
|
|
if (this.profiling && frame.profileData && frame.profileData.then) {
|
|
|
|
frame.profileData.cost += performance.now() - frame.profileData.then;
|
|
|
|
frame.profileData.then = null;
|
2014-09-22 10:59:15 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
callResumeHooks: function(frame) {
|
2014-09-22 12:05:03 +04:00
|
|
|
if (this.profiling && frame.profileData) {
|
2014-09-22 21:50:36 +04:00
|
|
|
frame.profileData.then = performance.now();
|
2014-09-22 10:59:15 +04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
startProfile: function() {
|
|
|
|
this.profile = {};
|
|
|
|
this.profiling = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
stopProfile: function() {
|
2014-09-21 02:13:26 +04:00
|
|
|
var methods = [];
|
|
|
|
|
|
|
|
for (var key in this.profile) {
|
|
|
|
methods.push({
|
|
|
|
key: key,
|
2014-09-22 22:29:35 +04:00
|
|
|
count: this.profile[key].count,
|
|
|
|
cost: this.profile[key].cost,
|
2014-09-21 02:13:26 +04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-09-22 22:29:35 +04:00
|
|
|
methods.sort(function(a, b) { return b.cost - a.cost });
|
2014-09-21 02:13:26 +04:00
|
|
|
|
2014-09-22 12:05:03 +04:00
|
|
|
console.log("Profile:");
|
2014-09-21 02:13:26 +04:00
|
|
|
methods.forEach(function(method) {
|
2014-09-22 22:29:35 +04:00
|
|
|
console.log(Math.round(method.cost) + "ms " + method.count + " " + method.key);
|
2014-09-21 02:13:26 +04:00
|
|
|
});
|
2014-09-22 12:05:03 +04:00
|
|
|
|
|
|
|
this.profiling = false;
|
|
|
|
},
|
2014-09-25 02:11:46 +04:00
|
|
|
|
2014-10-07 22:14:05 +04:00
|
|
|
measure: function(alternateImpl, ctx, methodInfo) {
|
|
|
|
var key = methodInfo.implKey;
|
2014-09-25 02:11:46 +04:00
|
|
|
if (this.profiling) {
|
|
|
|
var then = performance.now();
|
2014-10-15 03:38:16 +04:00
|
|
|
alternateImpl.call(null, ctx, ctx.current().stack, methodInfo.isStatic);
|
2014-09-25 02:11:46 +04:00
|
|
|
var methodProfileData = this.profile[key] || (this.profile[key] = { count: 0, cost: 0 });
|
|
|
|
methodProfileData.count++;
|
|
|
|
methodProfileData.cost += performance.now() - then;
|
|
|
|
} else {
|
2014-10-15 03:38:16 +04:00
|
|
|
alternateImpl.call(null, ctx, ctx.current().stack, methodInfo.isStatic);
|
2014-09-25 02:11:46 +04:00
|
|
|
}
|
|
|
|
},
|
2014-09-09 00:18:28 +04:00
|
|
|
};
|
|
|
|
|
2014-10-23 04:04:34 +04:00
|
|
|
// Instrument.enter["com/sun/midp/ssl/SSLStreamConnection.<init>.(Ljava/lang/String;ILjava/io/InputStream;Ljava/io/OutputStream;Lcom/sun/midp/pki/CertStore;)V"] = function(caller, callee) {
|
|
|
|
// var _this = caller.stack.read(6), port = caller.stack.read(4), host = util.fromJavaString(caller.stack.read(5));
|
|
|
|
// _this.logBuffer = "SSLStreamConnection to " + host + ":" + port + ":\n";
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Instrument.enter["com/sun/midp/ssl/Out.write.(I)V"] = function(caller, callee) {
|
|
|
|
// var _this = caller.stack.read(3);
|
|
|
|
// var connection = _this.class.getField("I.ssc.Lcom/sun/midp/ssl/SSLStreamConnection;").get(_this);
|
|
|
|
// connection.logBuffer += String.fromCharCode(callee.stack.read(1));
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Instrument.enter["com/sun/midp/ssl/Out.write.([BII)V"] = function(caller, callee) {
|
|
|
|
// var len = caller.stack.read(1), off = caller.stack.read(2), b = caller.stack.read(3), _this = caller.stack.read(4);
|
|
|
|
// var connection = _this.class.getField("I.ssc.Lcom/sun/midp/ssl/SSLStreamConnection;").get(_this);
|
|
|
|
// var range = b.subarray(off, off + len);
|
|
|
|
// for (var i = 0; i < range.length; i++) {
|
|
|
|
// connection.logBuffer += String.fromCharCode(range[i] & 0xff);
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Instrument.exit["com/sun/midp/ssl/In.read.()I"] = function(caller, callee) {
|
|
|
|
// var _this = caller.stack.read(3);
|
|
|
|
// var connection = _this.class.getField("I.ssc.Lcom/sun/midp/ssl/SSLStreamConnection;").get(_this);
|
|
|
|
// connection.logBuffer += String.fromCharCode(callee.stack.read(1));
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Instrument.exit["com/sun/midp/ssl/In.read.([BII)I"] = function(caller, callee) {
|
|
|
|
// var len = caller.stack.read(4), off = caller.stack.read(5), b = caller.stack.read(6), _this = caller.stack.read(7);
|
|
|
|
// var connection = _this.class.getField("I.ssc.Lcom/sun/midp/ssl/SSLStreamConnection;").get(_this);
|
|
|
|
// var range = b.subarray(off, off + len);
|
|
|
|
// for (var i = 0; i < range.length; i++) {
|
|
|
|
// connection.logBuffer += String.fromCharCode(range[i] & 0xff);
|
|
|
|
// }
|
|
|
|
// };
|
|
|
|
|
|
|
|
// Instrument.enter["com/sun/midp/ssl/SSLStreamConnection.close.()V"] = function(caller, callee) {
|
|
|
|
// var _this = caller.stack.read(1);
|
|
|
|
// if ("logBuffer" in _this) {
|
|
|
|
// console.log(_this.logBuffer);
|
|
|
|
// delete _this.logBuffer;
|
|
|
|
// }
|
|
|
|
// };
|