mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The C++-based driver is deprecated and this will help reduce the code surface that requires maintenance as the legacy driver is fully sunset.
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
//===--- Action.cpp - Abstract compilation steps --------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/Driver/Action.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
using namespace swift::driver;
|
|
using namespace llvm::opt;
|
|
|
|
const char *Action::getClassName(Kind AC) {
|
|
switch (AC) {
|
|
case Kind::Input: return "input";
|
|
case Kind::CompileJob: return "compile";
|
|
case Kind::InterpretJob: return "interpret";
|
|
case Kind::BackendJob: return "backend";
|
|
case Kind::MergeModuleJob: return "merge-module";
|
|
case Kind::ModuleWrapJob: return "modulewrap";
|
|
case Kind::AutolinkExtractJob: return "swift-autolink-extract";
|
|
case Kind::REPLJob: return "repl";
|
|
case Kind::DynamicLinkJob: return "link";
|
|
case Kind::StaticLinkJob: return "static-link";
|
|
case Kind::GenerateDSYMJob: return "generate-dSYM";
|
|
case Kind::VerifyDebugInfoJob: return "verify-debug-info";
|
|
case Kind::GeneratePCHJob: return "generate-pch";
|
|
case Kind::VerifyModuleInterfaceJob: return "verify-module-interface";
|
|
}
|
|
|
|
llvm_unreachable("invalid class");
|
|
}
|
|
|
|
void InputAction::anchor() {}
|
|
|
|
void JobAction::anchor() {}
|
|
|
|
void CompileJobAction::anchor() {}
|
|
|
|
void InterpretJobAction::anchor() {}
|
|
|
|
void BackendJobAction::anchor() {}
|
|
|
|
void MergeModuleJobAction::anchor() {}
|
|
|
|
void ModuleWrapJobAction::anchor() {}
|
|
|
|
void AutolinkExtractJobAction::anchor() {}
|
|
|
|
void REPLJobAction::anchor() {}
|
|
|
|
void DynamicLinkJobAction::anchor() {}
|
|
|
|
void StaticLinkJobAction::anchor() {}
|
|
|
|
void GenerateDSYMJobAction::anchor() {}
|
|
|
|
void VerifyDebugInfoJobAction::anchor() {}
|
|
|
|
void GeneratePCHJobAction::anchor() {}
|
|
|
|
void VerifyModuleInterfaceJobAction::anchor() {}
|