* Copyright (c) 2021-2026 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "bytecode_optimizer/bytecodeopt_options.h"
#include "bytecode_optimizer/optimize_bytecode.h"
#include "compiler/compiler_logger.h"
#include "util/eheap.h"
#include "es2panda.h"
#include "util/arktsconfig.h"
#include "util/diagnosticEngine.h"
#include "util/generateBin.h"
#include "util/options.h"
#include "util/plugin.h"
#include "util/perfMetrics.h"
#include "libarkbase/os/stacktrace.h"
#include "generated/diagnostic.h"
#include <iostream>
#include <memory>
#include <optional>
namespace ark::es2panda::aot {
class MemManager {
public:
explicit MemManager()
{
ScopedAllocatorsManager::Initialize();
}
NO_COPY_SEMANTIC(MemManager);
NO_MOVE_SEMANTIC(MemManager);
~MemManager()
{
ScopedAllocatorsManager::Finalize();
}
};
static int CompileFromSource(es2panda::Compiler &compiler, es2panda::SourceFile &input, const util::Options &options,
util::DiagnosticEngine &diagnosticEngine)
{
auto programs = compiler.Compile(input, options, diagnosticEngine);
if (programs.size() == 0) {
const auto &err = compiler.GetError();
if (err.Type() == util::DiagnosticType::INVALID) {
if (diagnosticEngine.IsAnyError()) {
return 1;
}
return 0;
}
diagnosticEngine.Log(err);
return 1;
}
auto res = util::GenerateBinaryFiles(
programs, options,
[&diagnosticEngine](const diagnostic::DiagnosticKind &kind, const util::DiagnosticMessageParams ¶ms) {
diagnosticEngine.LogDiagnostic(kind, params);
});
return res;
}
using StringPairVector = std::vector<std::pair<std::string, std::string>>;
static void ReleaseInputs(std::vector<std::string *> &parserInputs)
{
for (auto *input : parserInputs) {
delete input;
}
parserInputs.clear();
}
static int CompileFromConfig(es2panda::Compiler &compiler, util::Options *options,
util::DiagnosticEngine &diagnosticEngine)
{
auto compilationList = FindProjectSources(options->ArkTSConfig());
if (compilationList.empty()) {
diagnosticEngine.LogDiagnostic(diagnostic::NO_INPUT, util::DiagnosticMessageParams {});
return 1;
}
std::vector<SourceFile> inputs {};
std::vector<std::string *> parserInputs;
unsigned int overallRes = 0;
for (auto &[src, dst] : compilationList) {
std::ifstream inputStream(src);
if (inputStream.fail()) {
diagnosticEngine.LogDiagnostic(diagnostic::OPEN_FAILED, util::DiagnosticMessageParams {src});
return 1;
}
std::stringstream ss;
ss << inputStream.rdbuf();
parserInputs.push_back(new std::string(ss.str()));
inputStream.close();
es2panda::SourceFile input(src, *parserInputs.back(), options->IsModule(), std::string_view(dst));
inputs.push_back(input);
}
for (auto &input : inputs) {
LOG_IF(options->IsListFiles(), INFO, ES2PANDA)
<< "> es2panda: compiling from '" << input.filePath << "' to '" << input.dest << "'";
options->SetOutput(std::string(input.dest));
auto res = CompileFromSource(compiler, input, *options, diagnosticEngine);
if (res != 0) {
diagnosticEngine.LogDiagnostic(diagnostic::COMPILE_FAILED,
util::DiagnosticMessageParams {input.filePath, input.dest});
overallRes |= static_cast<unsigned>(res);
}
}
ReleaseInputs(parserInputs);
return static_cast<int>(overallRes);
}
static std::optional<std::vector<util::Plugin>> InitializePlugins(std::vector<std::string> const &names,
util::DiagnosticEngine &diagnosticEngine)
{
std::vector<util::Plugin> res;
for (auto &name : names) {
auto plugin = util::Plugin(util::StringView {name});
if (!plugin.IsOk()) {
diagnosticEngine.LogDiagnostic(diagnostic::PLUGIN_LOAD_FAILED,
util::DiagnosticMessageParams {util::StringView(name)});
return std::nullopt;
}
plugin.Initialize();
res.push_back(std::move(plugin));
}
return {std::move(res)};
}
static int checkDoubleOutput(util::Options *options, util::DiagnosticEngine &diagnosticEngine)
{
if (!options->WasSetArktsconfig()) {
return 0;
}
std::string outdir = ParentPath(ark::os::GetAbsolutePath(options->ArkTSConfig().ConfigPath()));
std::string output =
ark::os::RemoveExtension(ark::es2panda::util::BaseName(options->SourceFileName())).append(".abc");
if (options->ArkTSConfig().OutDir() != outdir && options->GetOutput() != output) {
diagnosticEngine.LogDiagnostic(diagnostic::REWRITE_OUTPUT_IN_CLI,
ark::es2panda::util::DiagnosticMessageParams());
return 1;
}
return 0;
}
static int Run(Span<const char *const> args)
{
auto diagnosticEngine = util::DiagnosticEngine();
auto options = std::make_unique<util::Options>(args[0], diagnosticEngine);
if (!options->Parse(args)) {
diagnosticEngine.FlushDiagnostic();
return 1;
}
diagnosticEngine.SetWError(options->IsEtsWarningsWerror());
ark::Logger::ComponentMask mask {};
mask.set(ark::Logger::Component::ES2PANDA);
ark::Logger::InitializeStdLogging(options->LogLevel(), mask);
util::DiagnosticEngine::InitializeSignalHandlers();
auto pluginsOpt = InitializePlugins(options->GetPlugins(), diagnosticEngine);
if (!pluginsOpt.has_value()) {
diagnosticEngine.FlushDiagnostic();
return 1;
}
es2panda::Compiler compiler(options->GetExtension(), options->GetThread(), std::move(pluginsOpt.value()));
if (options->IsListPhases()) {
std::cerr << "Available phases:" << std::endl << compiler.GetPhasesList();
diagnosticEngine.FlushDiagnostic();
return 1;
}
int res;
if (options->GetCompilationMode() == CompilationMode::PROJECT) {
res = CompileFromConfig(compiler, options.get(), diagnosticEngine);
} else {
std::string sourceFile;
std::string_view parserInput;
if (options->GetCompilationMode() != CompilationMode::GEN_STD_LIB) {
sourceFile = options->SourceFileName();
auto [buf, size] = options->CStrParserInputContents();
parserInput = std::string_view(buf, size);
}
checkDoubleOutput(options.get(), diagnosticEngine);
es2panda::SourceFile input(sourceFile, parserInput, options->IsModule(), options->GetOutput());
res = CompileFromSource(compiler, input, *options.get(), diagnosticEngine);
}
if (options->IsDumpPerfMetrics()) {
util::DumpPerfMetrics();
}
diagnosticEngine.FlushDiagnostic();
return res;
}
}
int main(int argc, const char *argv[])
{
ark::es2panda::aot::MemManager mm;
return ark::es2panda::aot::Run(ark::Span<const char *const>(argv, argc));
}