mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
50 lines
1.7 KiB
C++
50 lines
1.7 KiB
C++
//===--- Immediate.h - Entry point for swift immediate mode -----*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This is the entry point to the swift immediate mode, which takes a
|
|
// source file, and runs it immediately using the JIT.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_IMMEDIATE_IMMEDIATE_H
|
|
#define SWIFT_IMMEDIATE_IMMEDIATE_H
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace swift {
|
|
class CompilerInstance;
|
|
class IRGenOptions;
|
|
class SILOptions;
|
|
class SILModule;
|
|
|
|
// Using LLVM containers to store command-line arguments turns out
|
|
// to be a lose, because LLVM's execution engine demands this vector
|
|
// type. We can flip the typedef if/when the LLVM interface
|
|
// supports LLVM containers.
|
|
using ProcessCmdLine = std::vector<std::string>;
|
|
|
|
|
|
/// Attempt to run the script identified by the given compiler instance.
|
|
///
|
|
/// \return the result returned from main(), if execution succeeded
|
|
int RunImmediately(CompilerInstance &CI, const ProcessCmdLine &CmdLine,
|
|
const IRGenOptions &IRGenOpts, const SILOptions &SILOpts,
|
|
std::unique_ptr<SILModule> &&SM);
|
|
|
|
int RunImmediatelyFromAST(CompilerInstance &CI);
|
|
|
|
} // end namespace swift
|
|
|
|
#endif // SWIFT_IMMEDIATE_IMMEDIATE_H
|