Lines Matching refs:LLJITPlatform
238 enum class LLJITPlatform { Inactive, DetectHost, ORC, GenericIR }; enum
240 cl::opt<LLJITPlatform>
242 cl::init(LLJITPlatform::DetectHost),
243 cl::values(clEnumValN(LLJITPlatform::DetectHost, "DetectHost",
245 clEnumValN(LLJITPlatform::ORC, "ORC",
247 clEnumValN(LLJITPlatform::GenericIR, "GenericIR",
249 clEnumValN(LLJITPlatform::Inactive, "Inactive",
962 LLJITPlatform P = Platform; in runOrcJIT()
963 if (P == LLJITPlatform::DetectHost) { in runOrcJIT()
966 P = LLJITPlatform::ORC; in runOrcJIT()
968 P = LLJITPlatform::GenericIR; in runOrcJIT()
971 case LLJITPlatform::ORC: in runOrcJIT()
977 case LLJITPlatform::GenericIR: in runOrcJIT()
980 case LLJITPlatform::Inactive: in runOrcJIT()
995 if (P != LLJITPlatform::ORC) { in runOrcJIT()
1047 if (P == LLJITPlatform::ORC) { in runOrcJIT()