Commit 83e7576
File tree
4 files changed
+13
-11
lines changed- .github/workflows
4 files changed
+13
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
207 | 207 | | |
208 | 208 | | |
209 | 209 | | |
210 | | - | |
211 | 210 | | |
212 | 211 | | |
213 | 212 | | |
| |||
222 | 221 | | |
223 | 222 | | |
224 | 223 | | |
225 | | - | |
226 | 224 | | |
227 | 225 | | |
228 | 226 | | |
| |||
246 | 244 | | |
247 | 245 | | |
248 | 246 | | |
| 247 | + | |
| 248 | + | |
249 | 249 | | |
250 | 250 | | |
251 | | - | |
252 | | - | |
| 251 | + | |
| 252 | + | |
253 | 253 | | |
254 | 254 | | |
255 | 255 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
205 | 205 | | |
206 | 206 | | |
207 | 207 | | |
208 | | - | |
| 208 | + | |
209 | 209 | | |
210 | 210 | | |
211 | 211 | | |
| |||
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
224 | | - | |
| 224 | + | |
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
| |||
247 | 247 | | |
248 | 248 | | |
249 | 249 | | |
| 250 | + | |
| 251 | + | |
250 | 252 | | |
251 | 253 | | |
252 | | - | |
253 | | - | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
254 | 257 | | |
255 | | - | |
| 258 | + | |
256 | 259 | | |
257 | 260 | | |
258 | 261 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
155 | 155 | | |
156 | 156 | | |
157 | 157 | | |
158 | | - | |
159 | 158 | | |
160 | 159 | | |
161 | 160 | | |
| |||
- .github/workflows/ci.yml+21-21
- CMakeLists.txt+54-4
- CODEOWNERS+1
- Dockerfile+2-2
- README.md+6-6
- bin/differential_tester_x86/LiftAndCompare.cpp+3-6
- bin/lift/Lift.cpp+8-4
- cmake/BCCompiler.cmake+1-1
- cmake/options.cmake+3-2
- cmake/settings.cmake+1-1
- include/remill/Arch/AArch64/AArch64Base.h+48
- include/remill/Arch/Arch.h+12-3
- include/remill/Arch/Context.h+7-3
- include/remill/Arch/Name.h+18
- include/remill/Arch/PPC/Runtime/State.h+387
- include/remill/Arch/Runtime/HyperCall.h+3
- include/remill/Arch/Runtime/Int.h+2-1
- include/remill/Arch/Runtime/Intrinsics.h+5
- include/remill/BC/IntrinsicTable.h+1
- include/remill/BC/PCodeCFG.h+87
- include/remill/BC/SleighLifter.h+18-7
- include/remill/BC/Util.h+5
- include/remill/BC/Version.h+8-17
- lib/Arch/AArch32/CMakeLists.txt-37
- lib/Arch/AArch32/Decode.cpp-3.8k
- lib/Arch/AArch32/Runtime/CMakeLists.txt-11
- lib/Arch/AArch32/Runtime/Instructions.cpp-19
- lib/Arch/AArch32/Semantics/BINARY.cpp-752
- lib/Arch/AArch32/Semantics/BITBYTE.cpp-168
- lib/Arch/AArch32/Semantics/BRANCH.cpp-128
- lib/Arch/AArch32/Semantics/COND.cpp-58
- lib/Arch/AArch32/Semantics/FLAGS.cpp-190
- lib/Arch/AArch32/Semantics/LOGICAL.cpp-87
- lib/Arch/AArch32/Semantics/MEM.cpp-509
- lib/Arch/AArch32/Semantics/MISC.cpp-36
- lib/Arch/AArch64/Arch.cpp+4-416
- lib/Arch/AArch64/Runtime/CMakeLists.txt+3-2
- lib/Arch/Arch.cpp+24-2
- lib/Arch/CMakeLists.txt+1-1
- lib/Arch/Context.cpp+7-3
- lib/Arch/Instruction.cpp+2
- lib/Arch/Name.cpp+8-1
- lib/Arch/PPC/CMakeLists.txt+1
- lib/Arch/PPC/Runtime/CMakeLists.txt+44
- lib/Arch/PPC/Runtime/Instructions.cpp+43
- lib/Arch/Runtime/HyperCall.cpp+13
- lib/Arch/Sleigh/AArch32Arch.cpp+40-4
- lib/Arch/Sleigh/AArch32Arch.h+4-6
- lib/Arch/Sleigh/AArch64Arch.cpp+87
- lib/Arch/Sleigh/AArch64Arch.h+46
- lib/Arch/Sleigh/AArch64Base.cpp+400
- lib/Arch/Sleigh/ARMBase.cpp
- lib/Arch/Sleigh/Arch.cpp+72-24
- lib/Arch/Sleigh/Arch.h+42-11
- lib/Arch/Sleigh/CMakeLists.txt+18
- lib/Arch/Sleigh/ControlFlowStructuring.cpp+75-23
- lib/Arch/Sleigh/ControlFlowStructuring.h+7-4
- lib/Arch/Sleigh/PPC.h+42
- lib/Arch/Sleigh/PPCArch.cpp+308
- lib/Arch/Sleigh/Thumb.h+9-6
- lib/Arch/Sleigh/Thumb2Arch.cpp+19-16
- lib/Arch/Sleigh/X86Arch.cpp+8-4
- lib/BC/CMakeLists.txt+1
- lib/BC/InstructionLifter.cpp+1-1
- lib/BC/IntrinsicTable.cpp+7
- lib/BC/Optimizer.cpp+5
- lib/BC/PcodeCFG.cpp+168
- lib/BC/SleighLifter.cpp+357-110
- lib/BC/TraceLifter.cpp+1-8
- lib/BC/Util.cpp+55-26
- patches/sleigh/0001-AARCH64base.patch+340
- patches/sleigh/0001-AARCH64instructions.patch+82
- patches/sleigh/0001-ARM.patch+54
- patches/sleigh/0001-ARMTHUMBinstructions.patch+129-121
- patches/sleigh/0001-ppc_common.patch+59
- patches/sleigh/0001-ppc_instructions.patch+172
- patches/sleigh/0001-ppc_isa.patch+97
- patches/sleigh/0001-ppc_vle.patch+120
- patches/sleigh/0001-quicciii.patch+40
- patches/sleigh/x86-ia.patch+257-281
- scripts/build.sh+29-21
- scripts/docker-lifter-entrypoint.sh+3-3
- scripts/replace_pc_relative_disactions/README.md+2-1
- scripts/replace_pc_relative_disactions/poetry.lock+13-13
- scripts/replace_pc_relative_disactions/pyproject.toml+1
- scripts/replace_pc_relative_disactions/register_definitions/AARCH64.ia+1
- scripts/replace_pc_relative_disactions/register_definitions/ARMThumb.ia+5-1
- scripts/replace_pc_relative_disactions/register_definitions/powerpc.ia+1
- scripts/replace_pc_relative_disactions/replace_pc_relative_disactions/main.py+112-34
- test_runner_lib/CMakeLists.txt+1
- test_runner_lib/TestRunner.cpp+22-21
- test_runner_lib/include/test_runner/TestOutputSpec.h+162
- test_runner_lib/include/test_runner/TestRunner.h+22-2
- tests/AArch64/Lift.cpp-3
- tests/PPC/CMakeLists.txt+36
- tests/PPC/TestLifting.cpp+803
- tests/Thumb/CMakeLists.txt-3
- tests/Thumb/TestLifting.cpp+93-39
- tests/X86/Lift.cpp-3
0 commit comments