objdiff icon indicating copy to clipboard operation
objdiff copied to clipboard

A local diffing tool for decompilation projects

Results 73 objdiff issues
Sort by recently updated
recently updated
newest added

This would be a quality of life feature. When looking at the source assembly, it would be cool to be able to right click and assign a name to register(s)...

If you import different functions from the same TU, it will group it in the same decomp.me "family" even if the target function is different see: https://decomp.me/scratch/sK4Rb

I often find it hard to spot differing lines in large functions. A way to increase the contrast would help. ![grafik](https://github.com/user-attachments/assets/a75563d3-14f9-4e47-aac7-4bd9b3233e94)

Allowing selecting and copying data out of this UI such as the string "SleepyDust". ![image](https://github.com/user-attachments/assets/3d2e07b3-5224-4e43-87b9-84916b2fea19) Allowing selecting arbitrary data within these targets and copying the data as floats. ![image](https://github.com/user-attachments/assets/a247d124-a269-42c9-9533-b175f58ddde0) ![image](https://github.com/user-attachments/assets/c1a57a4b-562e-4771-a239-8311d355a5f1)...

gui

It breaks if you rename a function or a translation unit. The simplest solution would be to compare sections and functions by virtual address, rather than by name. It seems...

cli

![image](https://github.com/user-attachments/assets/dbdaa75c-4385-45ad-82f1-f8726ea6494c) objdump output: ``` 2b6: c7 85 68 ff ff ff 00 mov DWORD PTR [ebp-0x98],0x0 2bd: 00 00 00 2bc: dir32 ?occludeArray@@3PAY09UVector@@A-0x68 ``` The relocation should be applied to...