Home
last modified time | relevance | path

Searched defs:FpoData (Results 1 – 3 of 3) 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-10.0/llvm/include/llvm/Object/
DCOFF.h1242 struct FpoData { struct
1243 support::ulittle32_t Offset; // ulOffStart: Offset 1st byte of function code
1244 support::ulittle32_t Size; // cbProcSize: # bytes in function
1245 support::ulittle32_t NumLocals; // cdwLocals: # bytes in locals/4
1246 support::ulittle16_t NumParams; // cdwParams: # bytes in params/4
1247 support::ulittle16_t Attributes;
1250 int getPrologSize() const { return Attributes & 0xF; } in getPrologSize()
1253 int getNumSavedRegs() const { return (Attributes >> 8) & 0x7; } in getNumSavedRegs()
1256 bool hasSEH() const { return (Attributes >> 9) & 1; } in hasSEH()
1259 bool useBP() const { return (Attributes >> 10) & 1; } in useBP()
[all …]
/external/llvm-project/llvm/include/llvm/Object/
DCOFF.h1253 struct FpoData { struct
1254 support::ulittle32_t Offset; // ulOffStart: Offset 1st byte of function code
1255 support::ulittle32_t Size; // cbProcSize: # bytes in function
1256 support::ulittle32_t NumLocals; // cdwLocals: # bytes in locals/4
1257 support::ulittle16_t NumParams; // cdwParams: # bytes in params/4
1258 support::ulittle16_t Attributes;
1261 int getPrologSize() const { return Attributes & 0xF; } in getPrologSize()
1264 int getNumSavedRegs() const { return (Attributes >> 8) & 0x7; } in getNumSavedRegs()
1267 bool hasSEH() const { return (Attributes >> 9) & 1; } in hasSEH()
1270 bool useBP() const { return (Attributes >> 10) & 1; } in useBP()
[all …]