Changeset 64588 in vbox
- Timestamp:
- Nov 6, 2016 2:38:35 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 111777
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFR3Flow.cpp
r64587 r64588 147 147 DBGFADDRESS AddrTarget; 148 148 /** The indirect branch table identified for indirect branches. */ 149 PDBGFFLOWBRANCHTBLINT 149 PDBGFFLOWBRANCHTBLINT pFlowBranchTbl; 150 150 /** Last status error code if DBGF_FLOW_BB_F_INCOMPLETE_ERR is set. */ 151 151 int rcError; … … 723 723 else if (fDisasMode == DBGF_DISAS_FLAGS_32BIT_MODE) 724 724 enmMode = CPUMMODE_PROTECTED; 725 else if (fDisasMode == DBGF_DISAS_FLAGS_ 32BIT_MODE)725 else if (fDisasMode == DBGF_DISAS_FLAGS_64BIT_MODE) 726 726 enmMode = CPUMMODE_LONG; 727 727 else … … 802 802 * 803 803 * @returns VBox status code. 804 * 804 * @param pThis The flow control graph. 805 805 * @param pFlowBb The basic block causing the indirect branch. 806 806 * @param pAddrBranchTbl Address of the branch table location. … … 890 890 * 891 891 * @returns VBox status code. 892 * 892 * @param pThis The flow control graph. 893 893 * @param pFlowBb The basic block causing the indirect branch. 894 894 * @param pAddrBranchTgt Address of the branch target location. … … 946 946 * 947 947 * @returns VBox status code. 948 * 948 * @param pThis The flow control graph. 949 949 * @param pFlowBb The basic block causing the indirect branch. 950 950 * @param pUVM The user mode VM handle. … … 1031 1031 * 1032 1032 * @returns VBox status code. 1033 * 1033 * @param pThis The flow control graph. 1034 1034 * @param pFlowBb The basic block causing the indirect branch. 1035 1035 * @param pUVM The user mode VM handle.
Note:
See TracChangeset
for help on using the changeset viewer.