static_inst.cc (7111:ee902ae075bb) static_inst.cc (7122:0c8bb53cdffe)
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

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

339 // This one is implicit.
340 break;
341 case COND_UC:
342 // Unconditional.
343 break;
344 default:
345 panic("Unrecognized condition code %d.\n", condCode);
346 }
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

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

339 // This one is implicit.
340 break;
341 case COND_UC:
342 // Unconditional.
343 break;
344 default:
345 panic("Unrecognized condition code %d.\n", condCode);
346 }
347 os << suffix << " ";
347 os << suffix;
348 if (machInst.bigThumb)
349 os << ".w";
350 os << " ";
348 }
349}
350
351void
352ArmStaticInstBase::printMemSymbol(std::ostream &os,
353 const SymbolTable *symtab,
354 const std::string &prefix,
355 const Addr addr,

--- 103 unchanged lines hidden ---
351 }
352}
353
354void
355ArmStaticInstBase::printMemSymbol(std::ostream &os,
356 const SymbolTable *symtab,
357 const std::string &prefix,
358 const Addr addr,

--- 103 unchanged lines hidden ---