-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
24 deletions.
There are no files selected for viewing
Submodule data-gui
updated
from 06c903 to 566865
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#if !defined(PIN_MACROS_H_) | ||
#define PIN_MACROS_H_ | ||
|
||
/** | ||
* We support Pin 3.11-97998 Documentation: | ||
* https://software.intel.com/sites/landingpage/pintool/docs/97998/Pin/html | ||
*/ | ||
#define INS_DIRECT INS_DirectControlFlowTargetAddress | ||
#define INS_IS_DIRECT INS_IsDirectControlFlow | ||
#define INS_IS_INDIRECT INS_IsIndirectControlFlow | ||
#define INS_HAS_TAKEN_BRANCH INS_IsValidForIpointTakenBranch | ||
#define INS_HAS_IPOINT_AFTER INS_IsValidForIpointAfter | ||
|
||
#endif |