freebsd_amp_hwpstate/include/clang/Driver/Job.h

124 lines
3.1 KiB
C
Raw Normal View History

2009-06-02 17:58:47 +00:00
//===--- Job.h - Commands to Execute ----------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef CLANG_DRIVER_JOB_H_
#define CLANG_DRIVER_JOB_H_
#include "clang/Driver/Util.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/Casting.h"
using llvm::isa;
using llvm::cast;
using llvm::cast_or_null;
using llvm::dyn_cast;
using llvm::dyn_cast_or_null;
namespace clang {
namespace driver {
2009-12-15 18:49:47 +00:00
class Command;
class Tool;
2009-06-02 17:58:47 +00:00
class Job {
public:
enum JobClass {
CommandClass,
JobListClass
};
private:
JobClass Kind;
protected:
Job(JobClass _Kind) : Kind(_Kind) {}
public:
virtual ~Job();
JobClass getKind() const { return Kind; }
/// addCommand - Append a command to the current job, which must be
/// either a piped job or a job list.
void addCommand(Command *C);
2009-10-14 18:03:49 +00:00
static bool classof(const Job *) { return true; }
2009-06-02 17:58:47 +00:00
};
/// Command - An executable path/name and argument vector to
/// execute.
class Command : public Job {
2009-07-04 13:58:54 +00:00
/// Source - The action which caused the creation of this job.
const Action &Source;
2009-12-15 18:49:47 +00:00
/// Tool - The tool which caused the creation of this job.
const Tool &Creator;
2009-06-02 17:58:47 +00:00
/// The executable to run.
const char *Executable;
/// The list of program arguments (not including the implicit first
/// argument, which will be the executable).
ArgStringList Arguments;
public:
2009-12-15 18:49:47 +00:00
Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
2009-07-04 13:58:54 +00:00
const ArgStringList &_Arguments);
/// getSource - Return the Action which caused the creation of this job.
const Action &getSource() const { return Source; }
2009-06-02 17:58:47 +00:00
2009-12-15 18:49:47 +00:00
/// getCreator - Return the Tool which caused the creation of this job.
const Tool &getCreator() const { return Creator; }
2009-06-02 17:58:47 +00:00
const char *getExecutable() const { return Executable; }
2009-07-04 13:58:54 +00:00
2009-06-02 17:58:47 +00:00
const ArgStringList &getArguments() const { return Arguments; }
2009-10-14 18:03:49 +00:00
static bool classof(const Job *J) {
return J->getKind() == CommandClass;
2009-06-02 17:58:47 +00:00
}
static bool classof(const Command *) { return true; }
};
/// JobList - A sequence of jobs to perform.
class JobList : public Job {
public:
typedef llvm::SmallVector<Job*, 4> list_type;
typedef list_type::size_type size_type;
typedef list_type::iterator iterator;
typedef list_type::const_iterator const_iterator;
private:
list_type Jobs;
public:
JobList();
2010-03-16 16:52:15 +00:00
virtual ~JobList();
2009-06-02 17:58:47 +00:00
2010-03-16 16:52:15 +00:00
/// Add a job to the list (taking ownership).
2009-06-02 17:58:47 +00:00
void addJob(Job *J) { Jobs.push_back(J); }
const list_type &getJobs() const { return Jobs; }
size_type size() const { return Jobs.size(); }
iterator begin() { return Jobs.begin(); }
const_iterator begin() const { return Jobs.begin(); }
iterator end() { return Jobs.end(); }
const_iterator end() const { return Jobs.end(); }
2009-10-14 18:03:49 +00:00
static bool classof(const Job *J) {
return J->getKind() == JobListClass;
2009-06-02 17:58:47 +00:00
}
static bool classof(const JobList *) { return true; }
};
2009-10-14 18:03:49 +00:00
2009-06-02 17:58:47 +00:00
} // end namespace driver
} // end namespace clang
#endif