smallworld-re 1.0.3__py3-none-any.whl → 2.0.0__py3-none-any.whl
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.
- smallworld/analyses/__init__.py +8 -0
- smallworld/analyses/analysis.py +8 -67
- smallworld/analyses/code_coverage.py +1 -2
- smallworld/analyses/colorizer.py +301 -534
- smallworld/analyses/colorizer_def_use.py +217 -0
- smallworld/analyses/colorizer_summary.py +173 -83
- smallworld/analyses/field_detection/field_analysis.py +7 -8
- smallworld/analyses/field_detection/hints.py +1 -1
- smallworld/analyses/field_detection/malloc.py +2 -2
- smallworld/analyses/trace_execution.py +160 -0
- smallworld/analyses/trace_execution_types.py +42 -0
- smallworld/analyses/unstable/angr/divergence.py +1 -2
- smallworld/analyses/unstable/angr/model.py +5 -6
- smallworld/analyses/unstable/angr_nwbt.py +3 -4
- smallworld/analyses/unstable/code_coverage.py +2 -3
- smallworld/analyses/unstable/code_reachable.py +2 -3
- smallworld/analyses/unstable/control_flow_tracer.py +2 -3
- smallworld/analyses/unstable/pointer_finder.py +2 -3
- smallworld/analyses/unstable/utils/tui.py +71 -0
- smallworld/emulators/__init__.py +3 -1
- smallworld/emulators/angr/angr.py +30 -9
- smallworld/emulators/angr/machdefs/__init__.py +2 -0
- smallworld/emulators/angr/machdefs/aarch64.py +1 -1
- smallworld/emulators/angr/machdefs/amd64.py +0 -4
- smallworld/emulators/angr/machdefs/arm.py +0 -2
- smallworld/emulators/angr/machdefs/i386.py +0 -2
- smallworld/emulators/angr/machdefs/loongarch.py +340 -0
- smallworld/emulators/angr/machdefs/machdef.py +1 -8
- smallworld/emulators/angr/machdefs/mips.py +0 -2
- smallworld/emulators/angr/machdefs/mips64.py +0 -2
- smallworld/emulators/angr/machdefs/ppc.py +1 -2
- smallworld/emulators/angr/machdefs/riscv.py +8 -10
- smallworld/emulators/angr/machdefs/xtensa.py +7 -4
- smallworld/emulators/emulator.py +22 -0
- smallworld/emulators/ghidra/__init__.py +37 -0
- smallworld/emulators/ghidra/ghidra.py +513 -0
- smallworld/emulators/ghidra/machdefs/__init__.py +31 -0
- smallworld/emulators/ghidra/machdefs/aarch64.py +289 -0
- smallworld/emulators/ghidra/machdefs/amd64.py +185 -0
- smallworld/emulators/ghidra/machdefs/arm.py +370 -0
- smallworld/emulators/ghidra/machdefs/i386.py +109 -0
- smallworld/emulators/ghidra/machdefs/loongarch.py +162 -0
- smallworld/emulators/ghidra/machdefs/machdef.py +81 -0
- smallworld/emulators/ghidra/machdefs/mips.py +163 -0
- smallworld/emulators/ghidra/machdefs/mips64.py +186 -0
- smallworld/emulators/ghidra/machdefs/ppc.py +98 -0
- smallworld/emulators/ghidra/machdefs/riscv.py +208 -0
- smallworld/emulators/ghidra/machdefs/xtensa.py +21 -0
- smallworld/emulators/ghidra/typing.py +28 -0
- smallworld/emulators/hookable.py +18 -4
- smallworld/emulators/panda/machdefs/__init__.py +2 -2
- smallworld/emulators/panda/machdefs/aarch64.py +186 -11
- smallworld/emulators/panda/machdefs/amd64.py +103 -11
- smallworld/emulators/panda/machdefs/arm.py +216 -20
- smallworld/emulators/panda/machdefs/i386.py +30 -7
- smallworld/emulators/panda/machdefs/machdef.py +9 -16
- smallworld/emulators/panda/machdefs/mips.py +49 -5
- smallworld/emulators/panda/machdefs/mips64.py +57 -5
- smallworld/emulators/panda/machdefs/ppc.py +38 -13
- smallworld/emulators/panda/panda.py +146 -44
- smallworld/emulators/unicorn/__init__.py +2 -0
- smallworld/emulators/unicorn/machdefs/aarch64.py +253 -264
- smallworld/emulators/unicorn/machdefs/amd64.py +254 -259
- smallworld/emulators/unicorn/machdefs/arm.py +200 -212
- smallworld/emulators/unicorn/machdefs/i386.py +84 -90
- smallworld/emulators/unicorn/machdefs/machdef.py +2 -23
- smallworld/emulators/unicorn/machdefs/mips.py +127 -135
- smallworld/emulators/unicorn/unicorn.py +52 -13
- smallworld/helpers.py +4 -19
- smallworld/hinting/hinting.py +22 -192
- smallworld/hinting/hints.py +50 -18
- smallworld/instructions/bsid.py +8 -8
- smallworld/logging.py +4 -2
- smallworld/platforms/__init__.py +12 -0
- smallworld/platforms/defs/__init__.py +36 -0
- smallworld/platforms/defs/aarch64.py +450 -0
- smallworld/platforms/defs/amd64.py +463 -0
- smallworld/platforms/defs/arm.py +519 -0
- smallworld/platforms/defs/i386.py +258 -0
- smallworld/platforms/defs/loongarch.py +270 -0
- smallworld/platforms/defs/mips.py +321 -0
- smallworld/platforms/defs/mips64.py +313 -0
- smallworld/platforms/defs/platformdef.py +97 -0
- smallworld/platforms/defs/powerpc.py +259 -0
- smallworld/platforms/defs/riscv.py +257 -0
- smallworld/platforms/defs/xtensa.py +96 -0
- smallworld/{platforms.py → platforms/platforms.py} +3 -0
- smallworld/state/cpus/__init__.py +2 -0
- smallworld/state/cpus/aarch64.py +0 -9
- smallworld/state/cpus/amd64.py +6 -28
- smallworld/state/cpus/arm.py +0 -11
- smallworld/state/cpus/cpu.py +0 -11
- smallworld/state/cpus/i386.py +0 -7
- smallworld/state/cpus/loongarch.py +299 -0
- smallworld/state/cpus/mips.py +4 -47
- smallworld/state/cpus/mips64.py +18 -58
- smallworld/state/cpus/powerpc.py +2 -9
- smallworld/state/cpus/riscv.py +1 -11
- smallworld/state/cpus/xtensa.py +0 -5
- smallworld/state/memory/code.py +38 -2
- smallworld/state/memory/elf/__init__.py +5 -1
- smallworld/state/memory/elf/coredump/__init__.py +3 -0
- smallworld/state/memory/elf/coredump/coredump.py +46 -0
- smallworld/state/memory/elf/coredump/prstatus/__init__.py +27 -0
- smallworld/state/memory/elf/coredump/prstatus/aarch64.py +46 -0
- smallworld/state/memory/elf/coredump/prstatus/amd64.py +40 -0
- smallworld/state/memory/elf/coredump/prstatus/arm.py +53 -0
- smallworld/state/memory/elf/coredump/prstatus/i386.py +30 -0
- smallworld/state/memory/elf/coredump/prstatus/mips.py +55 -0
- smallworld/state/memory/elf/coredump/prstatus/mips64.py +57 -0
- smallworld/state/memory/elf/coredump/prstatus/ppc.py +82 -0
- smallworld/state/memory/elf/coredump/prstatus/prstatus.py +129 -0
- smallworld/state/memory/elf/elf.py +211 -57
- smallworld/state/memory/elf/register_state.py +36 -0
- smallworld/state/memory/elf/rela/__init__.py +2 -0
- smallworld/state/memory/elf/rela/aarch64.py +3 -1
- smallworld/state/memory/elf/rela/amd64.py +4 -2
- smallworld/state/memory/elf/rela/arm.py +4 -2
- smallworld/state/memory/elf/rela/i386.py +4 -2
- smallworld/state/memory/elf/rela/loongarch.py +32 -0
- smallworld/state/memory/elf/rela/mips.py +39 -18
- smallworld/state/memory/elf/rela/ppc.py +31 -14
- smallworld/state/memory/elf/structs.py +3 -0
- smallworld/state/memory/heap.py +2 -2
- smallworld/state/memory/memory.py +18 -0
- smallworld/state/memory/pe/__init__.py +3 -0
- smallworld/state/memory/pe/pe.py +361 -0
- smallworld/state/memory/pe/structs.py +60 -0
- smallworld/state/memory/stack/__init__.py +2 -0
- smallworld/state/memory/stack/loongarch.py +26 -0
- smallworld/state/models/__init__.py +29 -2
- smallworld/state/models/aarch64/__init__.py +1 -0
- smallworld/state/models/aarch64/systemv/__init__.py +6 -0
- smallworld/state/models/aarch64/systemv/c99/__init__.py +12 -0
- smallworld/state/models/aarch64/systemv/c99/signal.py +16 -0
- smallworld/state/models/aarch64/systemv/c99/stdio.py +265 -0
- smallworld/state/models/aarch64/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/aarch64/systemv/c99/string.py +139 -0
- smallworld/state/models/aarch64/systemv/c99/time.py +61 -0
- smallworld/state/models/aarch64/systemv/posix/__init__.py +6 -0
- smallworld/state/models/aarch64/systemv/posix/libgen.py +16 -0
- smallworld/state/models/aarch64/systemv/posix/signal.py +157 -0
- smallworld/state/models/aarch64/systemv/systemv.py +80 -0
- smallworld/state/models/amd64/__init__.py +1 -0
- smallworld/state/models/amd64/systemv/__init__.py +6 -0
- smallworld/state/models/amd64/systemv/c99/__init__.py +12 -0
- smallworld/state/models/amd64/systemv/c99/signal.py +16 -0
- smallworld/state/models/amd64/systemv/c99/stdio.py +265 -0
- smallworld/state/models/amd64/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/amd64/systemv/c99/string.py +139 -0
- smallworld/state/models/amd64/systemv/c99/time.py +61 -0
- smallworld/state/models/amd64/systemv/posix/__init__.py +6 -0
- smallworld/state/models/amd64/systemv/posix/libgen.py +16 -0
- smallworld/state/models/amd64/systemv/posix/signal.py +157 -0
- smallworld/state/models/amd64/systemv/systemv.py +78 -0
- smallworld/state/models/armel/__init__.py +1 -0
- smallworld/state/models/armel/systemv/__init__.py +6 -0
- smallworld/state/models/armel/systemv/c99/__init__.py +12 -0
- smallworld/state/models/armel/systemv/c99/signal.py +16 -0
- smallworld/state/models/armel/systemv/c99/stdio.py +265 -0
- smallworld/state/models/armel/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/armel/systemv/c99/string.py +139 -0
- smallworld/state/models/armel/systemv/c99/time.py +61 -0
- smallworld/state/models/armel/systemv/posix/__init__.py +6 -0
- smallworld/state/models/armel/systemv/posix/libgen.py +16 -0
- smallworld/state/models/armel/systemv/posix/signal.py +157 -0
- smallworld/state/models/armel/systemv/systemv.py +82 -0
- smallworld/state/models/armhf/__init__.py +1 -0
- smallworld/state/models/armhf/systemv/__init__.py +6 -0
- smallworld/state/models/armhf/systemv/c99/__init__.py +12 -0
- smallworld/state/models/armhf/systemv/c99/signal.py +16 -0
- smallworld/state/models/armhf/systemv/c99/stdio.py +265 -0
- smallworld/state/models/armhf/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/armhf/systemv/c99/string.py +139 -0
- smallworld/state/models/armhf/systemv/c99/time.py +61 -0
- smallworld/state/models/armhf/systemv/posix/__init__.py +6 -0
- smallworld/state/models/armhf/systemv/posix/libgen.py +16 -0
- smallworld/state/models/armhf/systemv/posix/signal.py +157 -0
- smallworld/state/models/armhf/systemv/systemv.py +77 -0
- smallworld/state/models/c99/__init__.py +12 -0
- smallworld/state/models/c99/fmt_print.py +915 -0
- smallworld/state/models/c99/fmt_scan.py +864 -0
- smallworld/state/models/c99/math.py +362 -0
- smallworld/state/models/c99/signal.py +71 -0
- smallworld/state/models/c99/stdio.py +1305 -0
- smallworld/state/models/c99/stdlib.py +595 -0
- smallworld/state/models/c99/string.py +674 -0
- smallworld/state/models/c99/time.py +340 -0
- smallworld/state/models/c99/utils.py +89 -0
- smallworld/state/models/cstd.py +759 -0
- smallworld/state/models/errno.py +581 -0
- smallworld/state/models/filedesc.py +515 -0
- smallworld/state/models/i386/__init__.py +1 -0
- smallworld/state/models/i386/systemv/__init__.py +6 -0
- smallworld/state/models/i386/systemv/c99/__init__.py +12 -0
- smallworld/state/models/i386/systemv/c99/signal.py +16 -0
- smallworld/state/models/i386/systemv/c99/stdio.py +265 -0
- smallworld/state/models/i386/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/i386/systemv/c99/string.py +139 -0
- smallworld/state/models/i386/systemv/c99/time.py +61 -0
- smallworld/state/models/i386/systemv/posix/__init__.py +6 -0
- smallworld/state/models/i386/systemv/posix/libgen.py +16 -0
- smallworld/state/models/i386/systemv/posix/signal.py +157 -0
- smallworld/state/models/i386/systemv/systemv.py +71 -0
- smallworld/state/models/loongarch64/__init__.py +1 -0
- smallworld/state/models/loongarch64/systemv/__init__.py +6 -0
- smallworld/state/models/loongarch64/systemv/c99/__init__.py +12 -0
- smallworld/state/models/loongarch64/systemv/c99/signal.py +16 -0
- smallworld/state/models/loongarch64/systemv/c99/stdio.py +265 -0
- smallworld/state/models/loongarch64/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/loongarch64/systemv/c99/string.py +139 -0
- smallworld/state/models/loongarch64/systemv/c99/time.py +61 -0
- smallworld/state/models/loongarch64/systemv/posix/__init__.py +6 -0
- smallworld/state/models/loongarch64/systemv/posix/libgen.py +16 -0
- smallworld/state/models/loongarch64/systemv/posix/signal.py +157 -0
- smallworld/state/models/loongarch64/systemv/systemv.py +83 -0
- smallworld/state/models/mips/__init__.py +1 -0
- smallworld/state/models/mips/systemv/__init__.py +6 -0
- smallworld/state/models/mips/systemv/c99/__init__.py +12 -0
- smallworld/state/models/mips/systemv/c99/signal.py +16 -0
- smallworld/state/models/mips/systemv/c99/stdio.py +265 -0
- smallworld/state/models/mips/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/mips/systemv/c99/string.py +139 -0
- smallworld/state/models/mips/systemv/c99/time.py +61 -0
- smallworld/state/models/mips/systemv/posix/__init__.py +6 -0
- smallworld/state/models/mips/systemv/posix/libgen.py +16 -0
- smallworld/state/models/mips/systemv/posix/signal.py +157 -0
- smallworld/state/models/mips/systemv/systemv.py +78 -0
- smallworld/state/models/mips64/__init__.py +1 -0
- smallworld/state/models/mips64/systemv/__init__.py +6 -0
- smallworld/state/models/mips64/systemv/c99/__init__.py +12 -0
- smallworld/state/models/mips64/systemv/c99/signal.py +16 -0
- smallworld/state/models/mips64/systemv/c99/stdio.py +265 -0
- smallworld/state/models/mips64/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/mips64/systemv/c99/string.py +139 -0
- smallworld/state/models/mips64/systemv/c99/time.py +61 -0
- smallworld/state/models/mips64/systemv/posix/__init__.py +6 -0
- smallworld/state/models/mips64/systemv/posix/libgen.py +16 -0
- smallworld/state/models/mips64/systemv/posix/signal.py +157 -0
- smallworld/state/models/mips64/systemv/systemv.py +98 -0
- smallworld/state/models/mips64el/__init__.py +1 -0
- smallworld/state/models/mips64el/systemv/__init__.py +6 -0
- smallworld/state/models/mips64el/systemv/c99/__init__.py +12 -0
- smallworld/state/models/mips64el/systemv/c99/signal.py +16 -0
- smallworld/state/models/mips64el/systemv/c99/stdio.py +265 -0
- smallworld/state/models/mips64el/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/mips64el/systemv/c99/string.py +139 -0
- smallworld/state/models/mips64el/systemv/c99/time.py +61 -0
- smallworld/state/models/mips64el/systemv/posix/__init__.py +6 -0
- smallworld/state/models/mips64el/systemv/posix/libgen.py +16 -0
- smallworld/state/models/mips64el/systemv/posix/signal.py +157 -0
- smallworld/state/models/mips64el/systemv/systemv.py +96 -0
- smallworld/state/models/mipsel/__init__.py +1 -0
- smallworld/state/models/mipsel/systemv/__init__.py +6 -0
- smallworld/state/models/mipsel/systemv/c99/__init__.py +12 -0
- smallworld/state/models/mipsel/systemv/c99/signal.py +16 -0
- smallworld/state/models/mipsel/systemv/c99/stdio.py +265 -0
- smallworld/state/models/mipsel/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/mipsel/systemv/c99/string.py +139 -0
- smallworld/state/models/mipsel/systemv/c99/time.py +61 -0
- smallworld/state/models/mipsel/systemv/posix/__init__.py +6 -0
- smallworld/state/models/mipsel/systemv/posix/libgen.py +16 -0
- smallworld/state/models/mipsel/systemv/posix/signal.py +157 -0
- smallworld/state/models/mipsel/systemv/systemv.py +78 -0
- smallworld/state/models/model.py +27 -2
- smallworld/state/models/posix/__init__.py +6 -0
- smallworld/state/models/posix/libgen.py +123 -0
- smallworld/state/models/posix/signal.py +690 -0
- smallworld/state/models/powerpc/__init__.py +1 -0
- smallworld/state/models/powerpc/systemv/__init__.py +6 -0
- smallworld/state/models/powerpc/systemv/c99/__init__.py +12 -0
- smallworld/state/models/powerpc/systemv/c99/signal.py +16 -0
- smallworld/state/models/powerpc/systemv/c99/stdio.py +265 -0
- smallworld/state/models/powerpc/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/powerpc/systemv/c99/string.py +139 -0
- smallworld/state/models/powerpc/systemv/c99/time.py +61 -0
- smallworld/state/models/powerpc/systemv/posix/__init__.py +6 -0
- smallworld/state/models/powerpc/systemv/posix/libgen.py +16 -0
- smallworld/state/models/powerpc/systemv/posix/signal.py +157 -0
- smallworld/state/models/powerpc/systemv/systemv.py +93 -0
- smallworld/state/models/riscv64/__init__.py +1 -0
- smallworld/state/models/riscv64/systemv/__init__.py +6 -0
- smallworld/state/models/riscv64/systemv/c99/__init__.py +12 -0
- smallworld/state/models/riscv64/systemv/c99/signal.py +16 -0
- smallworld/state/models/riscv64/systemv/c99/stdio.py +265 -0
- smallworld/state/models/riscv64/systemv/c99/stdlib.py +169 -0
- smallworld/state/models/riscv64/systemv/c99/string.py +139 -0
- smallworld/state/models/riscv64/systemv/c99/time.py +61 -0
- smallworld/state/models/riscv64/systemv/posix/__init__.py +6 -0
- smallworld/state/models/riscv64/systemv/posix/libgen.py +16 -0
- smallworld/state/models/riscv64/systemv/posix/signal.py +157 -0
- smallworld/state/models/riscv64/systemv/systemv.py +85 -0
- smallworld/state/state.py +65 -24
- smallworld/state/unstable/elf.py +16 -31
- smallworld/utils.py +6 -1
- {smallworld_re-1.0.3.dist-info → smallworld_re-2.0.0.dist-info}/METADATA +74 -42
- smallworld_re-2.0.0.dist-info/RECORD +374 -0
- {smallworld_re-1.0.3.dist-info → smallworld_re-2.0.0.dist-info}/WHEEL +1 -1
- smallworld/state/models/x86/__init__.py +0 -2
- smallworld/state/models/x86/microsoftcdecl.py +0 -35
- smallworld/state/models/x86/systemv.py +0 -240
- smallworld_re-1.0.3.dist-info/RECORD +0 -166
- /smallworld/state/models/{posix.py → _posix.py} +0 -0
- {smallworld_re-1.0.3.dist-info → smallworld_re-2.0.0.dist-info}/entry_points.txt +0 -0
- {smallworld_re-1.0.3.dist-info → smallworld_re-2.0.0.dist-info}/licenses/LICENSE.txt +0 -0
- {smallworld_re-1.0.3.dist-info → smallworld_re-2.0.0.dist-info}/top_level.txt +0 -0
@@ -1,240 +0,0 @@
|
|
1
|
-
from .... import platforms
|
2
|
-
from ..model import Model
|
3
|
-
from ..posix import (
|
4
|
-
BasenameModel,
|
5
|
-
CallocModel,
|
6
|
-
DaemonModel,
|
7
|
-
FlockModel,
|
8
|
-
Getopt_longModel,
|
9
|
-
GetpagesizeModel,
|
10
|
-
GetppidModel,
|
11
|
-
GetsModel,
|
12
|
-
MallocModel,
|
13
|
-
Open64Model,
|
14
|
-
OpenModel,
|
15
|
-
PthreadCondInitModel,
|
16
|
-
PthreadCondSignalModel,
|
17
|
-
PthreadCondWaitModel,
|
18
|
-
PthreadCreateModel,
|
19
|
-
PthreadMutexInitModel,
|
20
|
-
PthreadMutexLockModel,
|
21
|
-
PthreadMutexUnlockModel,
|
22
|
-
PtraceModel,
|
23
|
-
PutsModel,
|
24
|
-
RandModel,
|
25
|
-
RandomModel,
|
26
|
-
SleepModel,
|
27
|
-
SrandModel,
|
28
|
-
SrandomModel,
|
29
|
-
StrcatModel,
|
30
|
-
StrcpyModel,
|
31
|
-
StrdupModel,
|
32
|
-
StrlenModel,
|
33
|
-
StrncatModel,
|
34
|
-
StrncpyModel,
|
35
|
-
StrnlenModel,
|
36
|
-
SysconfModel,
|
37
|
-
TimeModel,
|
38
|
-
UnlinkModel,
|
39
|
-
WriteModel,
|
40
|
-
)
|
41
|
-
|
42
|
-
|
43
|
-
class AMD64SystemVModel(Model):
|
44
|
-
platform = platforms.Platform(
|
45
|
-
platforms.Architecture.X86_64, platforms.Byteorder.LITTLE
|
46
|
-
)
|
47
|
-
|
48
|
-
abi = platforms.ABI.SYSTEMV
|
49
|
-
|
50
|
-
argument1 = "rdi"
|
51
|
-
argument2 = "rsi"
|
52
|
-
argument3 = "rdx"
|
53
|
-
argument4 = "rcx"
|
54
|
-
argument5 = "r8"
|
55
|
-
argument6 = "r9"
|
56
|
-
return_val = "rax"
|
57
|
-
|
58
|
-
|
59
|
-
class AMD64SystemVBasenameModel(AMD64SystemVModel, BasenameModel):
|
60
|
-
pass
|
61
|
-
|
62
|
-
|
63
|
-
class AMD64SystemVCallocModel(AMD64SystemVModel, CallocModel):
|
64
|
-
pass
|
65
|
-
|
66
|
-
|
67
|
-
class AMD64SystemVDaemonModel(AMD64SystemVModel, DaemonModel):
|
68
|
-
pass
|
69
|
-
|
70
|
-
|
71
|
-
class AMD64SystemVFlockModel(AMD64SystemVModel, FlockModel):
|
72
|
-
pass
|
73
|
-
|
74
|
-
|
75
|
-
class AMD64SystemVGetopt_longModel(AMD64SystemVModel, Getopt_longModel):
|
76
|
-
pass
|
77
|
-
|
78
|
-
|
79
|
-
class AMD64SystemVGetpagesizeModel(AMD64SystemVModel, GetpagesizeModel):
|
80
|
-
pass
|
81
|
-
|
82
|
-
|
83
|
-
class AMD64SystemVGetppidModel(AMD64SystemVModel, GetppidModel):
|
84
|
-
pass
|
85
|
-
|
86
|
-
|
87
|
-
class AMD64SystemVGetsModel(AMD64SystemVModel, GetsModel):
|
88
|
-
pass
|
89
|
-
|
90
|
-
|
91
|
-
class AMD64SystemVMallocModel(AMD64SystemVModel, MallocModel):
|
92
|
-
pass
|
93
|
-
|
94
|
-
|
95
|
-
class AMD64SystemVOpenModel(AMD64SystemVModel, OpenModel):
|
96
|
-
pass
|
97
|
-
|
98
|
-
|
99
|
-
class AMD64SystemVOpen64Model(AMD64SystemVModel, Open64Model):
|
100
|
-
pass
|
101
|
-
|
102
|
-
|
103
|
-
class AMD64SystemVPutsModel(AMD64SystemVModel, PutsModel):
|
104
|
-
pass
|
105
|
-
|
106
|
-
|
107
|
-
class AMD64SystemVPthreadCondInitModel(AMD64SystemVModel, PthreadCondInitModel):
|
108
|
-
pass
|
109
|
-
|
110
|
-
|
111
|
-
class AMD64SystemVPthreadCondSignalModel(AMD64SystemVModel, PthreadCondSignalModel):
|
112
|
-
pass
|
113
|
-
|
114
|
-
|
115
|
-
class AMD64SystemVPthreadCondWaitModel(AMD64SystemVModel, PthreadCondWaitModel):
|
116
|
-
pass
|
117
|
-
|
118
|
-
|
119
|
-
class AMD64SystemVPthreadCreateModel(AMD64SystemVModel, PthreadCreateModel):
|
120
|
-
pass
|
121
|
-
|
122
|
-
|
123
|
-
class AMD64SystemVPthreadMutexInitModel(AMD64SystemVModel, PthreadMutexInitModel):
|
124
|
-
pass
|
125
|
-
|
126
|
-
|
127
|
-
class AMD64SystemVPthreadMutexLockModel(AMD64SystemVModel, PthreadMutexLockModel):
|
128
|
-
pass
|
129
|
-
|
130
|
-
|
131
|
-
class AMD64SystemVPthreadMutexUnlockModel(AMD64SystemVModel, PthreadMutexUnlockModel):
|
132
|
-
pass
|
133
|
-
|
134
|
-
|
135
|
-
class AMD64SystemVPtraceModel(AMD64SystemVModel, PtraceModel):
|
136
|
-
pass
|
137
|
-
|
138
|
-
|
139
|
-
class AMD64SystemVRandModel(AMD64SystemVModel, RandModel):
|
140
|
-
pass
|
141
|
-
|
142
|
-
|
143
|
-
class AMD64SystemVRandomModel(AMD64SystemVModel, RandomModel):
|
144
|
-
pass
|
145
|
-
|
146
|
-
|
147
|
-
class AMD64SystemVSleepModel(AMD64SystemVModel, SleepModel):
|
148
|
-
pass
|
149
|
-
|
150
|
-
|
151
|
-
class AMD64SystemVSrandModel(AMD64SystemVModel, SrandModel):
|
152
|
-
pass
|
153
|
-
|
154
|
-
|
155
|
-
class AMD64SystemVSrandomModel(AMD64SystemVModel, SrandomModel):
|
156
|
-
pass
|
157
|
-
|
158
|
-
|
159
|
-
class AMD64SystemVStrcatModel(AMD64SystemVModel, StrcatModel):
|
160
|
-
pass
|
161
|
-
|
162
|
-
|
163
|
-
class AMD64SystemVStrncatModel(AMD64SystemVModel, StrncatModel):
|
164
|
-
pass
|
165
|
-
|
166
|
-
|
167
|
-
class AMD64SystemVStrcpyModel(AMD64SystemVModel, StrcpyModel):
|
168
|
-
pass
|
169
|
-
|
170
|
-
|
171
|
-
class AMD64SystemVStrncpyModel(AMD64SystemVModel, StrncpyModel):
|
172
|
-
pass
|
173
|
-
|
174
|
-
|
175
|
-
class AMD64SystemVStrdupModel(AMD64SystemVModel, StrdupModel):
|
176
|
-
pass
|
177
|
-
|
178
|
-
|
179
|
-
class AMD64SystemVStrlenModel(AMD64SystemVModel, StrlenModel):
|
180
|
-
pass
|
181
|
-
|
182
|
-
|
183
|
-
class AMD64SystemVStrnlenModel(AMD64SystemVModel, StrnlenModel):
|
184
|
-
pass
|
185
|
-
|
186
|
-
|
187
|
-
class AMD64SystemVSysconfModel(AMD64SystemVModel, SysconfModel):
|
188
|
-
pass
|
189
|
-
|
190
|
-
|
191
|
-
class AMD64SystemVTimeModel(AMD64SystemVModel, TimeModel):
|
192
|
-
pass
|
193
|
-
|
194
|
-
|
195
|
-
class AMD64SystemVUnlinkModel(AMD64SystemVModel, UnlinkModel):
|
196
|
-
pass
|
197
|
-
|
198
|
-
|
199
|
-
class AMD64SystemVWriteModel(AMD64SystemVModel, WriteModel):
|
200
|
-
pass
|
201
|
-
|
202
|
-
|
203
|
-
__all__ = [
|
204
|
-
"AMD64SystemVBasenameModel",
|
205
|
-
"AMD64SystemVCallocModel",
|
206
|
-
"AMD64SystemVDaemonModel",
|
207
|
-
"AMD64SystemVFlockModel",
|
208
|
-
"AMD64SystemVGetopt_longModel",
|
209
|
-
"AMD64SystemVGetpagesizeModel",
|
210
|
-
"AMD64SystemVGetppidModel",
|
211
|
-
"AMD64SystemVGetsModel",
|
212
|
-
"AMD64SystemVMallocModel",
|
213
|
-
"AMD64SystemVOpenModel",
|
214
|
-
"AMD64SystemVOpen64Model",
|
215
|
-
"AMD64SystemVPutsModel",
|
216
|
-
"AMD64SystemVPthreadCondInitModel",
|
217
|
-
"AMD64SystemVPthreadCondSignalModel",
|
218
|
-
"AMD64SystemVPthreadCondWaitModel",
|
219
|
-
"AMD64SystemVPthreadCreateModel",
|
220
|
-
"AMD64SystemVPthreadMutexInitModel",
|
221
|
-
"AMD64SystemVPthreadMutexLockModel",
|
222
|
-
"AMD64SystemVPthreadMutexUnlockModel",
|
223
|
-
"AMD64SystemVPtraceModel",
|
224
|
-
"AMD64SystemVRandModel",
|
225
|
-
"AMD64SystemVRandomModel",
|
226
|
-
"AMD64SystemVSleepModel",
|
227
|
-
"AMD64SystemVSrandModel",
|
228
|
-
"AMD64SystemVSrandomModel",
|
229
|
-
"AMD64SystemVStrcatModel",
|
230
|
-
"AMD64SystemVStrncatModel",
|
231
|
-
"AMD64SystemVStrcpyModel",
|
232
|
-
"AMD64SystemVStrncpyModel",
|
233
|
-
"AMD64SystemVStrdupModel",
|
234
|
-
"AMD64SystemVStrlenModel",
|
235
|
-
"AMD64SystemVStrnlenModel",
|
236
|
-
"AMD64SystemVSysconfModel",
|
237
|
-
"AMD64SystemVTimeModel",
|
238
|
-
"AMD64SystemVUnlinkModel",
|
239
|
-
"AMD64SystemVWriteModel",
|
240
|
-
]
|
@@ -1,166 +0,0 @@
|
|
1
|
-
smallworld/__init__.py,sha256=TdF5xT1AGWujYlH6nGghOhVHOnyWW-0RPtmSyQwe5eU,636
|
2
|
-
smallworld/helpers.py,sha256=9KZPOtPeJuZ7ipkB2x0tBcn4ZNHzwqW2niGZMI05wuY,3291
|
3
|
-
smallworld/logging.py,sha256=QMowRbtH9HdPPQUCI6tJGxhOwC5llQQqP5ssdt0Hd08,2171
|
4
|
-
smallworld/platforms.py,sha256=YCh2Np-CdkfEA46Vth1u3D4z9mDJXE3TVBDWZ-9-cpM,1861
|
5
|
-
smallworld/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
smallworld/utils.py,sha256=fUQDITahR-h8LV7W6KUNRtTQLpuumCH7xdjSHJJr3Ig,30279
|
7
|
-
smallworld/analyses/__init__.py,sha256=yVG_916py3E65Jf56RXDt4g691aBmEm4K39DUv2-GjA,454
|
8
|
-
smallworld/analyses/analysis.py,sha256=2fAN8WnTYYZ6Xe3QsODvx72Tu2P-r9KXnKOwlnKqRY8,2508
|
9
|
-
smallworld/analyses/code_coverage.py,sha256=bV6tDEe7kmLAelsZaGAI99f61k_BRwrffynZyefJXxQ,839
|
10
|
-
smallworld/analyses/colorizer.py,sha256=yz0QzK19FLtlWQw81jAfVLIngODrdGrX7U4AaI-Gp8s,26310
|
11
|
-
smallworld/analyses/colorizer_summary.py,sha256=YRxZo8LzcvLG6-iO75IUJiFtxMG1c3SM9Q0LwxrTfeU,3368
|
12
|
-
smallworld/analyses/field_detection/__init__.py,sha256=iH5mJP0IZdaXLMElJlhfpCt0HOV03rk4XiYBUBGzIiw,284
|
13
|
-
smallworld/analyses/field_detection/field_analysis.py,sha256=kVStTCnyTSmR-FRkyCocuRFwxafRGhrcV92xA4eq8NQ,20759
|
14
|
-
smallworld/analyses/field_detection/guards.py,sha256=h0_5JZvy2TkvqHPMAHW25McVC02NrlZ8lTOhpYywR-Y,778
|
15
|
-
smallworld/analyses/field_detection/hints.py,sha256=WmlGQ3oU1_buVwvenVYVDxRCvSiGaGxDKZUx-vdbOK4,3572
|
16
|
-
smallworld/analyses/field_detection/malloc.py,sha256=SJGcwog2OIW-m-wnhmYOkofUgVJMUCRyURzRhvZOeSM,7945
|
17
|
-
smallworld/analyses/forced_exec/__init__.py,sha256=jSfh7NqduXoKdBmKzR7aamHgQ_vg6xV70CZp8P5Ah9k,124
|
18
|
-
smallworld/analyses/forced_exec/forced_exec.py,sha256=EcfH2IjJed4kn3JnNkHDehkkqXP0epsw8idxIveh0lM,2817
|
19
|
-
smallworld/analyses/underlays/__init__.py,sha256=XaDp07yzqskNxdJTjzkeU_q4mY64FTSZ3LmJVPAwjFw,137
|
20
|
-
smallworld/analyses/underlays/basic.py,sha256=kBOQ7AD9nnBBN1vBLoAKKNzi96k6aIpGO7V7dbodobU,329
|
21
|
-
smallworld/analyses/underlays/underlay.py,sha256=B-kcKRj95BoTRonqhzxms7INKL_aY7xGXKQuWY7QGYg,784
|
22
|
-
smallworld/analyses/unstable/__init__.py,sha256=WGSaSyQtfcE3QEN8QNlQVLPX0b2Pqg4MMSaTn7vavVk,132
|
23
|
-
smallworld/analyses/unstable/angr_nwbt.py,sha256=H7SO5I_Cg9vrMivdEhXByRKcibdZhCL3Uw7TJQYqx44,4138
|
24
|
-
smallworld/analyses/unstable/code_coverage.py,sha256=30A2DMzH8DSEjuZmRBHIiQmcc6JIi12-FLlgDYfE1Y8,1683
|
25
|
-
smallworld/analyses/unstable/code_reachable.py,sha256=A-c9PyRWKY5NgYHciMgj2ocUGplMf8vvNsmbNMxkTuc,1436
|
26
|
-
smallworld/analyses/unstable/control_flow_tracer.py,sha256=y60VZHdqvg5JWrFi4jFPitVMqFQQeArIOZAi8DfAud0,2355
|
27
|
-
smallworld/analyses/unstable/pointer_finder.py,sha256=5LapCfeUxIFtHYFbFkEwWmiUW7TYnu7f25dFFQHRvgg,3090
|
28
|
-
smallworld/analyses/unstable/angr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
|
-
smallworld/analyses/unstable/angr/base.py,sha256=4X6v6mYMI2lXrSfiLWPX3zL8rG-5q0OuyYC4TRHCo_Q,328
|
30
|
-
smallworld/analyses/unstable/angr/divergence.py,sha256=NZBRNRTaf90ThrHj3-1Y2xqMFxlejNF78488EYoGqwg,11047
|
31
|
-
smallworld/analyses/unstable/angr/model.py,sha256=aQhMS8iR6fURVOE1REUu6_dAGx-mmTSyDDztfRzyWZU,14293
|
32
|
-
smallworld/analyses/unstable/angr/nwbt.py,sha256=H2iI9hhcd6WdfxhYALVnVHLdjoHmrlYHAdI0IotVwN8,1943
|
33
|
-
smallworld/analyses/unstable/angr/typedefs.py,sha256=O3RcnG3KDMTXrmBLz1_GPMdaqGNu728UcY_yZQWvSrw,5773
|
34
|
-
smallworld/analyses/unstable/angr/utils.py,sha256=VYcldRAxG8GycJJUQmcBpUgjx8nyUh8d3alx9ZYEn1c,636
|
35
|
-
smallworld/analyses/unstable/angr/visitor.py,sha256=Pljc5G1KVkg6VqGojDkDAxDEVUoStM7G-zHtYFknEZE,11364
|
36
|
-
smallworld/arch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
smallworld/arch/aarch64_arch.py,sha256=599ug8QIwnYbArhxX0QL-GS5Lqb5RCWRpnTrSlD164I,8637
|
38
|
-
smallworld/arch/amd64_arch.py,sha256=S67Yyfka8h-1fv4MFx3tzLn8yKi42SP4ghbxhlDO2cw,2361
|
39
|
-
smallworld/arch/i386_arch.py,sha256=E9XwAk71kpnFVoirCB9ml1fLk5OeBrO1re0A_1joGXA,1171
|
40
|
-
smallworld/emulators/__init__.py,sha256=FgMyfgry6xh0dEkdq_n0Z9ZIVcdgXnCGUNdWLgdbdGg,450
|
41
|
-
smallworld/emulators/emulator.py,sha256=Zjm_ilpSJb5YlVuudy05Ws-U6ubUf60RD6ig9gbWd9U,30659
|
42
|
-
smallworld/emulators/hookable.py,sha256=X-6RbwQKqgPZG7q8V_Ms293ElM53G2RA0IMT-9z2Z04,9021
|
43
|
-
smallworld/emulators/angr/__init__.py,sha256=HxYZ9SEkhP3okrigYtCczhmbblNd34m3aSVZOgIVz9Q,141
|
44
|
-
smallworld/emulators/angr/angr.py,sha256=4FGpGa0tEbHjrY-8h9HAOnYZX_da8di09CLddTYd7w8,63616
|
45
|
-
smallworld/emulators/angr/default.py,sha256=CEiE5Asho_HNRqSgIiymzchYU9MptwjE3KLbwzNn_rI,459
|
46
|
-
smallworld/emulators/angr/exceptions.py,sha256=8vZ1QX0n_U-FWY15LqJp1qcJMhpC5pjD5VgiQb88CPA,177
|
47
|
-
smallworld/emulators/angr/factory.py,sha256=O8NQrP5W15tC-IzAp6JV3MgiE3iGiuISh3AFDdrVHPs,2083
|
48
|
-
smallworld/emulators/angr/scratch.py,sha256=V8rMZeH2wzactdrKPu_lrFU1wUcjTi_-W9H13ELgWXQ,1602
|
49
|
-
smallworld/emulators/angr/simos.py,sha256=U_qaTwYbS_7yjI4XxMEBJYT8Zl-BIa2GkCaf68U3r7A,1657
|
50
|
-
smallworld/emulators/angr/utils.py,sha256=UzHh6Ey9U_HPI2fWPZ3w5QcYJnavBSxoNsXQspLQJ04,2247
|
51
|
-
smallworld/emulators/angr/exploration/__init__.py,sha256=PrKSn5CF32xu8gP5_VmFS6qpYj3SEAz0dvmiyMhQXMY,260
|
52
|
-
smallworld/emulators/angr/exploration/bounds.py,sha256=9Ef8YUldV6fQOIUx3cwNz2CkpqaW8lLz4ly2WDgYFKg,820
|
53
|
-
smallworld/emulators/angr/exploration/default.py,sha256=_GBQDaih1xXcJWlXQlcfem_f_pBEXINLMt6hU1tlKJU,394
|
54
|
-
smallworld/emulators/angr/exploration/terminate.py,sha256=M8Sm8HRMOA66Df5mGxbf3SHO3D8G84NA3qWfdLQkQhY,586
|
55
|
-
smallworld/emulators/angr/machdefs/__init__.py,sha256=KqRnhLc6WcN4xmnMDbdC27evVw82TEZ_JQs-Cy-IVpU,962
|
56
|
-
smallworld/emulators/angr/machdefs/aarch64.py,sha256=DvjxSJb3ktEYd8VrprEnc8D4fgquHxqNPzLIw08zMPI,7213
|
57
|
-
smallworld/emulators/angr/machdefs/amd64.py,sha256=TPn08eGEzjEYdh7rMem3EDsXEdi_FJC_Qr_StVlTSzQ,4541
|
58
|
-
smallworld/emulators/angr/machdefs/arm.py,sha256=ODWK1FdPaJSh5BoHLGFkS8XonfwN1Vq0tYa9w6P_1bo,12830
|
59
|
-
smallworld/emulators/angr/machdefs/i386.py,sha256=h7l8sq1NQFNEzQS0buZb7Ei5I_P6XDvoxf6NHdVcaqk,6316
|
60
|
-
smallworld/emulators/angr/machdefs/machdef.py,sha256=GO-P-z0sg5jjcd5s7l_UZPW1Uf5PNFYE8Svyci8PrPo,4503
|
61
|
-
smallworld/emulators/angr/machdefs/mips.py,sha256=vINonM8JGeSoYXeFUAd3IoEAPww3KU7joQKOw3hzbwY,4281
|
62
|
-
smallworld/emulators/angr/machdefs/mips64.py,sha256=fgt8ZgDzG6jMqUSoGE2hGszWuVSDdCEiwVZtMk2u0o4,4564
|
63
|
-
smallworld/emulators/angr/machdefs/ppc.py,sha256=cW7hE3jajtH2l0mhN6rjhX8tCkqlAlGbF8WZ0G2SgFw,2249
|
64
|
-
smallworld/emulators/angr/machdefs/riscv.py,sha256=xFTMbUJQZz_aJJFC_s5C8e8v8Fg8TFpE5f7zT-mePWQ,7201
|
65
|
-
smallworld/emulators/angr/machdefs/xtensa.py,sha256=pkLE2eme31YOZIowwBvt7QYei6CF1sMNtkzBXmerNiU,10385
|
66
|
-
smallworld/emulators/angr/memory/__init__.py,sha256=SxmUcC6d7yCED5BXOojjxCC1E2bbaWu8nOXEFToJgJk,150
|
67
|
-
smallworld/emulators/angr/memory/default.py,sha256=L4Fy_lBEOFMF-BNMmaqm3R1rsCnUzU1o0jhYqnQ50yo,223
|
68
|
-
smallworld/emulators/angr/memory/fixups.py,sha256=9VVLpqj2aVMqjv4JORjQ7EfnFobPJpdM7gvKrxKTiGw,1662
|
69
|
-
smallworld/emulators/angr/memory/memtrack.py,sha256=AhKmQKEWauejUcpPm2lHdHmJmXtuyZmadU7KVKun70Q,3512
|
70
|
-
smallworld/emulators/panda/__init__.py,sha256=cnJMT6q_Ch63jQMUKIEYzP275GMsGgpMFoNyR8Gvi9g,69
|
71
|
-
smallworld/emulators/panda/panda.py,sha256=mIyfDJcdUZwP768HdvyboR7_UwIG5sPzO1fgDlwNpNo,23065
|
72
|
-
smallworld/emulators/panda/machdefs/__init__.py,sha256=IPGlg1Porby2RwDBHs2_mzV5za7IBo3FzaoJbySLkvE,809
|
73
|
-
smallworld/emulators/panda/machdefs/aarch64.py,sha256=c416UiayR7PFMATuCHIKWf0-z2TiisacLJn2N9RHTEU,2412
|
74
|
-
smallworld/emulators/panda/machdefs/amd64.py,sha256=W1M66TJ2KG8L1xaxdNp6AFMYIy1kG0ZWOi_W88oHSgk,2025
|
75
|
-
smallworld/emulators/panda/machdefs/arm.py,sha256=RJDwOgD4X3QZXri_9FhqXowZM9iPrqF8FNgasFtiV3s,2432
|
76
|
-
smallworld/emulators/panda/machdefs/i386.py,sha256=NOdWVfIwGSENyXEaw44pQxFVOmu3Juogh0CHdErYa1Q,1543
|
77
|
-
smallworld/emulators/panda/machdefs/machdef.py,sha256=rnjNBBGxzy9ueU1eLKImU4Zld1waeyFyk-3u42VHeLk,2591
|
78
|
-
smallworld/emulators/panda/machdefs/mips.py,sha256=GM_7VcYNHZcTTpDWyEa-muam8Ip_UW7Bf3hx7ZZNBE8,2353
|
79
|
-
smallworld/emulators/panda/machdefs/mips64.py,sha256=AC176DvBKjvaqikyahK6-h6yjFlOW5ibmtZh4qq5Yc8,2249
|
80
|
-
smallworld/emulators/panda/machdefs/ppc.py,sha256=4enkT9vX4A2DhojWbd_e1kv1pxCtGSMDTsMsUwvZdnE,1668
|
81
|
-
smallworld/emulators/unicorn/__init__.py,sha256=CIdDoYJtB87zHIU5ZDxFFNmD-sV3i9bSeC7M9wK6zmU,312
|
82
|
-
smallworld/emulators/unicorn/unicorn.py,sha256=bbF3F9wKnTAMBTmVbzph8pt4NUBSgN7eRogRBp4LD5A,26945
|
83
|
-
smallworld/emulators/unicorn/machdefs/__init__.py,sha256=NEc63JiG30OB19WeJbc4yj6unAzP06yXGV9UF2AqW8U,664
|
84
|
-
smallworld/emulators/unicorn/machdefs/aarch64.py,sha256=GWYVo9m8GWcYIyGVXh_5WHP2iphEEfVWMbOdfxZiK6o,19432
|
85
|
-
smallworld/emulators/unicorn/machdefs/amd64.py,sha256=s5k-yJmmQnxqLXftUxAtl1YRa9NCY0AlTlpJscnJFEA,20860
|
86
|
-
smallworld/emulators/unicorn/machdefs/arm.py,sha256=UvfXx64MgrAfGgXDRVtUB8XAvDu7nSaURtxBLIFSgPo,17690
|
87
|
-
smallworld/emulators/unicorn/machdefs/i386.py,sha256=vA_BX_IS6MGQWhwAruFdHMtxlZ7x4AmpwFuMhAmuZ8E,7380
|
88
|
-
smallworld/emulators/unicorn/machdefs/machdef.py,sha256=9mBIJtj9xz92bLhsWBW3EHhAwPL-jHHNtS7ru40D2Es,3258
|
89
|
-
smallworld/emulators/unicorn/machdefs/mips.py,sha256=qK2wgENq8lZ7bPh5a4csG1LAoeqDcGAv5Bd5ys83C20,11154
|
90
|
-
smallworld/exceptions/__init__.py,sha256=nYEtQxKzOM7TM0Q3JY5arI1dPFHZH2a7ANfn7TXqfYk,166
|
91
|
-
smallworld/exceptions/exceptions.py,sha256=V-Z4C29unh2ftf6js6dg7NhoXDoSCmXDHswo_g4ikm4,1699
|
92
|
-
smallworld/exceptions/unstable/__init__.py,sha256=h_d-4taVm-0BiOAlM5OZNLWreP9XY34TdXzhGRX097o,46
|
93
|
-
smallworld/exceptions/unstable/exceptions.py,sha256=HrwrfspjhDRHm3VyPQbbW-UKWitWkxSfZDx0VetSA7Y,729
|
94
|
-
smallworld/extern/__init__.py,sha256=109-2kzVXEo2csCssg659M48qztmqUaSLz2i2-fIS1g,87
|
95
|
-
smallworld/extern/ctypes.py,sha256=dzwlWUZVwT9nA6eppOQDPQKB1LpcaoAUukLyinLwx5g,2807
|
96
|
-
smallworld/extern/unstable/__init__.py,sha256=diwSm5xU6XDSXWDfIzMJI-51xqHWf34dPS3gAfYFct0,35
|
97
|
-
smallworld/extern/unstable/ghidra.py,sha256=4ARvupiBwsBzgqOP7BX-bmz-G-jvPEekMaCnWJMrfRA,4611
|
98
|
-
smallworld/hinting/__init__.py,sha256=hM65u_8exX5uFBP6kDTp8-SmHt-2QoM3qs5D3XCCg64,296
|
99
|
-
smallworld/hinting/hinting.py,sha256=RWXvRk0WtM7z0KIFOCozquCiwmUMI2SUnq8r8k2bDf0,5373
|
100
|
-
smallworld/hinting/hints.py,sha256=Js9rEvOhytocJjeGWLPbvv_HL7Fws6FwbeAIqfO_AOk,10547
|
101
|
-
smallworld/hinting/utils.py,sha256=euYPx5ylNznmUsw20V2KP_jmJUPV-xYcL2Wjp-FraqQ,410
|
102
|
-
smallworld/hinting/unstable/__init__.py,sha256=-dkXwUAUg_5Q8Dx_SOp-LvYvJ1F0jm3VzHoTDZzTkwg,82
|
103
|
-
smallworld/instructions/__init__.py,sha256=BoACLdhvFp00VPcBJHnuAEReMlkL3l3AmaQ4PdLLdD0,488
|
104
|
-
smallworld/instructions/aarch64.py,sha256=G-m_-oOWFRsFqtma2yRtGHCMEuSyrWSg5PihO9ExBt8,717
|
105
|
-
smallworld/instructions/arm.py,sha256=y9LBqkaxmHljeE28aidayPL-NEIu9wB9QyswQZ_xwXU,578
|
106
|
-
smallworld/instructions/bsid.py,sha256=x4Ef0zlrnNDP_zLQ0zIqRGAbRXyz78ctxomQ5nhOKiw,1762
|
107
|
-
smallworld/instructions/instructions.py,sha256=fNsJ3CN7zhqOVvG6G9jzWk2RSRRQ7waCv2AO-EgaHQk,7807
|
108
|
-
smallworld/instructions/mips.py,sha256=S6omrEAYzJorpJc0K_5htF6wNht_1xwuqCPm2toM0Sc,625
|
109
|
-
smallworld/instructions/x86.py,sha256=yMpViXX2v_S950bxJcSknSjHnr6E1nLpiuEk8fKbJ1U,3918
|
110
|
-
smallworld/state/__init__.py,sha256=MhbjpBhOHZBizKMLgkG_Mpsr1Ue0tVCm3cZ5klQEDPs,212
|
111
|
-
smallworld/state/state.py,sha256=uQxfemM231WJvuCq2S8L-xtFyVAYxpioWxsfG4RC7XM,31136
|
112
|
-
smallworld/state/x86_registers.py,sha256=Zx76micb1225xzC9wmMxmqA_9YC_ayx9Kp4x_qMZ_Pc,789
|
113
|
-
smallworld/state/cpus/__init__.py,sha256=u84gVK_31S2geGMiFtSa1Fd-NmL-xgG6h-fEKLBuORk,696
|
114
|
-
smallworld/state/cpus/aarch64.py,sha256=4C_14YL9QObt0KU4-VeUYQrQ2jl5qgJ97Kw6k2qWCG0,23293
|
115
|
-
smallworld/state/cpus/amd64.py,sha256=s9oJAsJ9Nt_nDxBFJqTFs0o0Kng-eauhgp-moLTDVNY,24395
|
116
|
-
smallworld/state/cpus/arm.py,sha256=8ctRBrV28aMZObBAkNutYNgEsgHDgXkkTeTJMSaDj2A,25081
|
117
|
-
smallworld/state/cpus/cpu.py,sha256=XI9xaW6VvzmRKIJ8TYOHA0Yd03Tpz6TZ40ewc4B8OEA,2006
|
118
|
-
smallworld/state/cpus/i386.py,sha256=JzhfeGPrBhpODzNQTICgyhTS3jdaWLTubaKWdELFRiw,8449
|
119
|
-
smallworld/state/cpus/mips.py,sha256=Vm0f4sfAbKBK1jP382hZV7ZT-UfU6WkqalKYl87hJ2o,14169
|
120
|
-
smallworld/state/cpus/mips64.py,sha256=a0gAH5OaSuywvYk26lTWSqHSwK_LuvscdmnYwOTxOHk,14084
|
121
|
-
smallworld/state/cpus/powerpc.py,sha256=Nbn1J3uFEHX1JFUXIOdsyGcMgg5DCrVADColS0Ys3nk,8312
|
122
|
-
smallworld/state/cpus/riscv.py,sha256=-K5020y3VPiKPZUqRnBhSZiQrMwaJbahc07HSm_V-zQ,13467
|
123
|
-
smallworld/state/cpus/xtensa.py,sha256=vZi8XMKrmNF1GF9M3sdxzKHoyXl_cSKcSJuOFE6Mzh0,2421
|
124
|
-
smallworld/state/memory/__init__.py,sha256=qB1XKT-WDl40rNlAYssdwYIckXt_swUUv6x6MR6wrSY,251
|
125
|
-
smallworld/state/memory/code.py,sha256=HFeVBT7QRl8z6MypAB3fre-kwjLQcAQuHWcmSU4oHHE,2349
|
126
|
-
smallworld/state/memory/heap.py,sha256=Z_Hcyx2XrKx_JJaShHUSsLk1GVV67i0sC5VvozX5vTg,2652
|
127
|
-
smallworld/state/memory/memory.py,sha256=fxGW63fmPMCHHKkydnWWq2Ib8zrU_ZIWdML4__jYEsc,5733
|
128
|
-
smallworld/state/memory/elf/__init__.py,sha256=M9GY8Pl9zjCM8oDlpsSByPLdJ4d-uHMW1WDhjUodc4M,60
|
129
|
-
smallworld/state/memory/elf/elf.py,sha256=czDMuh-TC9Mt5n9YT3s0zvWi-7mQDVJJvSLv74cQ_HU,23065
|
130
|
-
smallworld/state/memory/elf/structs.py,sha256=VfZQU-9rwQkQrxq6mfOqeNVUyM3AeTwPzUEGuD0389I,1776
|
131
|
-
smallworld/state/memory/elf/rela/__init__.py,sha256=tMyIFKogMSIpVzuKVzOqftqKfhzKNx5V0l_5hsIg5Lc,828
|
132
|
-
smallworld/state/memory/elf/rela/aarch64.py,sha256=WMdYmmd1U8srlayVdL3ZASOSzfvFtlmPpmQlCZsm1Ts,936
|
133
|
-
smallworld/state/memory/elf/rela/amd64.py,sha256=jieqXZ1CDo_rkJ4M1d7tvBWL4Jpk5ncFNPHhkOBrIdk,1166
|
134
|
-
smallworld/state/memory/elf/rela/arm.py,sha256=7XNMeo1IrjAFYnD542nZptqs224nxVa8PtUx-HV2a8A,1538
|
135
|
-
smallworld/state/memory/elf/rela/i386.py,sha256=IelADvCgnDpl6tIvrh7ST-TDo_DpGEMh3LzRyW3q8rU,1141
|
136
|
-
smallworld/state/memory/elf/rela/mips.py,sha256=LMSUVdrYMCyR-ucVGmqwcCXPs7axp6Ea_kIlCGvsowg,1420
|
137
|
-
smallworld/state/memory/elf/rela/ppc.py,sha256=SWqen8wTClwSFZo08g9Ggg-26KmUR8ecVoH4P1MzvOQ,1566
|
138
|
-
smallworld/state/memory/elf/rela/rela.py,sha256=xXZV7oG1VPrZ0Z1P65WtimhTNuJJ07abhC2cGnqY4Cs,1928
|
139
|
-
smallworld/state/memory/elf/rela/riscv64.py,sha256=GnnYWv7lZWB43IYtB0yosV-GmfQbDvkLH5LFDalCzaE,886
|
140
|
-
smallworld/state/memory/elf/rela/xtensa.py,sha256=U3qG-AoiA4hIQF8sw8g0WoNcBDCK2pe58WNb2g36sGM,474
|
141
|
-
smallworld/state/memory/stack/__init__.py,sha256=jCdnkvlTtD0g59ng6dBWlslH4TPYxJpo9TMoF3rfDT4,836
|
142
|
-
smallworld/state/memory/stack/aarch64.py,sha256=3a1vveMCCj6t2eXH_hQxLLjwUCKTZ_CYje01HnMLPko,584
|
143
|
-
smallworld/state/memory/stack/amd64.py,sha256=lEI1bb6dZE3mHNT5Wkx4neZj4rjEJdxSRFA-KY6igQE,1347
|
144
|
-
smallworld/state/memory/stack/arm.py,sha256=-QoAWRsLuMMpLQJLsa_C7nWa2Uj9wMJpBwXnqYEpRZ0,1596
|
145
|
-
smallworld/state/memory/stack/i386.py,sha256=elk5xz2hU71QslNqXk_vFAhPKZIEWmSsrfkbYzJeWbg,577
|
146
|
-
smallworld/state/memory/stack/mips.py,sha256=NBBqScfP7TAAvdBHieBNud7_g_VXlyLMs9Tpidib4_o,852
|
147
|
-
smallworld/state/memory/stack/mips64.py,sha256=CmR7UfSkWgEPPiF6TKcxBMM1IUckAg-_-qC1cdC5mxY,862
|
148
|
-
smallworld/state/memory/stack/ppc.py,sha256=7pLTHmZ094aFbv1fR94K3Ub_G9Goub3eucwqOEX4u68,843
|
149
|
-
smallworld/state/memory/stack/riscv.py,sha256=CRZJoKqVhCKwNSo8_N8vRH1UzCi9Y6-_3xCEFBO0I_0,585
|
150
|
-
smallworld/state/memory/stack/stack.py,sha256=aWRDBryAv8JX9-CdYQjrGvwKZIAbmYeJfVPg6T_bp18,3686
|
151
|
-
smallworld/state/memory/stack/xtensa.py,sha256=mZSTSudILgRNYsBfKxMq2Twra7NFbc80UmK6BAbTd5c,848
|
152
|
-
smallworld/state/models/__init__.py,sha256=BNfq8fKp7AgpRpPI2ZCMNIbSqkrIiwWujIelldc8XoM,187
|
153
|
-
smallworld/state/models/mmio.py,sha256=uI7ZwZp7xbHgnw0hJs6J35cWs05SyEyaJqej58KEOnI,6946
|
154
|
-
smallworld/state/models/model.py,sha256=HenbBoROVOvRjMANuezqenavTCxzRjfPC7sQnjmbPw4,4804
|
155
|
-
smallworld/state/models/posix.py,sha256=T8q_tdH0XjXaYwgLJxI_hQIbSKXPLH3ETbuhehYUJe8,13279
|
156
|
-
smallworld/state/models/x86/__init__.py,sha256=7FstZrVzPgNzISwxuAyU2EAVwVldQNY0D0x_ysHMUo8,120
|
157
|
-
smallworld/state/models/x86/microsoftcdecl.py,sha256=tSWxBYsJ3hS9wFbbaGmqKlxbzN_CiSWjflAr3r-UzU4,780
|
158
|
-
smallworld/state/models/x86/systemv.py,sha256=0U_WjoeBP5uuwJkkgmbV4r0S1r9VL3lE19YEH8edgtY,5101
|
159
|
-
smallworld/state/unstable/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
|
-
smallworld/state/unstable/elf.py,sha256=icgNvR53vzixYGQHZuAPo2Iu1p45DuGcrx-0BMz1hX8,15475
|
161
|
-
smallworld_re-1.0.3.dist-info/licenses/LICENSE.txt,sha256=hJgzoM94yZXUpdbqkggYvqC5yAhrvy7Mi6hPKKUhu5I,1083
|
162
|
-
smallworld_re-1.0.3.dist-info/METADATA,sha256=adSI7Hapd_iKQdwpGe7TT0gRJy_WbgNaIHqiZ4ZSiE0,6160
|
163
|
-
smallworld_re-1.0.3.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
164
|
-
smallworld_re-1.0.3.dist-info/entry_points.txt,sha256=bP2uJRrjWRJ4wCDYTVX-XbUvyJAqUz6P1NgUTbONz2g,56
|
165
|
-
smallworld_re-1.0.3.dist-info/top_level.txt,sha256=fHjt8xbQdfHStalSy4-pP9Jv6WfDtRH6S9UPw6KMrwk,11
|
166
|
-
smallworld_re-1.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|