copyleft: gplv3 added and set repo to public
[calu.git] / 3c_disasm / instr / xorx.cpp
1 /*   `Deep Thought', a softcore CPU implemented on a FPGA
2
3     Copyright (C) 2010 Markus Hofstaetter <markus.manrow@gmx.at>
4     Copyright (C) 2010 Martin Perner <e0725782@student.tuwien.ac.at>
5     Copyright (C) 2010 Stefan Rebernig <stefan.rebernig@gmail.com>
6     Copyright (C) 2010 Manfred Schwarz <e0725898@student.tuwien.ac.at>
7     Copyright (C) 2010 Bernhard Urban <lewurm@gmail.com>
8
9     This program is free software: you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation, either version 3 of the License, or
12     (at your option) any later version.
13
14     This program is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19     You should have received a copy of the GNU General Public License
20     along with this program.  If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "../Iinstr.hpp"
23
24
25 class Cxorx : public Iinstr {
26         public:
27                 Cxorx();
28                 void evalInstr();
29                 void execInstr();
30                 std::string toString();
31                 Iinstr* getNew();
32 };
33
34 /**
35  * Name:      create_instruction
36  * Purpose:   if compiled as shared library, this functions creates the 
37               instruction object
38
39  * Returns:   pointer to instruction object
40  */
41 extern "C" Iinstr* create_instruction() {
42     return new Cxorx();
43 }
44
45 Iinstr* Cxorx::getNew()
46 {
47     return new Cxorx();
48 }
49 /**
50  * Name:      destroy_instruction
51  * Purpose:   if compiled as shared library, this functions destoys the 
52               instruction object
53
54  * Parameter: IInstruction - the instruction object to delete
55  */
56 extern "C" void destroy_instruction(Iinstr* p) {
57     delete p;
58 }
59
60 Cxorx::Cxorx()
61 {
62         opcode = B5(01001);
63         name = "xorx";
64 }
65
66 void Cxorx::evalInstr()
67 {
68         this->m_d = argbits[0];
69         this->m_f = argbits[1];
70         this->m_hl = argbits[2];
71
72         argbits >>= 3;
73         dynamic_bitset<> immb = argbits;
74         immb.resize(16);
75         this->m_imm = this->generate16ImmSign(immb.to_ulong());
76
77         argbits >>= 16;
78         m_rd = this->getRegister(argbits);
79 }
80
81 void Cxorx::execInstr()
82 {
83         CDat val = this->m_cpu->getRegister(this->m_rd);
84         CDat imm = generate16ImmFill(this->m_imm);
85         val ^= imm;
86
87         this->m_cpu->setRegister(this->m_rd, val);
88         if(!this->m_d) {
89                 this->m_cpu->updateFlags(val);
90         }
91 }
92
93 std::string Cxorx::toString()
94 {
95         stringstream op;
96         op << this->getName();
97
98         if(m_hl) op << 'H';
99         if(m_f) op << 'F';
100         if(m_d) op << 'D';
101
102         op << this->getConditionFlag() << " r" << m_rd << ", " << m_imm;
103
104         return op.str();
105 }