共用方式為


__getcallerseflags

Microsoft 專有的

傳回的 EFLAGS 值從呼叫者的內容。

unsigned int __getcallerseflags(void);

傳回值

EFLAGS 值從呼叫者的內容。

需求

內建

架構

__getcallerseflags

x86,x64

標頭檔 <intrin.h>

備註

只有使用與內建這個常式。

範例

// 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;
}
  

請參閱

參考

編譯器內建