Changed namespaces for LLVM related stuff
This commit is contained in:
parent
3c30c47c90
commit
8b9775e06b
|
@ -47,7 +47,7 @@
|
||||||
#include <iss/debugger/riscv_target_adapter.h>
|
#include <iss/debugger/riscv_target_adapter.h>
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace vm {
|
namespace llvm {
|
||||||
namespace fp_impl {
|
namespace fp_impl {
|
||||||
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
||||||
}
|
}
|
||||||
|
@ -91,7 +91,7 @@ protected:
|
||||||
|
|
||||||
void setup_module(Module* m) override {
|
void setup_module(Module* m) override {
|
||||||
super::setup_module(m);
|
super::setup_module(m);
|
||||||
iss::vm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
iss::llvm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
||||||
|
|
|
@ -44,7 +44,7 @@ extern "C" {
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace vm {
|
namespace llvm {
|
||||||
namespace fp_impl {
|
namespace fp_impl {
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
#include <iss/debugger/riscv_target_adapter.h>
|
#include <iss/debugger/riscv_target_adapter.h>
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace vm {
|
namespace llvm {
|
||||||
namespace fp_impl {
|
namespace fp_impl {
|
||||||
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
||||||
}
|
}
|
||||||
|
@ -57,11 +57,11 @@ namespace rv32gc {
|
||||||
using namespace iss::arch;
|
using namespace iss::arch;
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace iss::debugger;
|
using namespace iss::debugger;
|
||||||
using namespace iss::vm::llvm;
|
using namespace iss::llvm;
|
||||||
|
|
||||||
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
||||||
public:
|
public:
|
||||||
using super = typename iss::vm::llvm::vm_base<ARCH>;
|
using super = typename iss::llvm::vm_base<ARCH>;
|
||||||
using virt_addr_t = typename super::virt_addr_t;
|
using virt_addr_t = typename super::virt_addr_t;
|
||||||
using phys_addr_t = typename super::phys_addr_t;
|
using phys_addr_t = typename super::phys_addr_t;
|
||||||
using code_word_t = typename super::code_word_t;
|
using code_word_t = typename super::code_word_t;
|
||||||
|
@ -91,7 +91,7 @@ protected:
|
||||||
|
|
||||||
void setup_module(Module* m) override {
|
void setup_module(Module* m) override {
|
||||||
super::setup_module(m);
|
super::setup_module(m);
|
||||||
iss::vm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
iss::llvm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
#include <iss/debugger/riscv_target_adapter.h>
|
#include <iss/debugger/riscv_target_adapter.h>
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace vm {
|
namespace llvm {
|
||||||
namespace fp_impl {
|
namespace fp_impl {
|
||||||
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
||||||
}
|
}
|
||||||
|
@ -57,11 +57,11 @@ namespace rv32imac {
|
||||||
using namespace iss::arch;
|
using namespace iss::arch;
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace iss::debugger;
|
using namespace iss::debugger;
|
||||||
using namespace iss::vm::llvm;
|
using namespace iss::llvm;
|
||||||
|
|
||||||
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
||||||
public:
|
public:
|
||||||
using super = typename iss::vm::llvm::vm_base<ARCH>;
|
using super = typename iss::llvm::vm_base<ARCH>;
|
||||||
using virt_addr_t = typename super::virt_addr_t;
|
using virt_addr_t = typename super::virt_addr_t;
|
||||||
using phys_addr_t = typename super::phys_addr_t;
|
using phys_addr_t = typename super::phys_addr_t;
|
||||||
using code_word_t = typename super::code_word_t;
|
using code_word_t = typename super::code_word_t;
|
||||||
|
@ -91,7 +91,7 @@ protected:
|
||||||
|
|
||||||
void setup_module(Module* m) override {
|
void setup_module(Module* m) override {
|
||||||
super::setup_module(m);
|
super::setup_module(m);
|
||||||
iss::vm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
iss::llvm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
#include <iss/debugger/riscv_target_adapter.h>
|
#include <iss/debugger/riscv_target_adapter.h>
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace vm {
|
namespace llvm {
|
||||||
namespace fp_impl {
|
namespace fp_impl {
|
||||||
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
||||||
}
|
}
|
||||||
|
@ -57,11 +57,11 @@ namespace rv64gc {
|
||||||
using namespace iss::arch;
|
using namespace iss::arch;
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace iss::debugger;
|
using namespace iss::debugger;
|
||||||
using namespace iss::vm::llvm;
|
using namespace iss::llvm;
|
||||||
|
|
||||||
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
||||||
public:
|
public:
|
||||||
using super = typename iss::vm::llvm::vm_base<ARCH>;
|
using super = typename iss::llvm::vm_base<ARCH>;
|
||||||
using virt_addr_t = typename super::virt_addr_t;
|
using virt_addr_t = typename super::virt_addr_t;
|
||||||
using phys_addr_t = typename super::phys_addr_t;
|
using phys_addr_t = typename super::phys_addr_t;
|
||||||
using code_word_t = typename super::code_word_t;
|
using code_word_t = typename super::code_word_t;
|
||||||
|
@ -91,7 +91,7 @@ protected:
|
||||||
|
|
||||||
void setup_module(Module* m) override {
|
void setup_module(Module* m) override {
|
||||||
super::setup_module(m);
|
super::setup_module(m);
|
||||||
iss::vm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
iss::llvm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
||||||
|
|
|
@ -47,7 +47,7 @@
|
||||||
#include <iss/debugger/riscv_target_adapter.h>
|
#include <iss/debugger/riscv_target_adapter.h>
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace vm {
|
namespace llvm {
|
||||||
namespace fp_impl {
|
namespace fp_impl {
|
||||||
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
void add_fp_functions_2_module(llvm::Module *, unsigned, unsigned);
|
||||||
}
|
}
|
||||||
|
@ -57,11 +57,11 @@ namespace rv64i {
|
||||||
using namespace iss::arch;
|
using namespace iss::arch;
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace iss::debugger;
|
using namespace iss::debugger;
|
||||||
using namespace iss::vm::llvm;
|
using namespace iss::llvm;
|
||||||
|
|
||||||
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
template <typename ARCH> class vm_impl : public vm_base<ARCH> {
|
||||||
public:
|
public:
|
||||||
using super = typename iss::vm::llvm::vm_base<ARCH>;
|
using super = typename iss::llvm::vm_base<ARCH>;
|
||||||
using virt_addr_t = typename super::virt_addr_t;
|
using virt_addr_t = typename super::virt_addr_t;
|
||||||
using phys_addr_t = typename super::phys_addr_t;
|
using phys_addr_t = typename super::phys_addr_t;
|
||||||
using code_word_t = typename super::code_word_t;
|
using code_word_t = typename super::code_word_t;
|
||||||
|
@ -91,7 +91,7 @@ protected:
|
||||||
|
|
||||||
void setup_module(Module* m) override {
|
void setup_module(Module* m) override {
|
||||||
super::setup_module(m);
|
super::setup_module(m);
|
||||||
iss::vm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
iss::llvm::fp_impl::add_fp_functions_2_module(m, traits<ARCH>::FP_REGS_SIZE, traits<ARCH>::XLEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
inline Value *gen_choose(Value *cond, Value *trueVal, Value *falseVal, unsigned size) {
|
||||||
|
|
Loading…
Reference in New Issue