16 references to MonoAotMode
MonoAOTCompiler (16)
MonoAOTCompiler.cs (16)
198public string Mode { get; set; } = nameof(MonoAotMode.Normal); 300private MonoAotMode parsedAotMode; 376Log.LogError($"Unknown Mode value: {Mode}. '{nameof(Mode)}' must be one of: {string.Join(",", Enum.GetNames(typeof(MonoAotMode)))}"); 403if (parsedAotMode == MonoAotMode.LLVMOnly && !UseLLVM) 405throw new LogAsErrorException($"'{nameof(UseLLVM)}' must be true when '{nameof(Mode)}' is {nameof(MonoAotMode.LLVMOnly)}."); 600if (parsedAotMode == MonoAotMode.LLVMOnly) 771if (parsedAotMode == MonoAotMode.LLVMOnly || parsedAotMode == MonoAotMode.LLVMOnlyInterp) 780if (parsedAotMode == MonoAotMode.LLVMOnlyInterp) 797if (parsedAotMode == MonoAotMode.Full || parsedAotMode == MonoAotMode.FullInterp) 802if (parsedAotMode == MonoAotMode.Hybrid) 807if (parsedAotMode == MonoAotMode.FullInterp || parsedAotMode == MonoAotMode.JustInterp) 1130if (parsedAotMode == MonoAotMode.LLVMOnly) 1135if (parsedAotMode == MonoAotMode.LLVMOnlyInterp)