Adding support for detecting the save/rest fpr and vmx blocks.

This commit is contained in:
Ben Vanik
2013-05-31 01:53:30 -07:00
parent e6195c4086
commit 38efd3837d
3 changed files with 498 additions and 31 deletions

View File

@@ -108,6 +108,10 @@ public:
enum Flags {
kFlagSaveGprLr = 1 << 1,
kFlagRestGprLr = 1 << 2,
kFlagSaveFpr = 1 << 3,
kFlagRestFpr = 1 << 4,
kFlagSaveVmx = 1 << 5,
kFlagRestVmx = 1 << 6,
};
FunctionSymbol();