ETISS 0.11.2
ExtendableTranslatingInstructionSetSimulator(version0.11.2)
Loading...
Searching...
No Matches
JIT.cpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSD-3-Clause
2//
3// This file is part of ETISS. It is licensed under the BSD 3-Clause License; you may not use this file except in
4// compliance with the License. You should have received a copy of the license along with this project. If not, see the
5// LICENSE file.
14#include "etiss/JIT.h"
15
16using namespace etiss;
17
18JIT::JIT(std::string name) : name_(name) {}
19
21
22std::string JIT::getName()
23{
24 return name_;
25}
JIT compiler interface definition.
JIT(std::string name)
Definition JIT.cpp:18
std::string getName()
returns the JIT instance name previously passed to the constructor
Definition JIT.cpp:22
virtual ~JIT()
Definition JIT.cpp:20
std::string name_
Definition JIT.h:62
forwards: include/jit/*
Definition Benchmark.h:17