objdiff-wasm 3.0.0-alpha.2 → 3.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/config-schema.json
CHANGED
|
@@ -194,6 +194,13 @@
|
|
|
194
194
|
"name": "Register '$' prefix",
|
|
195
195
|
"description": "Display MIPS register names with a '$' prefix."
|
|
196
196
|
},
|
|
197
|
+
{
|
|
198
|
+
"id": "ppc.calculatePoolRelocations",
|
|
199
|
+
"type": "boolean",
|
|
200
|
+
"default": true,
|
|
201
|
+
"name": "Calculate pooled data references",
|
|
202
|
+
"description": "Display pooled data references in functions as fake relocations."
|
|
203
|
+
},
|
|
197
204
|
{
|
|
198
205
|
"id": "x86.formatter",
|
|
199
206
|
"type": "choice",
|
|
@@ -253,6 +260,13 @@
|
|
|
253
260
|
"mips.registerPrefix"
|
|
254
261
|
]
|
|
255
262
|
},
|
|
263
|
+
{
|
|
264
|
+
"id": "ppc",
|
|
265
|
+
"name": "PowerPC",
|
|
266
|
+
"properties": [
|
|
267
|
+
"ppc.calculatePoolRelocations"
|
|
268
|
+
]
|
|
269
|
+
},
|
|
256
270
|
{
|
|
257
271
|
"id": "x86",
|
|
258
272
|
"name": "x86",
|
package/dist/objdiff.core.wasm
CHANGED
|
Binary file
|
package/dist/objdiff.js
CHANGED
|
@@ -639,7 +639,7 @@ function displaySymbol(arg0, arg1) {
|
|
|
639
639
|
default:
|
|
640
640
|
throw new TypeError('invalid variant discriminant for option');
|
|
641
641
|
}
|
|
642
|
-
if ((
|
|
642
|
+
if ((4294967040 & dataView(memory0).getUint8(ret + 52, true)) !== 0) throw new TypeError('flags have extraneous bits set');
|
|
643
643
|
var flags8 = {
|
|
644
644
|
global: Boolean(1 & dataView(memory0).getUint8(ret + 52, true)),
|
|
645
645
|
local: Boolean(2 & dataView(memory0).getUint8(ret + 52, true)),
|
|
@@ -647,7 +647,8 @@ function displaySymbol(arg0, arg1) {
|
|
|
647
647
|
common: Boolean(8 & dataView(memory0).getUint8(ret + 52, true)),
|
|
648
648
|
hidden: Boolean(16 & dataView(memory0).getUint8(ret + 52, true)),
|
|
649
649
|
hasExtra: Boolean(32 & dataView(memory0).getUint8(ret + 52, true)),
|
|
650
|
-
sizeInferred: Boolean(64 & dataView(memory0).getUint8(ret + 52, true))
|
|
650
|
+
sizeInferred: Boolean(64 & dataView(memory0).getUint8(ret + 52, true)),
|
|
651
|
+
ignored: Boolean(128 & dataView(memory0).getUint8(ret + 52, true))
|
|
651
652
|
};
|
|
652
653
|
let variant9;
|
|
653
654
|
switch(dataView(memory0).getUint8(ret + 56, true)){
|