1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

[302327] inaccuracy in JavaDoc IDisassembly.getMixedInstructions

This commit is contained in:
John Cortell 2010-02-09 21:16:27 +00:00
parent 54c1a11ea2
commit 1cf226434d

View file

@ -73,16 +73,23 @@ public interface IDisassembly extends IDsfService {
BigInteger endAddress, BigInteger endAddress,
DataRequestMonitor<IMixedInstruction[]> drm); DataRequestMonitor<IMixedInstruction[]> drm);
/** /**
* Gets the mixed disassembled code from a file location. * Gets the mixed disassembled code from a file location, starting at the
* If [lines] == -1, the whole function is disassembled. * beginning of the file. If [lines] == -1, the whole file is disassembled.
* *
* @param context Context of the disassembly code * @param context
* @param filename File to disassemble * Context of the disassembly code
* @param linenum Line number within the file * @param filename
* @param lines Number of lines of disassembled code to produce * File to disassemble
* @param drm Disassembled code * @param linenum
*/ * Line number within the file. If the line does not represent
* compiled code, disassembly will start at the first subsequent
* line that does.
* @param lines
* Number of lines of disassembled code to produce
* @param drm
* Disassembled code
*/
public void getMixedInstructions( public void getMixedInstructions(
IDisassemblyDMContext context, IDisassemblyDMContext context,
String filename, String filename,