Home
last modified time | relevance | path

Searched defs:FpoData (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/Object/
DCOFF.h1015 struct FpoData { struct
1016 support::ulittle32_t Offset; // ulOffStart: Offset 1st byte of function code
1017 support::ulittle32_t Size; // cbProcSize: # bytes in function
1018 support::ulittle32_t NumLocals; // cdwLocals: # bytes in locals/4
1019 support::ulittle16_t NumParams; // cdwParams: # bytes in params/4
1020 support::ulittle16_t Attributes;
1023 int getPrologSize() const { return Attributes & 0xF; } in getPrologSize()
1026 int getNumSavedRegs() const { return (Attributes >> 8) & 0x7; } in getNumSavedRegs()
1029 bool hasSEH() const { return (Attributes >> 9) & 1; } in hasSEH()
1032 bool useBP() const { return (Attributes >> 10) & 1; } in useBP()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DCOFF.h1210 struct FpoData { struct
1211 support::ulittle32_t Offset; // ulOffStart: Offset 1st byte of function code
1212 support::ulittle32_t Size; // cbProcSize: # bytes in function
1213 support::ulittle32_t NumLocals; // cdwLocals: # bytes in locals/4
1214 support::ulittle16_t NumParams; // cdwParams: # bytes in params/4
1215 support::ulittle16_t Attributes;
1218 int getPrologSize() const { return Attributes & 0xF; } in getPrologSize()
1221 int getNumSavedRegs() const { return (Attributes >> 8) & 0x7; } in getNumSavedRegs()
1224 bool hasSEH() const { return (Attributes >> 9) & 1; } in hasSEH()
1227 bool useBP() const { return (Attributes >> 10) & 1; } in useBP()
[all …]