Home
last modified time | relevance | path

Searched refs:ENUM_CODEGENOPT (Results 1 – 3 of 3) sorted by relevance

/external/clang/include/clang/Frontend/
DCodeGenOptions.def12 // Optionally, the user may also define ENUM_CODEGENOPT (for options
26 #ifndef ENUM_CODEGENOPT
27 # define ENUM_CODEGENOPT(Name, Type, Bits, Default) \
69 ENUM_CODEGENOPT(FPContractMode, FPContractModeKind, 2, FPC_On)
71 ENUM_CODEGENOPT(EmbedBitcode, EmbedBitcodeKind, 2, Embed_Off)
114 ENUM_CODEGENOPT(ObjCDispatchMethod, ObjCDispatchMethodKind, 2, Legacy)
121 ENUM_CODEGENOPT(ProfileInstr, ProfileInstrKind, 2, ProfileNone)
123 ENUM_CODEGENOPT(ProfileUse, ProfileInstrKind, 2, ProfileNone)
130 ENUM_CODEGENOPT(StructReturnConvention, StructReturnConventionKind, 2, SRCK_Default)
212 ENUM_CODEGENOPT(DebugInfo, codegenoptions::DebugInfoKind, 3, codegenoptions::NoDebugInfo)
[all …]
DCodeGenOptions.h33 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) macro
38 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) unsigned Name : Bits; macro
216 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) \ macro
/external/clang/lib/Frontend/
DCodeGenOptions.cpp17 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default); in CodeGenOptions() macro