branch.cc revision 7720:65d338a8dba4
1/*
2 * Copyright (c) 2009 The University of Edinburgh
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Timothy M. Jones
29 */
30
31#include "arch/power/insts/branch.hh"
32#include "base/loader/symtab.hh"
33#include "cpu/thread_context.hh"
34
35using namespace PowerISA;
36
37const std::string &
38PCDependentDisassembly::disassemble(Addr pc, const SymbolTable *symtab) const
39{
40    if (!cachedDisassembly ||
41        pc != cachedPC || symtab != cachedSymtab)
42    {
43        if (cachedDisassembly)
44            delete cachedDisassembly;
45
46        cachedDisassembly =
47            new std::string(generateDisassembly(pc, symtab));
48        cachedPC = pc;
49        cachedSymtab = symtab;
50    }
51
52    return *cachedDisassembly;
53}
54
55PowerISA::PCState
56BranchPCRel::branchTarget(const PowerISA::PCState &pc) const
57{
58    return (uint32_t)(pc.pc() + disp);
59}
60
61std::string
62BranchPCRel::generateDisassembly(Addr pc, const SymbolTable *symtab) const
63{
64    std::stringstream ss;
65
66    ccprintf(ss, "%-10s ", mnemonic);
67
68    Addr target = pc + disp;
69
70    std::string str;
71    if (symtab && symtab->findSymbol(target, str))
72        ss << str;
73    else
74        ccprintf(ss, "0x%x", target);
75
76    return ss.str();
77}
78
79PowerISA::PCState
80BranchNonPCRel::branchTarget(const PowerISA::PCState &pc) const
81{
82    return targetAddr;
83}
84
85std::string
86BranchNonPCRel::generateDisassembly(Addr pc, const SymbolTable *symtab) const
87{
88    std::stringstream ss;
89
90    ccprintf(ss, "%-10s ", mnemonic);
91
92    std::string str;
93    if (symtab && symtab->findSymbol(targetAddr, str))
94        ss << str;
95    else
96        ccprintf(ss, "0x%x", targetAddr);
97
98    return ss.str();
99}
100
101PowerISA::PCState
102BranchPCRelCond::branchTarget(const PowerISA::PCState &pc) const
103{
104    return (uint32_t)(pc.pc() + disp);
105}
106
107std::string
108BranchPCRelCond::generateDisassembly(Addr pc, const SymbolTable *symtab) const
109{
110    std::stringstream ss;
111
112    ccprintf(ss, "%-10s ", mnemonic);
113
114    ss << bo << ", " << bi << ", ";
115
116    Addr target = pc + disp;
117
118    std::string str;
119    if (symtab && symtab->findSymbol(target, str))
120        ss << str;
121    else
122        ccprintf(ss, "0x%x", target);
123
124    return ss.str();
125}
126
127PowerISA::PCState
128BranchNonPCRelCond::branchTarget(const PowerISA::PCState &pc) const
129{
130    return targetAddr;
131}
132
133std::string
134BranchNonPCRelCond::generateDisassembly(Addr pc,
135                                        const SymbolTable *symtab) const
136{
137    std::stringstream ss;
138
139    ccprintf(ss, "%-10s ", mnemonic);
140
141    ss << bo << ", " << bi << ", ";
142
143    std::string str;
144    if (symtab && symtab->findSymbol(targetAddr, str))
145        ss << str;
146    else
147        ccprintf(ss, "0x%x", targetAddr);
148
149    return ss.str();
150}
151
152PowerISA::PCState
153BranchRegCond::branchTarget(ThreadContext *tc) const
154{
155    uint32_t regVal = tc->readIntReg(_srcRegIdx[_numSrcRegs - 1]);
156    return regVal & 0xfffffffc;
157}
158
159std::string
160BranchRegCond::generateDisassembly(Addr pc,
161                                   const SymbolTable *symtab) const
162{
163    std::stringstream ss;
164
165    ccprintf(ss, "%-10s ", mnemonic);
166
167    ss << bo << ", " << bi << ", ";
168
169    return ss.str();
170}
171