summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
AgeCommit message (Collapse)Author
2025-03-28missed the older dates!Jordan Wiens
2025-03-27Python: Fix a couple typoes in the IL buildersGlenn Smith
2025-03-13Python: Add ILSourceLocation to these functions tooGlenn Smith
2025-03-05Python: MLIL instruction buildersGlenn Smith
2025-03-05Python: Make copy_expr copy with locationGlenn Smith
Co-Authored-By: ltlly <a1253213025@163.com>
2025-03-05Python: Add ability to construct expressions with locationsGlenn Smith
Co-Authored-By: ltlly <a1253213025@163.com>
2025-02-14uidf refactorRyan Snyder
2025-02-06Add After variants for looking up variables at instructionsGlenn Smith
Fixes #6397
2024-11-03Python API : Update .operands documentationKyleMiles
2024-07-25Add MediumLevelILFunction.is_var_live_atZichuan Li
2024-07-25Add is_ssa_var_live_at into mlilZichuan Li
2024-05-24fix missing params in ILOperands and mark as deprecated in LLIL, HLILJordan Wiens
2024-05-22cleanup all outstanding sphinx RST warningsJordan Wiens
2024-05-07fix def_sites and use_sites 👀KyleMiles
2024-05-07fix def_sites and use_sitesJordan Wiens
2024-04-21Improve type hints for many __getitem__ implsJosh Ferrell
2024-03-07Python: More IL expr functionsGlenn Smith
- XLILFunction.get_expr: Get an expr by index - XLILFunction.copy_expr: Copy an IL expr to a new expr - XLILInstruction.raw_operands: the straight integers from the core - Extra accessors on XLILLabel
2024-03-07Expose get_expr_count() on python llil and mlilSam Russell
This is already exposed in the CPP interface, and is useful for workflows for enumerating all expressions in an ILFunction
2024-03-02Add support for memory intrinsics.Brian Potchik
2024-02-29link from traverse APIs to examplesJordan Wiens
2024-02-26fix plugincommand docsJordan Wiens
2024-02-26Provide more fully featured ability to traverse hlilPeter LaFosse
2024-02-234.0 documentationJordan Wiens
- Refactored Type Documentation - Added Projects - Added Type Archives - Added New Sidebar Documentation - Added String Concepts - Added Light/Dark Mode - Added New Tab Documentation - Added BNIL Guide: HLIL docs - Added new cookbook examples - Added migration guide - Added script for building docsets - Added documentation for themes - Updated all images to Ninja Edit - API Docs : Documents BasicBlockEdge and BasicBlock - API Docs : Documents CoreVariable, Variable, and VariableNameAndType - API Docs : Corrects note on `BinaryView.update_analysis` and `BinaryView.update_analysis_and_wait` to represent that analysis is run by default for you now. - Many, many other changes
2024-02-01Adds `BinaryView.check_for_string_annotation_type`; Adds ergonomic way of ↵KyleMiles
retrieving string from ConstPtr IL instructions; Resolves #4144
2024-02-01Python API : Add a more flexible/ergonomic visitor pattern called traverse ↵KyleMiles
to LLIL, MLIL, and HLIL Also cleans up some old code patterns in the old visitors
2024-01-08update copyright yearJordan Wiens
2023-12-06Add LLIL/MLIL instructions to describe integer vs. floating point argument usageRusty Wagner
2023-11-28Add SSAVariable.def_site and SSAVariable.use_sitesKyleMiles
2023-11-23Fix address printing for BasicBlocks in reprScott Lagler
2023-08-01remove deprecation warning on mlilvar srcJordan Wiens
2023-07-22Python API : Add examples to the docs for MediumLevelILInstruction.visit and ↵KyleMiles
HighLevelILInstruction.visit
2023-07-22Python API : Deprecate MediumLevelILVar.src and MediumLevelILVarSsa.src in ↵KyleMiles
favor of *.var to match HLIL
2023-07-22Python API : Allow HLIL/MLIL get_ssa_var_definition and get_ssa_var_uses to ↵KyleMiles
accept variable instruction objects in addition to variable objects
2023-06-29Improve __repr__ for IL instructions, and related objectsPeter LaFosse
2023-06-29Implement __repr__ for all basic blocks in the base classPeter LaFosse
2023-06-02Add Var, SSAVar, and AliasedVar to commonil.py, and update the relavent ↵KyleMiles
MLIL/HLIL instrutctions
2023-05-26param_vars doesn't exist, properly refer to parameter_varsMaja Kądziołka
2023-03-29Fix some type hints using more correct Dict instead of MappingPeter LaFosse
2023-03-28Add visitors for llil and hlilPeter LaFosse
Implement detailed_operands for both, add visitors for both. Improve consistency of type_name field of detailed_operands in MLIL
2023-03-23Add visit methods to MLIL and new detailed_operands methodPeter LaFosse
2023-02-04Initial support for constant data expressions.Brian Potchik
2023-01-30Fix Type object leaksRusty Wagner
2023-01-06Fix update copyright year leftoverXusheng
2023-01-03Add instruction attributes to IL instructionsRusty Wagner
2023-01-03Add `replace_expr` to MLIL/HLIL in Python APIXusheng
2022-12-22Fix many incorrect type hints and type errorsJosh Ferrell
2022-11-20Initial constant expression builtin outliner.Brian Potchik
2022-11-10Fix regression in BasicBlock outgoing_edges/incoming_edges source/targetPeter LaFosse
2022-10-05Add SetExprType API to MLIL/HLILXusheng
Add get/set_expr_type to MLIL/HLIL Python APi
2022-09-01Splitting of variablesRusty Wagner