blob: 0e97e95f575cc2812fd0e6b31cb5b74c36ae3a1a [file] [log] [blame]
/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */
"use strict";
loadRelativeToScript('utility.js');
loadRelativeToScript('annotations.js');
loadRelativeToScript('CFG.js');
var subclasses = {};
var superclasses = {};
var classFunctions = {};
var fieldCallSeen = {};
function addClassEntry(index, name, other)
{
if (!(name in index)) {
index[name] = [other];
return;
}
for (var entry of index[name]) {
if (entry == other)
return;
}
index[name].push(other);
}
// CSU is "Class/Struct/Union"
function processCSU(csuName, csu)
{
if (!("FunctionField" in csu))
return;
for (var field of csu.FunctionField) {
if (1 in field.Field) {
var superclass = field.Field[1].Type.Name;
var subclass = field.Field[1].FieldCSU.Type.Name;
assert(subclass == csuName);
addClassEntry(subclasses, superclass, subclass);
addClassEntry(superclasses, subclass, superclass);
}
if ("Variable" in field) {
// Note: not dealing with overloading correctly.
var name = field.Variable.Name[0];
var key = csuName + ":" + field.Field[0].Name[0];
if (!(key in classFunctions))
classFunctions[key] = [];
classFunctions[key].push(name);
}
}
}
function findVirtualFunctions(initialCSU, field, suppressed)
{
var worklist = [initialCSU];
// Virtual call targets on subclasses of nsISupports may be incomplete,
// if the interface is scriptable. Just treat all indirect calls on
// nsISupports objects as potentially GC'ing, except AddRef/Release
// which should never enter the JS engine (even when calling dtors).
while (worklist.length) {
var csu = worklist.pop();
if (csu == "nsISupports" && (field == "AddRef" || field == "Release")) {
suppressed[0] = true;
return [];
}
if (isOverridableField(initialCSU, csu, field))
return null;
if (csu in superclasses) {
for (var superclass of superclasses[csu])
worklist.push(superclass);
}
}
var functions = [];
var worklist = [csu];
while (worklist.length) {
var csu = worklist.pop();
var key = csu + ":" + field;
if (key in classFunctions) {
for (var name of classFunctions[key])
functions.push(name);
}
if (csu in subclasses) {
for (var subclass of subclasses[csu])
worklist.push(subclass);
}
}
return functions;
}
var memoized = {};
var memoizedCount = 0;
function memo(name)
{
if (!(name in memoized)) {
memoizedCount++;
memoized[name] = "" + memoizedCount;
print("#" + memoizedCount + " " + name);
}
return memoized[name];
}
var seenCallees = null;
var seenSuppressedCallees = null;
// Return a list of all callees that the given edge might be a call to. Each
// one is represented by an object with a 'kind' field that is one of
// ('direct', 'field', 'indirect', 'unknown').
function getCallees(edge)
{
if (edge.Kind != "Call")
return [];
var callee = edge.Exp[0];
var callees = [];
if (callee.Kind == "Var") {
assert(callee.Variable.Kind == "Func");
callees.push({'kind': 'direct', 'name': callee.Variable.Name[0]});
} else {
assert(callee.Kind == "Drf");
if (callee.Exp[0].Kind == "Fld") {
var field = callee.Exp[0].Field;
var fieldName = field.Name[0];
var csuName = field.FieldCSU.Type.Name;
var functions = null;
if ("FieldInstanceFunction" in field) {
var suppressed = [ false ];
functions = findVirtualFunctions(csuName, fieldName, suppressed);
if (suppressed[0]) {
// Field call known to not GC; mark it as suppressed so
// direct invocations will be ignored
callees.push({'kind': "field", 'csu': csuName, 'field': fieldName,
'suppressed': true});
}
}
if (functions) {
// Known set of virtual call targets. Treat them as direct
// calls to all possible resolved types, but also record edges
// from this field call to each final callee. When the analysis
// is checking whether an edge can GC and it sees an unrooted
// pointer held live across this field call, it will know
// whether any of the direct callees can GC or not.
var targets = [];
for (var name of functions) {
callees.push({'kind': "direct", 'name': name});
targets.push({'kind': "direct", 'name': name});
}
callees.push({'kind': "resolved-field", 'csu': csuName, 'field': fieldName, 'callees': targets});
} else {
// Unknown set of call targets. Non-virtual field call,
// or virtual call on an nsISupports object.
callees.push({'kind': "field", 'csu': csuName, 'field': fieldName});
}
} else if (callee.Exp[0].Kind == "Var") {
// indirect call through a variable.
callees.push({'kind': "indirect", 'variable': callee.Exp[0].Variable.Name[0]});
} else {
// unknown call target.
callees.push({'kind': "unknown"});
}
}
return callees;
}
var lastline;
function printOnce(line)
{
if (line != lastline) {
print(line);
lastline = line;
}
}
function processBody(caller, body)
{
if (!('PEdge' in body))
return;
lastline = null;
for (var edge of body.PEdge) {
if (edge.Kind != "Call")
continue;
var edgeSuppressed = false;
var seen = seenCallees;
if (edge.Index[0] in body.suppressed) {
edgeSuppressed = true;
seen = seenSuppressedCallees;
}
for (var callee of getCallees(edge)) {
var prologue = (edgeSuppressed || callee.suppressed) ? "SUPPRESS_GC " : "";
prologue += memo(caller) + " ";
if (callee.kind == 'direct') {
if (!(callee.name in seen)) {
seen[callee.name] = true;
printOnce("D " + prologue + memo(callee.name));
}
} else if (callee.kind == 'field') {
var { csu, field } = callee;
printOnce("F " + prologue + "CLASS " + csu + " FIELD " + field);
} else if (callee.kind == 'resolved-field') {
// Fully-resolved field call (usually a virtual method). Record
// the callgraph edges. Do not consider suppression, since it
// is local to this callsite and we are writing out a global
// record here.
//
// Any field call that does *not* have an R entry must be
// assumed to call anything.
var { csu, field, callees } = callee;
var fullFieldName = csu + "." + field;
if (!(fullFieldName in fieldCallSeen)) {
fieldCallSeen[fullFieldName] = true;
for (var target of callees)
printOnce("R " + memo(fullFieldName) + " " + memo(target.name));
}
} else if (callee.kind == 'indirect') {
printOnce("I " + prologue + "VARIABLE " + callee.variable);
} else if (callee.kind == 'unknown') {
printOnce("I " + prologue + "VARIABLE UNKNOWN");
} else {
printErr("invalid " + callee.kind + " callee");
debugger;
}
}
}
}
var callgraph = {};
var xdb = xdbLibrary();
xdb.open("src_comp.xdb");
var minStream = xdb.min_data_stream();
var maxStream = xdb.max_data_stream();
for (var csuIndex = minStream; csuIndex <= maxStream; csuIndex++) {
var csu = xdb.read_key(csuIndex);
var data = xdb.read_entry(csu);
var json = JSON.parse(data.readString());
processCSU(csu.readString(), json[0]);
xdb.free_string(csu);
xdb.free_string(data);
}
xdb.open("src_body.xdb");
printErr("Finished loading data structures");
var minStream = xdb.min_data_stream();
var maxStream = xdb.max_data_stream();
for (var nameIndex = minStream; nameIndex <= maxStream; nameIndex++) {
var name = xdb.read_key(nameIndex);
var data = xdb.read_entry(name);
functionBodies = JSON.parse(data.readString());
for (var body of functionBodies)
body.suppressed = [];
for (var body of functionBodies) {
for (var [pbody, id] of allRAIIGuardedCallPoints(body, isSuppressConstructor))
pbody.suppressed[id] = true;
}
seenCallees = {};
seenSuppressedCallees = {};
var functionName = name.readString();
for (var body of functionBodies)
processBody(functionName, body);
// GCC generates multiple constructors and destructors ("in-charge" and
// "not-in-charge") to handle virtual base classes. They are normally
// identical, and it appears that GCC does some magic to alias them to the
// same thing. But this aliasing is not visible to the analysis. So we'll
// add a dummy call edge from "foo" -> "foo *INTERNAL* ", since only "foo"
// will show up as called but only "foo *INTERNAL* " will be emitted in the
// case where the constructors are identical.
//
// This is slightly conservative in the case where they are *not*
// identical, but that should be rare enough that we don't care.
var markerPos = functionName.indexOf(internalMarker);
if (markerPos > 0) {
var inChargeXTor = functionName.replace(internalMarker, "");
print("D " + memo(inChargeXTor) + " " + memo(functionName));
// Bug 1056410: Oh joy. GCC does something even funkier internally,
// where it generates calls to ~Foo() but a body for ~Foo(int32) even
// though it uses the same mangled name for both. So we need to add a
// synthetic edge from the former to the latter.
//
// inChargeXTor will have the (int32).
if (functionName.indexOf("::~") > 0) {
var calledDestructor = inChargeXTor.replace("(int32)", "()");
print("D " + memo(calledDestructor) + " " + memo(inChargeXTor));
}
}
xdb.free_string(name);
xdb.free_string(data);
}