Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The latest version of this topic can be found at __getcallerseflags.
Microsoft Specific**
Returns the EFLAGS value from the caller's context.
Syntax
unsigned int __getcallerseflags(void);
Return Value
EFLAGS value from the caller's context.
Requirements
Intrinsic | Architecture |
---|---|
__getcallerseflags |
x86, x64 |
Header file <intrin.h>
Remarks
This routine is only available as an intrinsic.
Example
// getcallerseflags.cpp
// processor: x86, x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic(__getcallerseflags)
unsigned int g()
{
unsigned int EFLAGS = __getcallerseflags();
printf_s("EFLAGS 0x%x\n", EFLAGS);
return EFLAGS;
}
unsigned int f()
{
return g();
}
int main()
{
unsigned int i;
i = f();
i = g();
return 0;
}
EFLAGS 0x202
EFLAGS 0x206