Deleted Added
sdiff udiff text old ( 7122:0c8bb53cdffe ) new ( 7140:d2f0418e9390 )
full compact
1/*
2 * Copyright (c) 2010 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

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

226}
227
228bool
229ArmStaticInstBase::arm_sub_overflow(int32_t result, int32_t lhs, int32_t rhs) const
230{
231 return findOverflow(32, result, lhs, ~rhs);
232}
233
234void
235ArmStaticInstBase::printReg(std::ostream &os, int reg) const
236{
237 if (reg < FP_Base_DepTag) {
238 switch (reg) {
239 case PCReg:
240 ccprintf(os, "pc");
241 break;

--- 197 unchanged lines hidden ---