forked from OSchip/llvm-project
196 lines
4.6 KiB
TableGen
196 lines
4.6 KiB
TableGen
def GnuExtensions : StandardSpec<"GNUExtensions"> {
|
|
NamedType CookieIOFunctionsT = NamedType<"cookie_io_functions_t">;
|
|
HeaderSpec CType = HeaderSpec<
|
|
"ctype.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"toascii",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<IntType>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
HeaderSpec Math = HeaderSpec<
|
|
"math.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"sincosf",
|
|
RetValSpec<VoidType>,
|
|
[ArgSpec<FloatType>, ArgSpec<FloatPtr>, ArgSpec<FloatPtr>]
|
|
>,
|
|
FunctionSpec<"exp10f", RetValSpec<FloatType>, [ArgSpec<FloatType>]>,
|
|
]
|
|
>;
|
|
|
|
NamedType CpuSetT = NamedType<"cpu_set_t">;
|
|
PtrType CpuSetPtr = PtrType<CpuSetT>;
|
|
ConstType ConstCpuSetPtr = ConstType<CpuSetPtr>;
|
|
HeaderSpec Sched = HeaderSpec<
|
|
"sched.h",
|
|
[], // Macros
|
|
[PidT, SizeTType, CpuSetT], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"sched_getaffinity",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<PidT>, ArgSpec<SizeTType>, ArgSpec<CpuSetPtr>]
|
|
>,
|
|
FunctionSpec<
|
|
"sched_setaffinity",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<PidT>, ArgSpec<SizeTType>, ArgSpec<ConstCpuSetPtr>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
HeaderSpec String = HeaderSpec<
|
|
"string.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"memrchr",
|
|
RetValSpec<VoidPtr>,
|
|
[ArgSpec<VoidPtr>, ArgSpec<IntType>, ArgSpec<SizeTType>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
HeaderSpec FEnv = HeaderSpec<
|
|
"fenv.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"fedisableexcept",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<IntType>]
|
|
>,
|
|
FunctionSpec<
|
|
"feenableexcept",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<IntType>]
|
|
>,
|
|
FunctionSpec<
|
|
"fegetexcept",
|
|
RetValSpec<IntType>,
|
|
[]
|
|
>
|
|
]
|
|
>;
|
|
|
|
HeaderSpec StdIO = HeaderSpec<
|
|
"stdio.h",
|
|
[], // Macros
|
|
[CookieIOFunctionsT], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"clearerr_unlocked",
|
|
RetValSpec<VoidType>,
|
|
[ArgSpec<FILEPtr>]
|
|
>,
|
|
FunctionSpec<
|
|
"feof_unlocked",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<FILEPtr>]
|
|
>,
|
|
FunctionSpec<
|
|
"ferror_unlocked",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<FILEPtr>]
|
|
>,
|
|
FunctionSpec<
|
|
"fopencookie",
|
|
RetValSpec<FILEPtr>,
|
|
[ArgSpec<VoidPtr>, ArgSpec<ConstCharPtr>, ArgSpec<CookieIOFunctionsT>]
|
|
>,
|
|
FunctionSpec<
|
|
"fread_unlocked",
|
|
RetValSpec<SizeTType>,
|
|
[ArgSpec<VoidRestrictedPtr>,
|
|
ArgSpec<SizeTType>,
|
|
ArgSpec<SizeTType>,
|
|
ArgSpec<FILERestrictedPtr>]
|
|
>,
|
|
FunctionSpec<
|
|
"fwrite_unlocked",
|
|
RetValSpec<SizeTType>,
|
|
[ArgSpec<ConstVoidRestrictedPtr>,
|
|
ArgSpec<SizeTType>,
|
|
ArgSpec<SizeTType>,
|
|
ArgSpec<FILERestrictedPtr>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
HeaderSpec PThread = HeaderSpec<
|
|
"pthread.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"pthread_setname_np",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<PThreadTType>, ArgSpec<ConstCharPtr>]
|
|
>,
|
|
FunctionSpec<
|
|
"pthread_getname_np",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<PThreadTType>, ArgSpec<CharPtr>, ArgSpec<SizeTType>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
HeaderSpec SendFile = HeaderSpec<
|
|
"sys/sendfile.h",
|
|
[], // Macros
|
|
[OffTType, SizeTType, SSizeTType,], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"sendfile",
|
|
RetValSpec<SSizeTType>,
|
|
[ArgSpec<IntType>, ArgSpec<IntType>, ArgSpec<OffTPtr>, ArgSpec<SizeTType>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
HeaderSpec UniStd = HeaderSpec<
|
|
"unistd.h",
|
|
[], // Macros
|
|
[], // Types
|
|
[], // Enumerations
|
|
[
|
|
FunctionSpec<
|
|
"dup2",
|
|
RetValSpec<IntType>,
|
|
[ArgSpec<IntType>, ArgSpec<IntType>, ArgSpec<IntType>]
|
|
>,
|
|
]
|
|
>;
|
|
|
|
let Headers = [
|
|
CType,
|
|
FEnv,
|
|
Math,
|
|
PThread,
|
|
Sched,
|
|
SendFile,
|
|
StdIO,
|
|
String,
|
|
UniStd,
|
|
];
|
|
}
|