pyvex 9.2.173__py3-none-win_amd64.whl → 9.2.175__py3-none-win_amd64.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.

Potentially problematic release.


This version of pyvex might be problematic. Click here for more details.

pyvex/__init__.py CHANGED
@@ -3,7 +3,7 @@ PyVEX provides an interface that translates binary code into the VEX intermediat
3
3
  For an introduction to VEX, take a look here: https://docs.angr.io/advanced-topics/ir
4
4
  """
5
5
 
6
- __version__ = "9.2.173"
6
+ __version__ = "9.2.175"
7
7
 
8
8
  from . import const, expr, stmt
9
9
  from .arches import (
pyvex/lib/pyvex.dll CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyvex
3
- Version: 9.2.173
3
+ Version: 9.2.175
4
4
  Summary: A Python interface to libVEX and VEX IR
5
5
  License-Expression: BSD-2-Clause AND GPL-2.0-only
6
6
  License-File: LICENSE
@@ -106,7 +106,7 @@ print(irsb.tyenv.types)
106
106
  print(irsb.tyenv.types[0])
107
107
  ```
108
108
 
109
- Keep in mind that this is a *syntactic* respresentation of a basic block. That is, it'll tell you what the block means, but you don't have any context to say, for example, what *actual* data is written by a store instruction.
109
+ Keep in mind that this is a *syntactic* representation of a basic block. That is, it'll tell you what the block means, but you don't have any context to say, for example, what *actual* data is written by a store instruction.
110
110
 
111
111
  ## VEX Intermediate Representation
112
112
 
@@ -114,7 +114,7 @@ To deal with widely diverse architectures, it is useful to carry out analyses on
114
114
  An IR abstracts away several architecture differences when dealing with different architectures, allowing a single analysis to be run on all of them:
115
115
 
116
116
  - **Register names.** The quantity and names of registers differ between architectures, but modern CPU designs hold to a common theme: each CPU contains several general purpose registers, a register to hold the stack pointer, a set of registers to store condition flags, and so forth. The IR provides a consistent, abstracted interface to registers on different platforms. Specifically, VEX models the registers as a separate memory space, with integer offsets (i.e., AMD64's `rax` is stored starting at address 16 in this memory space).
117
- - **Memory access.** Different architectures access memory in different ways. For example, ARM can access memory in both little-endian and big-endian modes. The IR must abstracts away these differences.
117
+ - **Memory access.** Different architectures access memory in different ways. For example, ARM can access memory in both little-endian and big-endian modes. The IR must abstract away these differences.
118
118
  - **Memory segmentation.** Some architectures, such as x86, support memory segmentation through the use of special segment registers. The IR understands such memory access mechanisms.
119
119
  - **Instruction side-effects.** Most instructions have side-effects. For example, most operations in Thumb mode on ARM update the condition flags, and stack push/pop instructions update the stack pointer. Tracking these side-effects in an *ad hoc* manner in the analysis would be crazy, so the IR makes these effects explicit.
120
120
 
@@ -1,4 +1,4 @@
1
- pyvex/__init__.py,sha256=UXAGicGYOZD3nbH8fy2gHYauT94qD1ulqkvvGfhO8Bw,1854
1
+ pyvex/__init__.py,sha256=e4Z3pYwAHVhZs5gShEn-Se_9QNSyLwZ4tE7kZe9DCrM,1854
2
2
  pyvex/_register_info.py,sha256=obrahVpfLzJ4TdawSLha-xNdyv6zA87NKlTC2JwsR6I,49630
3
3
  pyvex/arches.py,sha256=Fp7cV3dW3Ld1qz3kHcjt-cGfH9ghbCXhXwyhOacGJIY,3657
4
4
  pyvex/block.py,sha256=ofh5x420DxA2SqWUpu8wN-o6qYfSiXhb6CmKpLiskAE,25391
@@ -27,7 +27,7 @@ pyvex/include/libvex_ir.h,sha256=mM7u19u1rZIuF3KXCGhg2gbdHG4e1nWbvGt0wbZp1GI,122
27
27
  pyvex/include/libvex_s390x_common.h,sha256=97CQbrtTdzYUHMsbJ0pn_cfCu16uFTaf97P1yX-4vqg,5025
28
28
  pyvex/include/libvex_trc_values.h,sha256=xO2pEbnlVXQijRUE_E5VWHCkEjG5XPaCG_MkpLeDvjQ,4451
29
29
  pyvex/include/pyvex.h,sha256=Gn_TGMXO5l6-1nSnwLvANMfQhE3YdBTyLgSuCbAWy0Q,1962
30
- pyvex/lib/pyvex.dll,sha256=qKRHxVLsPVA102BTHoX364bb3wp7EwXPUblzqEboTkY,2716160
30
+ pyvex/lib/pyvex.dll,sha256=oLAovQ9QJQiyGnqAcyzj0G-dIYTAw5ak6lL6jC6mutA,2716160
31
31
  pyvex/lib/pyvex.lib,sha256=DHI7Q-UdH3_VjaAfkzXfPJs5saYTm2hdc6BgXthNo-0,11464
32
32
  pyvex/lifting/__init__.py,sha256=qJulYcyrKrWF7rNcm62rg7g2Jkuem0OFAC2N23Wblfo,689
33
33
  pyvex/lifting/gym/__init__.py,sha256=4MMhN4POLhKNjrSIY3KBV5PGn8uHiUHcY_7Wnnmc6DM,204
@@ -51,10 +51,10 @@ pyvex/stmt.py,sha256=spT_JF1Jj6PxhH3ER2XW8i2JFGdhGRW4GYGHX3UJH10,22290
51
51
  pyvex/types.py,sha256=9m0fgYoRF7VVb5tByClPdqkAGi-nm-G7Uhqjs5YW_DQ,1005
52
52
  pyvex/utils.py,sha256=2yjR371Jdg6YbVAG8v4_1TvvYN0EAjNZspCTfa0WXZo,1429
53
53
  pyvex/vex_ffi.py,sha256=P7KM3c7cvlD1Q_pblFSFZekEHyFdRERAAPNs9cF1NCQ,69736
54
- pyvex-9.2.173.dist-info/METADATA,sha256=7z_bkR4S40ollTBwsiEjA9hxva9jDfHDDnmovPZtavU,10193
55
- pyvex-9.2.173.dist-info/WHEEL,sha256=7cuQBrKlgrMjywT6nmSZIIhuOog1xNCTkMyVVbw2aow,103
56
- pyvex-9.2.173.dist-info/licenses/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
57
- pyvex-9.2.173.dist-info/licenses/pyvex_c/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
58
- pyvex-9.2.173.dist-info/licenses/vex/LICENSE.GPL,sha256=5tagCVBeNF_pSeExAzT8sHR_KNrihWdZ3hAqtmtyLLQ,18011
59
- pyvex-9.2.173.dist-info/licenses/vex/LICENSE.README,sha256=l2bDDkbW7bgEzAwFYtTEUto7yT_Aph9Sc5EZ1uNYWts,996
60
- pyvex-9.2.173.dist-info/RECORD,,
54
+ pyvex-9.2.175.dist-info/METADATA,sha256=cvKkCpNgFTktkiPO2tRz6TBNxlgqQ5njz4UF_ASGPWg,10191
55
+ pyvex-9.2.175.dist-info/WHEEL,sha256=7cuQBrKlgrMjywT6nmSZIIhuOog1xNCTkMyVVbw2aow,103
56
+ pyvex-9.2.175.dist-info/licenses/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
57
+ pyvex-9.2.175.dist-info/licenses/pyvex_c/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
58
+ pyvex-9.2.175.dist-info/licenses/vex/LICENSE.GPL,sha256=5tagCVBeNF_pSeExAzT8sHR_KNrihWdZ3hAqtmtyLLQ,18011
59
+ pyvex-9.2.175.dist-info/licenses/vex/LICENSE.README,sha256=l2bDDkbW7bgEzAwFYtTEUto7yT_Aph9Sc5EZ1uNYWts,996
60
+ pyvex-9.2.175.dist-info/RECORD,,