Compare commits
	
		
			4 Commits
		
	
	
		
			ee2ded931d
			...
			c792f50427
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| c792f50427 | |||
| 6ed7eafc5d | |||
| 8a5fe58d51 | |||
| 16cd6d5ff5 | 
| @@ -142,15 +142,20 @@ else() | |||||||
| endif() | endif() | ||||||
|  |  | ||||||
| foreach(F IN LISTS TGC_SOURCES) | foreach(F IN LISTS TGC_SOURCES) | ||||||
|  |     if (${F} MATCHES ".*/arch/([^/]*)\.cpp") | ||||||
|         string(REGEX REPLACE  ".*/([^/]*)\.cpp"  "\\1" CORE_NAME_LC ${F}) |         string(REGEX REPLACE  ".*/([^/]*)\.cpp"  "\\1" CORE_NAME_LC ${F}) | ||||||
|         string(TOUPPER ${CORE_NAME_LC} CORE_NAME) |         string(TOUPPER ${CORE_NAME_LC} CORE_NAME) | ||||||
|         target_compile_definitions(${PROJECT_NAME} PRIVATE CORE_${CORE_NAME}) |         target_compile_definitions(${PROJECT_NAME} PRIVATE CORE_${CORE_NAME}) | ||||||
|  |     endif() | ||||||
| endforeach() | endforeach() | ||||||
|  |  | ||||||
| if(WITH_LLVM) | if(WITH_LLVM) | ||||||
|     target_compile_definitions(${PROJECT_NAME} PRIVATE WITH_LLVM) |     target_compile_definitions(${PROJECT_NAME} PRIVATE WITH_LLVM) | ||||||
|     target_link_libraries(${PROJECT_NAME} PUBLIC ${llvm_libs}) |     target_link_libraries(${PROJECT_NAME} PUBLIC ${llvm_libs}) | ||||||
| endif() | endif() | ||||||
|  | if(WITH_TCC) | ||||||
|  |     target_compile_definitions(${PROJECT_NAME} PRIVATE WITH_TCC) | ||||||
|  | endif() | ||||||
| # Links the target exe against the libraries | # Links the target exe against the libraries | ||||||
| target_link_libraries(${PROJECT_NAME} PUBLIC dbt-rise-tgc) | target_link_libraries(${PROJECT_NAME} PUBLIC dbt-rise-tgc) | ||||||
| if(TARGET Boost::program_options) | if(TARGET Boost::program_options) | ||||||
| @@ -181,9 +186,11 @@ if(TARGET scc-sysc) | |||||||
|     target_compile_definitions(${PROJECT_NAME} PUBLIC WITH_SYSTEMC) |     target_compile_definitions(${PROJECT_NAME} PUBLIC WITH_SYSTEMC) | ||||||
|     target_compile_definitions(${PROJECT_NAME} PRIVATE CORE_${CORE_NAME}) |     target_compile_definitions(${PROJECT_NAME} PRIVATE CORE_${CORE_NAME}) | ||||||
|     foreach(F IN LISTS TGC_SOURCES) |     foreach(F IN LISTS TGC_SOURCES) | ||||||
|  |         if (${F} MATCHES ".*/arch/([^/]*)\.cpp") | ||||||
|             string(REGEX REPLACE  ".*/([^/]*)\.cpp"  "\\1" CORE_NAME_LC ${F}) |             string(REGEX REPLACE  ".*/([^/]*)\.cpp"  "\\1" CORE_NAME_LC ${F}) | ||||||
|             string(TOUPPER ${CORE_NAME_LC} CORE_NAME) |             string(TOUPPER ${CORE_NAME_LC} CORE_NAME) | ||||||
|             target_compile_definitions(${PROJECT_NAME} PRIVATE CORE_${CORE_NAME}) |             target_compile_definitions(${PROJECT_NAME} PRIVATE CORE_${CORE_NAME}) | ||||||
|  |         endif() | ||||||
|     endforeach() |     endforeach() | ||||||
|     target_link_libraries(${PROJECT_NAME} PUBLIC dbt-rise-tgc scc-sysc) |     target_link_libraries(${PROJECT_NAME} PUBLIC dbt-rise-tgc scc-sysc) | ||||||
|     if(WITH_LLVM) |     if(WITH_LLVM) | ||||||
|   | |||||||
| @@ -55,10 +55,12 @@ using namespace iss::debugger; | |||||||
|  |  | ||||||
| template <typename ARCH> class vm_impl : public iss::tcc::vm_base<ARCH> { | template <typename ARCH> class vm_impl : public iss::tcc::vm_base<ARCH> { | ||||||
| public: | public: | ||||||
|  |     using traits = arch::traits<ARCH>; | ||||||
|     using super       = typename iss::tcc::vm_base<ARCH>; |     using super       = typename iss::tcc::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; | ||||||
|  |     using mem_type_e  = typename traits::mem_type_e;     | ||||||
|     using addr_t      = typename super::addr_t; |     using addr_t      = typename super::addr_t; | ||||||
|     using tu_builder  = typename super::tu_builder; |     using tu_builder  = typename super::tu_builder; | ||||||
|  |  | ||||||
| @@ -82,7 +84,7 @@ protected: | |||||||
|     using compile_ret_t = std::tuple<continuation_e>; |     using compile_ret_t = std::tuple<continuation_e>; | ||||||
|     using compile_func = compile_ret_t (this_class::*)(virt_addr_t &pc, code_word_t instr, tu_builder&); |     using compile_func = compile_ret_t (this_class::*)(virt_addr_t &pc, code_word_t instr, tu_builder&); | ||||||
|  |  | ||||||
|     inline const char *name(size_t index){return traits<ARCH>::reg_aliases.at(index);} |     inline const char *name(size_t index){return traits::reg_aliases.at(index);} | ||||||
|  |  | ||||||
|     void setup_module(std::string m) override { |     void setup_module(std::string m) override { | ||||||
|         super::setup_module(m); |         super::setup_module(m); | ||||||
| @@ -104,10 +106,10 @@ protected: | |||||||
|  |  | ||||||
|     inline void gen_set_pc(tu_builder& tu, virt_addr_t pc, unsigned reg_num) { |     inline void gen_set_pc(tu_builder& tu, virt_addr_t pc, unsigned reg_num) { | ||||||
|         switch(reg_num){ |         switch(reg_num){ | ||||||
|         case traits<ARCH>::NEXT_PC: |         case traits::NEXT_PC: | ||||||
|             tu("*next_pc = {:#x};", pc.val); |             tu("*next_pc = {:#x};", pc.val); | ||||||
|             break; |             break; | ||||||
|         case traits<ARCH>::PC: |         case traits::PC: | ||||||
|             tu("*pc = {:#x};", pc.val); |             tu("*pc = {:#x};", pc.val); | ||||||
|             break; |             break; | ||||||
|         default: |         default: | ||||||
| @@ -123,7 +125,7 @@ protected: | |||||||
|     // enum { MASK16 = 0b1111110001100011, MASK32 = 0b11111111111100000111000001111111 }; |     // enum { MASK16 = 0b1111110001100011, MASK32 = 0b11111111111100000111000001111111 }; | ||||||
|     enum { MASK16 = 0b1111111111111111, MASK32 = 0b11111111111100000111000001111111 }; |     enum { MASK16 = 0b1111111111111111, MASK32 = 0b11111111111100000111000001111111 }; | ||||||
|     enum { EXTR_MASK16 = MASK16 >> 2, EXTR_MASK32 = MASK32 >> 2 }; |     enum { EXTR_MASK16 = MASK16 >> 2, EXTR_MASK32 = MASK32 >> 2 }; | ||||||
|     enum { LUT_SIZE = 1 << util::bit_count(EXTR_MASK32), LUT_SIZE_C = 1 << util::bit_count(EXTR_MASK16) }; |     enum { LUT_SIZE = 1 << util::bit_count(static_cast<uint32_t>(EXTR_MASK32)), LUT_SIZE_C = 1 << util::bit_count(static_cast<uint32_t>(EXTR_MASK16)) }; | ||||||
|  |  | ||||||
|     std::array<compile_func, LUT_SIZE> lut; |     std::array<compile_func, LUT_SIZE> lut; | ||||||
|  |  | ||||||
| @@ -170,6 +172,12 @@ protected: | |||||||
|         } |         } | ||||||
|         return lut_val; |         return lut_val; | ||||||
|     } |     } | ||||||
|  |     template<unsigned W, typename U, typename S = typename std::make_signed<U>::type> | ||||||
|  |     inline S sext(U from) { | ||||||
|  |         auto mask = (1ULL<<W) - 1; | ||||||
|  |         auto sign_mask = 1ULL<<(W-1); | ||||||
|  |         return (from & mask) | ((from & sign_mask) ? ~mask : 0); | ||||||
|  |     }     | ||||||
|  |  | ||||||
| private: | private: | ||||||
|     /**************************************************************************** |     /**************************************************************************** | ||||||
| @@ -185,14 +193,27 @@ private: | |||||||
|     const std::array<InstructionDesriptor, ${instructions.size}> instr_descr = {{ |     const std::array<InstructionDesriptor, ${instructions.size}> instr_descr = {{ | ||||||
|          /* entries are: size, valid value, valid mask, function ptr */<%instructions.each{instr -> %> |          /* entries are: size, valid value, valid mask, function ptr */<%instructions.each{instr -> %> | ||||||
|         /* instruction ${instr.instruction.name}, encoding '${instr.encoding}' */ |         /* instruction ${instr.instruction.name}, encoding '${instr.encoding}' */ | ||||||
|         {${instr.length}, 0b${instr.value}, 0b${instr.mask}, &this_class::__${generator.functionName(instr.name)}},<%}%> |         {${instr.length}, ${instr.encoding}, ${instr.mask}, &this_class::__${generator.functionName(instr.name)}},<%}%> | ||||||
|     }}; |     }}; | ||||||
|   |   | ||||||
|     /* instruction definitions */<%instructions.eachWithIndex{instr, idx -> %> |     /* instruction definitions */<%instructions.eachWithIndex{instr, idx -> %> | ||||||
|     /* instruction ${idx}: ${instr.name} */ |     /* instruction ${idx}: ${instr.name} */ | ||||||
|     compile_ret_t __${generator.functionName(instr.name)}(virt_addr_t& pc, code_word_t instr, tu_builder& tu){<%instr.code.eachLine{%> |     compile_ret_t __${generator.functionName(instr.name)}(virt_addr_t& pc, code_word_t instr, tu_builder& tu){ | ||||||
|  |         tu("${instr.name}_{:#010x}:", pc.val); | ||||||
|  |         vm_base<ARCH>::gen_sync(tu, PRE_SYNC,${idx}); | ||||||
|  |         <%instr.fields.eachLine{%>${it} | ||||||
|  |         <%}%>if(this->disass_enabled){ | ||||||
|  |             /* generate console output when executing the command */<%instr.disass.eachLine{%> | ||||||
|             ${it}<%}%> |             ${it}<%}%> | ||||||
|         } |         } | ||||||
|  |         auto cur_pc_val = tu.constant(pc.val, traits::reg_bit_widths[traits::PC]); | ||||||
|  |         pc=pc+4; | ||||||
|  |         tu.open_scope();<%instr.behavior.eachLine{%> | ||||||
|  |         ${it}<%}%> | ||||||
|  |         vm_base<ARCH>::gen_sync(tu, POST_SYNC,${idx}); | ||||||
|  |         gen_trap_check(tu); | ||||||
|  |         return returnValue; | ||||||
|  |     } | ||||||
|     <%}%> |     <%}%> | ||||||
|     /**************************************************************************** |     /**************************************************************************** | ||||||
|      * end opcode definitions |      * end opcode definitions | ||||||
| @@ -233,7 +254,7 @@ vm_impl<ARCH>::gen_single_inst_behavior(virt_addr_t &pc, unsigned int &inst_cnt, | |||||||
|     // we fetch at max 4 byte, alignment is 2 |     // we fetch at max 4 byte, alignment is 2 | ||||||
|     enum {TRAP_ID=1<<16}; |     enum {TRAP_ID=1<<16}; | ||||||
|     code_word_t insn = 0; |     code_word_t insn = 0; | ||||||
|     const typename traits<ARCH>::addr_t upper_bits = ~traits<ARCH>::PGMASK; |     const typename traits::addr_t upper_bits = ~traits::PGMASK; | ||||||
|     phys_addr_t paddr(pc); |     phys_addr_t paddr(pc); | ||||||
|     auto *const data = (uint8_t *)&insn; |     auto *const data = (uint8_t *)&insn; | ||||||
|     paddr = this->core.v2p(pc); |     paddr = this->core.v2p(pc); | ||||||
| @@ -260,13 +281,13 @@ vm_impl<ARCH>::gen_single_inst_behavior(virt_addr_t &pc, unsigned int &inst_cnt, | |||||||
|  |  | ||||||
| template <typename ARCH> void vm_impl<ARCH>::gen_raise_trap(tu_builder& tu, uint16_t trap_id, uint16_t cause) { | template <typename ARCH> void vm_impl<ARCH>::gen_raise_trap(tu_builder& tu, uint16_t trap_id, uint16_t cause) { | ||||||
|     tu("  *trap_state = {:#x};", 0x80 << 24 | (cause << 16) | trap_id); |     tu("  *trap_state = {:#x};", 0x80 << 24 | (cause << 16) | trap_id); | ||||||
|     tu.store(tu.constant(std::numeric_limits<uint32_t>::max(), 32),traits<ARCH>::LAST_BRANCH); |     tu.store(traits::LAST_BRANCH, tu.constant(std::numeric_limits<uint32_t>::max(), 32)); | ||||||
| } | } | ||||||
|  |  | ||||||
| template <typename ARCH> void vm_impl<ARCH>::gen_leave_trap(tu_builder& tu, unsigned lvl) { | template <typename ARCH> void vm_impl<ARCH>::gen_leave_trap(tu_builder& tu, unsigned lvl) { | ||||||
|     tu("leave_trap(core_ptr, {});", lvl); |     tu("leave_trap(core_ptr, {});", lvl); | ||||||
|     tu.store(tu.read_mem(traits<ARCH>::CSR, (lvl << 8) + 0x41, traits<ARCH>::XLEN),traits<ARCH>::NEXT_PC); |     tu.store(traits::NEXT_PC, tu.read_mem(traits::CSR, (lvl << 8) + 0x41, traits::XLEN)); | ||||||
|     tu.store(tu.constant(std::numeric_limits<uint32_t>::max(), 32),traits<ARCH>::LAST_BRANCH); |     tu.store(traits::LAST_BRANCH, tu.constant(std::numeric_limits<uint32_t>::max(), 32)); | ||||||
| } | } | ||||||
|  |  | ||||||
| template <typename ARCH> void vm_impl<ARCH>::gen_wait(tu_builder& tu, unsigned type) { | template <typename ARCH> void vm_impl<ARCH>::gen_wait(tu_builder& tu, unsigned type) { | ||||||
| @@ -274,8 +295,8 @@ template <typename ARCH> void vm_impl<ARCH>::gen_wait(tu_builder& tu, unsigned t | |||||||
|  |  | ||||||
| template <typename ARCH> void vm_impl<ARCH>::gen_trap_behavior(tu_builder& tu) { | template <typename ARCH> void vm_impl<ARCH>::gen_trap_behavior(tu_builder& tu) { | ||||||
|     tu("trap_entry:"); |     tu("trap_entry:"); | ||||||
|     tu("enter_trap(core_ptr, *trap_state, *pc);"); |     tu("enter_trap(core_ptr, *trap_state, *pc, 0);"); | ||||||
|     tu.store(tu.constant(std::numeric_limits<uint32_t>::max(),32),traits<ARCH>::LAST_BRANCH); |     tu.store(traits::LAST_BRANCH, tu.constant(std::numeric_limits<uint32_t>::max(),32)); | ||||||
|     tu("return *next_pc;"); |     tu("return *next_pc;"); | ||||||
| } | } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -41,8 +41,8 @@ using namespace iss::arch; | |||||||
|  |  | ||||||
| constexpr std::array<const char*, 36>    iss::arch::traits<iss::arch::tgc_c>::reg_names; | constexpr std::array<const char*, 36>    iss::arch::traits<iss::arch::tgc_c>::reg_names; | ||||||
| constexpr std::array<const char*, 36>    iss::arch::traits<iss::arch::tgc_c>::reg_aliases; | constexpr std::array<const char*, 36>    iss::arch::traits<iss::arch::tgc_c>::reg_aliases; | ||||||
| constexpr std::array<const uint32_t, 36> iss::arch::traits<iss::arch::tgc_c>::reg_bit_widths; | constexpr std::array<const uint32_t, 43> iss::arch::traits<iss::arch::tgc_c>::reg_bit_widths; | ||||||
| constexpr std::array<const uint32_t, 36> iss::arch::traits<iss::arch::tgc_c>::reg_byte_offsets; | constexpr std::array<const uint32_t, 43> iss::arch::traits<iss::arch::tgc_c>::reg_byte_offsets; | ||||||
|  |  | ||||||
| tgc_c::tgc_c()  = default; | tgc_c::tgc_c()  = default; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -53,12 +53,12 @@ template <> struct traits<tgc_c> { | |||||||
|     static constexpr std::array<const char*, 36> reg_aliases{ |     static constexpr std::array<const char*, 36> reg_aliases{ | ||||||
|         {"ZERO", "RA", "SP", "GP", "TP", "T0", "T1", "T2", "S0", "S1", "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "S2", "S3", "S4", "S5", "S6", "S7", "S8", "S9", "S10", "S11", "T3", "T4", "T5", "T6", "PC", "NEXT_PC", "PRIV", "DPC"}}; |         {"ZERO", "RA", "SP", "GP", "TP", "T0", "T1", "T2", "S0", "S1", "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "S2", "S3", "S4", "S5", "S6", "S7", "S8", "S9", "S10", "S11", "T3", "T4", "T5", "T6", "PC", "NEXT_PC", "PRIV", "DPC"}}; | ||||||
|  |  | ||||||
|     enum constants {MISA_VAL=0b01000000000000000001000100000100, MARCHID_VAL=0x80000003, XLEN=32, INSTR_ALIGNMENT=2, RFS=32, fence=0, fencei=1, fencevmal=2, fencevmau=3, CSR_SIZE=4096, MUL_LEN=64}; |     enum constants {MISA_VAL=0b01000000000000000001000100000100, MARCHID_VAL=0x80000003, PGMASK=0b111111111111, XLEN=32, INSTR_ALIGNMENT=2, RFS=32, fence=0, fencei=1, fencevmal=2, fencevmau=3, CSR_SIZE=4096, MUL_LEN=64}; | ||||||
|  |  | ||||||
|     constexpr static unsigned FP_REGS_SIZE = 0; |     constexpr static unsigned FP_REGS_SIZE = 0; | ||||||
|  |  | ||||||
|     enum reg_e { |     enum reg_e { | ||||||
|         X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X12, X13, X14, X15, X16, X17, X18, X19, X20, X21, X22, X23, X24, X25, X26, X27, X28, X29, X30, X31, PC, NEXT_PC, PRIV, DPC, NUM_REGS |         X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X12, X13, X14, X15, X16, X17, X18, X19, X20, X21, X22, X23, X24, X25, X26, X27, X28, X29, X30, X31, PC, NEXT_PC, PRIV, DPC, NUM_REGS, TRAP_STATE=NUM_REGS, PENDING_TRAP, ICOUNT, CYCLE, INSTRET, INSTRUCTION, LAST_BRANCH | ||||||
|     }; |     }; | ||||||
|  |  | ||||||
|     using reg_t = uint32_t; |     using reg_t = uint32_t; | ||||||
| @@ -71,11 +71,11 @@ template <> struct traits<tgc_c> { | |||||||
|  |  | ||||||
|     using phys_addr_t = iss::typed_addr_t<iss::address_type::PHYSICAL>; |     using phys_addr_t = iss::typed_addr_t<iss::address_type::PHYSICAL>; | ||||||
|  |  | ||||||
|     static constexpr std::array<const uint32_t, 36> reg_bit_widths{ |     static constexpr std::array<const uint32_t, 43> reg_bit_widths{ | ||||||
|         {32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,8,32}}; |         {32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,8,32,32,32,64,64,64,32,32}}; | ||||||
|  |  | ||||||
|     static constexpr std::array<const uint32_t, 36> reg_byte_offsets{ |     static constexpr std::array<const uint32_t, 43> reg_byte_offsets{ | ||||||
|         {0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,137}}; |         {0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124,128,132,136,137,141,145,149,157,165,173,177}}; | ||||||
|  |  | ||||||
|     static const uint64_t addr_mask = (reg_t(1) << (XLEN - 1)) | ((reg_t(1) << (XLEN - 1)) - 1); |     static const uint64_t addr_mask = (reg_t(1) << (XLEN - 1)) | ((reg_t(1) << (XLEN - 1)) - 1); | ||||||
|  |  | ||||||
| @@ -248,6 +248,12 @@ struct tgc_c: public arch_if { | |||||||
|         uint32_t NEXT_PC = 0;  |         uint32_t NEXT_PC = 0;  | ||||||
|         uint8_t PRIV = 0;  |         uint8_t PRIV = 0;  | ||||||
|         uint32_t DPC = 0; |         uint32_t DPC = 0; | ||||||
|  |         uint32_t trap_state = 0, pending_trap = 0; | ||||||
|  |         uint64_t icount = 0; | ||||||
|  |         uint64_t cycle = 0; | ||||||
|  |         uint64_t instret = 0; | ||||||
|  |         uint32_t instruction = 0; | ||||||
|  |         uint32_t last_branch = 0; | ||||||
|     } reg; |     } reg; | ||||||
| #pragma pack(pop) | #pragma pack(pop) | ||||||
|     uint32_t trap_state = 0, pending_trap = 0; |     uint32_t trap_state = 0, pending_trap = 0; | ||||||
|   | |||||||
| @@ -50,7 +50,7 @@ std::tuple<cpu_ptr, vm_ptr> create_cpu(std::string const& backend, unsigned gdb_ | |||||||
|     if(backend == "llvm") |     if(backend == "llvm") | ||||||
|         return {cpu_ptr{lcpu}, vm_ptr{iss::llvm::create(lcpu, gdb_port)}}; |         return {cpu_ptr{lcpu}, vm_ptr{iss::llvm::create(lcpu, gdb_port)}}; | ||||||
| #endif | #endif | ||||||
| #ifdef WITH_LLVM | #ifdef WITH_TCC | ||||||
|     if(backend == "tcc") |     if(backend == "tcc") | ||||||
|         return {cpu_ptr{lcpu}, vm_ptr{iss::tcc::create(lcpu, gdb_port)}}; |         return {cpu_ptr{lcpu}, vm_ptr{iss::tcc::create(lcpu, gdb_port)}}; | ||||||
| #endif | #endif | ||||||
|   | |||||||
| @@ -162,11 +162,11 @@ int main(int argc, char *argv[]) { | |||||||
|             return 127; |             return 127; | ||||||
|         } |         } | ||||||
|         if(!cpu ){ |         if(!cpu ){ | ||||||
|             LOG(ERR) << "Could not create cpu fore for isa " << isa_opt << " and backend " <<clim["backend"].as<std::string>()<< std::endl; |             LOG(ERR) << "Could not create cpu for isa " << isa_opt << " and backend " <<clim["backend"].as<std::string>()<< std::endl; | ||||||
|             return 127; |             return 127; | ||||||
|         } |         } | ||||||
|         if(!vm ){ |         if(!vm ){ | ||||||
|             LOG(ERR) << "Could not create vm fore for isa " << isa_opt << " and backend " <<clim["backend"].as<std::string>()<< std::endl; |             LOG(ERR) << "Could not create vm for isa " << isa_opt << " and backend " <<clim["backend"].as<std::string>()<< std::endl; | ||||||
|             return 127; |             return 127; | ||||||
|         } |         } | ||||||
|         if (clim.count("plugin")) { |         if (clim.count("plugin")) { | ||||||
|   | |||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
		Reference in New Issue
	
	Block a user