* Removed too specific __hash__ impl. * Cache arch and platform property values. 2017-11-02Move the function discrimination from SSAVariable to Variable (#856)David Barksdale 2017-11-02Make SSAVariables unique between functions (#855)David Barksdale This helps a ton with inter-function analysis. 2017-11-01fix new scripting provider aliases when no current context existsJordan Wiens 2017-10-30Provide a slightly different implementation for @joshwatson's ↵Peter LaFosse AnalysisCompletionEvent PR and documentation update 2017-10-30add current_llil and current_mlil scripting console aliasesJordan Wiens 2017-10-30__hash__ for three types of basic blocksJordan Wiens 2017-10-29Add convenience API's for accessing blocks and instructions in Function (#792)Cory Duplantis * Update export-svg.py path splitting Changed the path splitting part to the way python's documentation recommends it. I got some errors trying to use that function on windows, because it didn't split correctly. I stumbled upon this in the python documentation: https://docs.python.org/2/library/os.html#os.sep I changed the relevant line using their recommendation. * Rename data to session_data, as this API is per-session and not stored in the db * get_basic_blocks_starting_at incorrectly in the docs * Update troubleshooting.md * Zoom * get_instruction_low_level_il tweak made api docs less ambiguous * documenting Type.int and Type.function * Update __init__.py * Add convenience API's for accessing blocks and instructions in Function 2017-10-29Fixed possible IndexError in Function.get_*_at methods (#775)Josh Watson `Function.get_low_level_il_at` and `Function.get_lifted_il_at` methods could raise an IndexError because proper checking was not performed on the index returned by the core method that retrieves the IL instruction index of the requested instruction. The methods now check this value to see if it is equal to the length of the IL function, and if so, returns `None` instead. The onus of checking for `None` will be on the user, but at least they shouldn't have to wrap this in a try/except block anymore. 2017-10-23Top relative register stack access as a normal registerRusty Wagner 2017-10-19UI Updates for Product and Update Status.Brian Potchik 2017-10-06Adding support for register stacks in IL (for x87)Rusty Wagner 2017-10-03Add basic floating point instructionsRusty Wagner 2017-09-21Bugfix for BasicBlock incoming edges source and target were swappedPeter LaFosse 2017-09-21Add segment permission propertiesPeter LaFosse 2017-09-07Add some convenience api's for accessing strings, and iterating over all ↵Peter LaFosse basic blocks and instructions 2017-08-29Updating APIs to deal with stack adjustmentRusty Wagner