Files
swift-mirror/include/swift/AST/SILOptions.h
Roman Levenstein 354fd29f31 Add a new -assume-single-threaded option
This is a hidden option. It should be used like: -assume-single-threaded

When this function is provided, the compiler assumes that the code will be executed in the single threaded mode. It then performs certain optimizations that can benefit from it, e.g. it  marks as non-atomic all reference counting instructions in the user code being compiled.
2016-12-05 10:05:34 -08:00

130 lines
3.8 KiB
C++

//===--- SILOptions.h - Swift Language SILGen and SIL options ---*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 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
//
//===----------------------------------------------------------------------===//
//
// This file defines the options which control the generation, processing,
// and optimization of SIL.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_AST_SILOPTIONS_H
#define SWIFT_AST_SILOPTIONS_H
#include "llvm/ADT/StringRef.h"
#include <string>
#include <climits>
namespace swift {
class SILOptions {
public:
/// Controls the aggressiveness of the performance inliner.
int InlineThreshold = -1;
/// The number of threads for multi-threaded code generation.
int NumThreads = 0;
enum LinkingMode {
/// Skip SIL linking.
LinkNone,
/// Perform normal SIL linking.
LinkNormal,
/// Link all functions during SIL linking.
LinkAll
};
/// Representation of optimization modes.
enum class SILOptMode: unsigned {
NotSet,
None,
Debug,
Optimize,
OptimizeUnchecked
};
/// Controls how to perform SIL linking.
LinkingMode LinkMode = LinkNormal;
/// Remove all runtime assertions during optimizations.
bool RemoveRuntimeAsserts = false;
/// Controls whether the SIL ARC optimizations are run.
bool EnableARCOptimizations = true;
/// Should we run any SIL performance optimizations
///
/// Useful when you want to enable -O LLVM opts but not -O SIL opts.
bool DisableSILPerfOptimizations = false;
/// Controls whether or not paranoid verification checks are run.
bool VerifyAll = false;
/// Are we debugging sil serialization.
bool DebugSerialization = false;
/// Whether to dump verbose SIL with scope and location information.
bool EmitVerboseSIL = false;
/// Optimization mode being used.
SILOptMode Optimization = SILOptMode::NotSet;
enum AssertConfiguration: unsigned {
// Used by standard library code to distinguish between a debug and release
// build.
Debug = 0, // Enables all asserts.
Release = 1, // Disables asserts.
Unchecked = 2, // Disables asserts, preconditions, and runtime checks.
// Leave the assert_configuration instruction around.
DisableReplacement = UINT_MAX
};
/// The assert configuration controls how assertions behave.
unsigned AssertConfig = Debug;
/// Should we print out instruction counts if -print-stats is passed in?
bool PrintInstCounts = false;
/// Instrument code to generate profiling information.
bool GenerateProfile = false;
/// Emit a mapping of profile counters for use in coverage.
bool EmitProfileCoverageMapping = false;
/// Should we use a pass pipeline passed in via a json file? Null by default.
llvm::StringRef ExternalPassPipelineFilename;
/// Emit captures and function contexts using +0 caller-guaranteed ARC
/// conventions.
bool EnableGuaranteedClosureContexts = false;
/// Don't generate code using partial_apply in SIL generation.
bool DisableSILPartialApply = false;
/// The name of the SIL outputfile if compiled with SIL debugging (-gsil).
std::string SILOutputFileNameForDebugging;
/// If set to true, compile with the SIL Ownership Model enabled.
bool EnableSILOwnership = false;
/// When parsing SIL, assume unqualified ownership.
bool AssumeUnqualifiedOwnershipWhenParsing = false;
/// Assume that code will be executed in a single-threaded environment.
bool AssumeSingleThreaded = false;
};
} // end namespace swift
#endif