mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
109 lines
2.1 KiB
JavaScript
109 lines
2.1 KiB
JavaScript
/**
|
|
* A script for GCC-dehydra to analyze the Mozilla codebase and catch
|
|
* patterns that are incorrect, but which cannot be detected by a compiler. */
|
|
|
|
/**
|
|
* Activate Treehydra outparams analysis if running in Treehydra.
|
|
*/
|
|
|
|
function treehydra_enabled() {
|
|
return this.hasOwnProperty('TREE_CODE');
|
|
}
|
|
|
|
include('unstable/getopt.js');
|
|
[options, args] = getopt();
|
|
|
|
sys.include_path.push(options.topsrcdir);
|
|
|
|
include('string-format.js');
|
|
|
|
let modules = [];
|
|
|
|
function LoadModules(modulelist)
|
|
{
|
|
if (modulelist == "")
|
|
return;
|
|
|
|
let modulenames = modulelist.split(',');
|
|
for each (let modulename in modulenames) {
|
|
let module = { __proto__: this };
|
|
include(modulename, module);
|
|
modules.push(module);
|
|
}
|
|
}
|
|
|
|
LoadModules(options['dehydra-modules']);
|
|
if (treehydra_enabled())
|
|
LoadModules(options['treehydra-modules']);
|
|
|
|
function process_type(c)
|
|
{
|
|
for each (let module in modules)
|
|
if (module.hasOwnProperty('process_type'))
|
|
module.process_type(c);
|
|
}
|
|
|
|
function hasAttribute(c, attrname)
|
|
{
|
|
var attr;
|
|
|
|
if (c.attributes === undefined)
|
|
return false;
|
|
|
|
for each (attr in c.attributes)
|
|
if (attr.name == 'user' && attr.value[0] == attrname)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
// This is useful for detecting method overrides
|
|
function signaturesMatch(m1, m2)
|
|
{
|
|
if (m1.shortName != m2.shortName)
|
|
return false;
|
|
|
|
if ((!!m1.isVirtual) != (!!m2.isVirtual))
|
|
return false;
|
|
|
|
if (m1.isStatic != m2.isStatic)
|
|
return false;
|
|
|
|
let p1 = m1.type.parameters;
|
|
let p2 = m2.type.parameters;
|
|
|
|
if (p1.length != p2.length)
|
|
return false;
|
|
|
|
for (let i = 0; i < p1.length; ++i)
|
|
if (p1[i] !== p2[i])
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
const forward_functions = [
|
|
'process_type',
|
|
'process_tree_type',
|
|
'process_decl',
|
|
'process_tree_decl',
|
|
'process_function',
|
|
'process_tree',
|
|
'process_cp_pre_genericize',
|
|
'input_end'
|
|
];
|
|
|
|
function setup_forwarding(n)
|
|
{
|
|
this[n] = function() {
|
|
for each (let module in modules) {
|
|
if (module.hasOwnProperty(n)) {
|
|
module[n].apply(this, arguments);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for each (let n in forward_functions)
|
|
setup_forwarding(n);
|