Compare commits
	
		
			2 Commits
		
	
	
		
			62c118e501
			...
			8c3709f92a
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 8c3709f92a | |||
| 207dbf1071 | 
| @@ -92,7 +92,7 @@ protected: | ||||
|     using compile_ret_t = virt_addr_t; | ||||
|     using compile_func = compile_ret_t (this_class::*)(virt_addr_t &pc, code_word_t instr); | ||||
|  | ||||
|     inline const char *name(size_t index){return traits::reg_aliases.at(index);} | ||||
|     inline const char *name(size_t index){return index<traits::reg_aliases.size()?traits::reg_aliases[index]:"illegal";} | ||||
|  | ||||
|     typename arch::traits<ARCH>::opcode_e decode_inst_id(code_word_t instr); | ||||
|     virt_addr_t execute_inst(finish_cond_e cond, virt_addr_t start, uint64_t icount_limit) override; | ||||
|   | ||||
| @@ -86,7 +86,7 @@ protected: | ||||
|     using compile_ret_t = virt_addr_t; | ||||
|     using compile_func = compile_ret_t (this_class::*)(virt_addr_t &pc, code_word_t instr); | ||||
|  | ||||
|     inline const char *name(size_t index){return traits::reg_aliases.at(index);} | ||||
|     inline const char *name(size_t index){return index<traits::reg_aliases.size()?traits::reg_aliases.at(index):"illegal";} | ||||
|  | ||||
|     typename arch::traits<ARCH>::opcode_e decode_inst_id(code_word_t instr); | ||||
|     virt_addr_t execute_inst(finish_cond_e cond, virt_addr_t start, uint64_t icount_limit) override; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user