base.isa (10474:799c8ee4ecba) base.isa (11981:0c5089b6133d)
1// Copyright (c) 2006-2007 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

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

453 printReg(ss, _srcRegIdx[1]);
454 }
455
456 // just print the first dest... if there's a second one,
457 // it's generally implicit
458 if (_numDestRegs > 0) {
459 if (_numSrcRegs > 0)
460 ss << ",";
1// Copyright (c) 2006-2007 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

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

453 printReg(ss, _srcRegIdx[1]);
454 }
455
456 // just print the first dest... if there's a second one,
457 // it's generally implicit
458 if (_numDestRegs > 0) {
459 if (_numSrcRegs > 0)
460 ss << ",";
461 printReg(ss, _destRegIdx[0]);
461 printReg(ss, _destRegIdx[0]);
462 }
463
464 return ss.str();
465 }
466
467 bool
468 passesFpCondition(uint32_t fcc, uint32_t condition)
469 {

--- 113 unchanged lines hidden ---
462 }
463
464 return ss.str();
465 }
466
467 bool
468 passesFpCondition(uint32_t fcc, uint32_t condition)
469 {

--- 113 unchanged lines hidden ---