8d38203ff61b81b01fce0554e983ee6cabb1f383
[calu.git] / 3c_disasm / instr / andx.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 Candx : public Iinstr {
26         public:
27                 Candx();
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 Candx();
43 }
44
45 Iinstr* Candx::getNew()
46 {
47     return new Candx();
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 Candx::Candx()
61 {
62         opcode = B5(00101);
63         name = "andx";
64 }
65
66 void Candx::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 Candx::execInstr()
82 {
83         CDat val = this->m_cpu->getRegister(this->m_rd);
84         CDat imm = generate16ImmFill(this->m_imm);
85         if(this->m_hl) {
86                 imm <<= 16;
87         }
88         val &= imm;
89
90         this->m_cpu->setRegister(this->m_rd, val);
91         if(!this->m_d) {
92                 this->m_cpu->updateFlags(val);
93         }
94 }
95
96 std::string Candx::toString()
97 {
98         stringstream op;
99         op << this->getName();
100
101         if(m_hl) op << 'H';
102         if(m_f) op << 'F';
103         if(m_d) op << 'D';
104
105         op << this->getConditionFlag() << " r" << m_rd << ", " << m_imm;
106
107         return op.str();
108 }