summaryrefslogtreecommitdiff
path: root/python/callingconvention.py
AgeCommit message (Collapse)Author
2019-01-17update company name and copyright dateJordan Wiens
2018-09-13Add callee saved registers on calling conventions to specify which registers ↵Rusty Wagner
are assumed to be preserved (used in heuristics to avoid incomplete data flow cloberring these registers)
2018-07-10Various Python 3 support changesKyleMiles
2018-07-10addition 3 compatibility changesJordan Wiens
2018-07-10Additional changes for python 2/3 compatibilityPeter LaFosse
2018-07-10working division, prints, and metaclasses, but imports broken, still needs workJordan Wiens
2018-03-23Cache all created CoreArchitecture objectsRyan Snyder
2018-03-23Architecture plugins no longer need to override the perform_* methods (you ↵Rusty Wagner
can now override get_instruction_info, not perform_get_instruction_info). The perform_* methods are now deprecated but will still function as expected. Added architecture hooks to Python API using this new style.
2018-03-23Register stack adjustments in calling conventionsRusty Wagner
2018-03-23Adding support for register stacks in IL (for x87)Rusty Wagner
2017-08-23Added APIs for clobbered registers, global pointers, and function exit data ↵Rusty Wagner
flow info
2017-08-17Work around limitations in ctypesRusty Wagner
2017-08-15Add APIs to access and update portions of the function type, and added new ↵Rusty Wagner
APIs for global registers and implicit incoming state in calling conventions
2017-07-26Merge type propagation into devRusty Wagner
2017-07-17Fix referenced to old calling convention api, Fixes #739Peter LaFosse
2017-07-15Fixes #539 CallingConvention can not be instantiated in the python apiPeter LaFosse
2017-07-14Adding API to get type of MLIL expressionRusty Wagner
2017-07-10Add confidence levels to type objectsRusty Wagner
2017-05-19update copyright yearJordan Wiens
2017-02-16Basic blocks have incoming and outgoing edges with basic block references, ↵Rusty Wagner
use core object identity for equality
2016-10-28Refactor python api into separate files and add Enumeration support. Also ↵plafosse
fixed bugs found with pyflakes