The MASM Forum

General => The Workshop => Topic started by: K_F on August 19, 2014, 07:12:34 AM

Title: Flow charts generated from code..
Post by: K_F on August 19, 2014, 07:12:34 AM
Interesting for those who like to document their 'algorithms' - bloody expensive though ??

http://www.aivosto.com/visustin.html (http://www.aivosto.com/visustin.html)
Title: Re: Flow charts generated from code..
Post by: Gunther on August 19, 2014, 11:59:43 PM
Van,

the educational license is a bit cheaper. But ...

Gunther
Title: Re: Flow charts generated from code..
Post by: farrier on August 20, 2014, 03:29:46 AM
I have had some good results from IDA Pro's flowcharting function. even included in the free version I have.

hth
Title: Re: Flow charts generated from code..
Post by: Gunther on August 20, 2014, 04:31:00 AM
Hi farrier,

Quote from: farrier on August 20, 2014, 03:29:46 AM
I have had some good results from IDA Pro's flowcharting function. even included in the free version I have.

is there a free version of IDA Pro?

Gunther
Title: Re: Flow charts generated from code..
Post by: guga on August 20, 2014, 04:39:28 AM
Yup. A demo version. But it is extremelly limited.
But, van, the ida version flow flowchart, as far i can remember is free (or is based on a free software)
Title: Re: Flow charts generated from code..
Post by: Gunther on August 20, 2014, 04:40:50 AM
Gustavo,

Quote from: guga on August 20, 2014, 04:39:28 AM
Yup. A demo version. But it is extremelly limited.

What doesn't work, for example?

Gunther
Title: Re: Flow charts generated from code..
Post by: guga on August 20, 2014, 04:52:08 AM
    it only supports the 80x86 & ARM family : IDA supports a large number of other processors.
    it will only load file of PE/ELF/Macho-O formats. The full version of IDA will accept virtually any file, from Atmel ROMs to iPhone executables. See our disassembly gallery for information about the additional processors, operating systems and file formats we support.
    the only compiler signatures included are the ones that can be used to produce Windows 32 PE files; the only type information included is for Visual C++ 6 and Borland C++ Builder.
    The MS Windows version contains a demo version of the ARM/Windows CE debugger.
    Please see our ARM/Windows CE debugging tutorial
    The MS Windows version contains a demo version of the Bochs debugger. Please note that the full version support Bochs debugger on all platforms.
    Check the debugger tutorial
    you will not be able to save your work, it will time out after some use, it will not disassemble itself.

Since ida 6.1, it is turning very handy, since they fixed some minor bugs in the disassembler. But....in some cases, RosAsm disassembler gives a way better result considering i didnĀ“t implemented the DIS system yet (A similar Flair technique).

In any case, Ida is really really a usefull tool
Title: Re: Flow charts generated from code..
Post by: Zen on August 20, 2014, 05:06:13 AM
Yeah,...I use IDA Pro Freeware (https://www.hex-rays.com/products/ida/support/download_freeware.shtml) to disassemble my own bloated, dysfunctional programs. The flow-chart view drives me nuts, though,...I'd much rather be looking at the text view. The disassembly is so much like the actual MASM source code, that you'll feel right at home.
Title: Re: Flow charts generated from code..
Post by: guga on August 20, 2014, 05:22:08 AM
Personally, i use 3 apps to disassemble and debug my apps.
RosAsm (Disassemble and reassemble)
Idapro 6.1
OllyDbg

One thing i never suceeded to make work in RosAsm though, is Ida interface style. I mean, the hability to edit a label on a specific position of the windows and automatically replace all others labels with that name. I know Ida was made with delphi, but i wonder if there there is a way to do it in Masm/RosAsm. It would also be a very handy usage for Radasm as well.
Title: Re: Flow charts generated from code..
Post by: Gunther on August 20, 2014, 07:59:17 AM
Gustavo,

your description of IDA sounds impressive. Thank you. I'll visit the web site.

Gunther