base_dyn_inst.hh (12109:f29e9c5418aa) base_dyn_inst.hh (12110:c24ee249b8ba)
1/*
2 * Copyright (c) 2011,2013,2016 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

512 bool isLoad() const { return staticInst->isLoad(); }
513 bool isStore() const { return staticInst->isStore(); }
514 bool isStoreConditional() const
515 { return staticInst->isStoreConditional(); }
516 bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
517 bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
518 bool isInteger() const { return staticInst->isInteger(); }
519 bool isFloating() const { return staticInst->isFloating(); }
1/*
2 * Copyright (c) 2011,2013,2016 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

512 bool isLoad() const { return staticInst->isLoad(); }
513 bool isStore() const { return staticInst->isStore(); }
514 bool isStoreConditional() const
515 { return staticInst->isStoreConditional(); }
516 bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
517 bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
518 bool isInteger() const { return staticInst->isInteger(); }
519 bool isFloating() const { return staticInst->isFloating(); }
520 bool isVector() const { return staticInst->isVector(); }
520 bool isControl() const { return staticInst->isControl(); }
521 bool isCall() const { return staticInst->isCall(); }
522 bool isReturn() const { return staticInst->isReturn(); }
523 bool isDirectCtrl() const { return staticInst->isDirectCtrl(); }
524 bool isIndirectCtrl() const { return staticInst->isIndirectCtrl(); }
525 bool isCondCtrl() const { return staticInst->isCondCtrl(); }
526 bool isUncondCtrl() const { return staticInst->isUncondCtrl(); }
527 bool isCondDelaySlot() const { return staticInst->isCondDelaySlot(); }

--- 585 unchanged lines hidden ---
521 bool isControl() const { return staticInst->isControl(); }
522 bool isCall() const { return staticInst->isCall(); }
523 bool isReturn() const { return staticInst->isReturn(); }
524 bool isDirectCtrl() const { return staticInst->isDirectCtrl(); }
525 bool isIndirectCtrl() const { return staticInst->isIndirectCtrl(); }
526 bool isCondCtrl() const { return staticInst->isCondCtrl(); }
527 bool isUncondCtrl() const { return staticInst->isUncondCtrl(); }
528 bool isCondDelaySlot() const { return staticInst->isCondDelaySlot(); }

--- 585 unchanged lines hidden ---