vfp.cc (10037:5cac77888310) vfp.cc (11671:520509f3e66c)
1/*
2 * Copyright (c) 2010-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 109 unchanged lines hidden (view full) ---

118 ss << ", ";
119 printReg(ss, op1 + FP_Reg_Base);
120 ss << ", ";
121 printReg(ss, op2 + FP_Reg_Base);
122 return ss.str();
123}
124
125std::string
1/*
2 * Copyright (c) 2010-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 109 unchanged lines hidden (view full) ---

118 ss << ", ";
119 printReg(ss, op1 + FP_Reg_Base);
120 ss << ", ";
121 printReg(ss, op2 + FP_Reg_Base);
122 return ss.str();
123}
124
125std::string
126FpRegRegRegCondOp::generateDisassembly(Addr pc, const SymbolTable *symtab)
127 const
128{
129 std::stringstream ss;
130 printMnemonic(ss);
131 printCondition(ss, cond);
132 printReg(ss, dest + FP_Reg_Base);
133 ss << ", ";
134 printReg(ss, op1 + FP_Reg_Base);
135 ss << ", ";
136 printReg(ss, op2 + FP_Reg_Base);
137 return ss.str();
138}
139
140std::string
126FpRegRegRegRegOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
127{
128 std::stringstream ss;
129 printMnemonic(ss);
130 printReg(ss, dest + FP_Reg_Base);
131 ss << ", ";
132 printReg(ss, op1 + FP_Reg_Base);
133 ss << ", ";

--- 1041 unchanged lines hidden ---
141FpRegRegRegRegOp::generateDisassembly(Addr pc, const SymbolTable *symtab) const
142{
143 std::stringstream ss;
144 printMnemonic(ss);
145 printReg(ss, dest + FP_Reg_Base);
146 ss << ", ";
147 printReg(ss, op1 + FP_Reg_Base);
148 ss << ", ";

--- 1041 unchanged lines hidden ---