Daniel Dunbar | 2fe63e6 | 2009-03-12 18:40:18 +0000 | [diff] [blame] | 1 | //===--- Action.cpp - Abstract compilation steps ------------------------*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "clang/Driver/Action.h" |
| 11 | |
| 12 | #include <cassert> |
| 13 | using namespace clang::driver; |
| 14 | |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 15 | Action::~Action() { |
Daniel Dunbar | 32c1a2a | 2010-03-11 18:04:58 +0000 | [diff] [blame] | 16 | if (OwnsInputs) { |
| 17 | for (iterator it = begin(), ie = end(); it != ie; ++it) |
| 18 | delete *it; |
| 19 | } |
Daniel Dunbar | 2154923 | 2009-03-18 02:55:38 +0000 | [diff] [blame] | 20 | } |
Daniel Dunbar | 85da007 | 2009-03-13 12:17:08 +0000 | [diff] [blame] | 21 | |
| 22 | const char *Action::getClassName(ActionClass AC) { |
| 23 | switch (AC) { |
| 24 | case InputClass: return "input"; |
| 25 | case BindArchClass: return "bind-arch"; |
Daniel Dunbar | 2093335 | 2009-03-13 17:52:07 +0000 | [diff] [blame] | 26 | case PreprocessJobClass: return "preprocessor"; |
| 27 | case PrecompileJobClass: return "precompiler"; |
| 28 | case AnalyzeJobClass: return "analyzer"; |
| 29 | case CompileJobClass: return "compiler"; |
| 30 | case AssembleJobClass: return "assembler"; |
| 31 | case LinkJobClass: return "linker"; |
Daniel Dunbar | 85da007 | 2009-03-13 12:17:08 +0000 | [diff] [blame] | 32 | case LipoJobClass: return "lipo"; |
| 33 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 34 | |
Daniel Dunbar | 85da007 | 2009-03-13 12:17:08 +0000 | [diff] [blame] | 35 | assert(0 && "invalid class"); |
| 36 | return 0; |
| 37 | } |
Daniel Dunbar | f40ed17 | 2009-03-13 23:08:03 +0000 | [diff] [blame] | 38 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 39 | InputAction::InputAction(const Arg &_Input, types::ID _Type) |
Daniel Dunbar | f40ed17 | 2009-03-13 23:08:03 +0000 | [diff] [blame] | 40 | : Action(InputClass, _Type), Input(_Input) { |
| 41 | } |
| 42 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 43 | BindArchAction::BindArchAction(Action *Input, const char *_ArchName) |
Daniel Dunbar | f40ed17 | 2009-03-13 23:08:03 +0000 | [diff] [blame] | 44 | : Action(BindArchClass, Input, Input->getType()), ArchName(_ArchName) { |
| 45 | } |
| 46 | |
| 47 | JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) |
| 48 | : Action(Kind, Input, Type) { |
| 49 | } |
| 50 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 51 | JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) |
Daniel Dunbar | f40ed17 | 2009-03-13 23:08:03 +0000 | [diff] [blame] | 52 | : Action(Kind, Inputs, Type) { |
| 53 | } |
| 54 | |
| 55 | PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) |
| 56 | : JobAction(PreprocessJobClass, Input, OutputType) { |
| 57 | } |
| 58 | |
| 59 | PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) |
| 60 | : JobAction(PrecompileJobClass, Input, OutputType) { |
| 61 | } |
| 62 | |
| 63 | AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) |
| 64 | : JobAction(AnalyzeJobClass, Input, OutputType) { |
| 65 | } |
| 66 | |
| 67 | CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) |
| 68 | : JobAction(CompileJobClass, Input, OutputType) { |
| 69 | } |
| 70 | |
| 71 | AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType) |
| 72 | : JobAction(AssembleJobClass, Input, OutputType) { |
| 73 | } |
| 74 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) |
Daniel Dunbar | f40ed17 | 2009-03-13 23:08:03 +0000 | [diff] [blame] | 76 | : JobAction(LinkJobClass, Inputs, Type) { |
| 77 | } |
| 78 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 79 | LipoJobAction::LipoJobAction(ActionList &Inputs, types::ID Type) |
Daniel Dunbar | f40ed17 | 2009-03-13 23:08:03 +0000 | [diff] [blame] | 80 | : JobAction(LipoJobClass, Inputs, Type) { |
| 81 | } |