Files
swift-mirror/include/swift/Basic/OptimizationMode.h
Erik Eckstein 90c21be191 Unify the implementation of optimization mode in various option classes.
This commit is mostly refactoring.

*) Introduce a new OptimizationMode enum and use that in SILOptions and IRGenOptions
*) Allow the optimization mode also be specified for specific SILFunctions. This is not used in this commit yet and thus still a NFC.

Also, fixes a minor bug: we didn’t run mandatory IRGen passes for functions with @_semantics("optimize.sil.never")
2017-11-14 11:25:02 -08:00

33 lines
994 B
C++

//===-------- OptimizationMode.h - Swift optimization modes -----*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_BASIC_OPTIMIZATIONMODE_H
#define SWIFT_BASIC_OPTIMIZATIONMODE_H
#include "llvm/Support/DataTypes.h"
namespace swift {
// The optimization mode specified on the command line or with function
// attributes.
enum class OptimizationMode : uint8_t {
NotSet = 0,
NoOptimization = 1, // -Onone
ForSpeed = 2, // -Ospeed == -O
ForSize = 3, // -Osize
LastMode = ForSize
};
} // end namespace swift
#endif // SWIFT_BASIC_OPTIMIZATIONMODE_H