base_dyn_inst.hh (12749:223c83ed9979) base_dyn_inst.hh (12768:9a299ec956ac)
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

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

500
501 //
502 // Instruction types. Forward checks to StaticInst object.
503 //
504 bool isNop() const { return staticInst->isNop(); }
505 bool isMemRef() const { return staticInst->isMemRef(); }
506 bool isLoad() const { return staticInst->isLoad(); }
507 bool isStore() const { return staticInst->isStore(); }
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

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

500
501 //
502 // Instruction types. Forward checks to StaticInst object.
503 //
504 bool isNop() const { return staticInst->isNop(); }
505 bool isMemRef() const { return staticInst->isMemRef(); }
506 bool isLoad() const { return staticInst->isLoad(); }
507 bool isStore() const { return staticInst->isStore(); }
508 bool isAtomic() const { return staticInst->isAtomic(); }
508 bool isStoreConditional() const
509 { return staticInst->isStoreConditional(); }
510 bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
511 bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
512 bool isInteger() const { return staticInst->isInteger(); }
513 bool isFloating() const { return staticInst->isFloating(); }
514 bool isVector() const { return staticInst->isVector(); }
515 bool isControl() const { return staticInst->isControl(); }

--- 581 unchanged lines hidden ---
509 bool isStoreConditional() const
510 { return staticInst->isStoreConditional(); }
511 bool isInstPrefetch() const { return staticInst->isInstPrefetch(); }
512 bool isDataPrefetch() const { return staticInst->isDataPrefetch(); }
513 bool isInteger() const { return staticInst->isInteger(); }
514 bool isFloating() const { return staticInst->isFloating(); }
515 bool isVector() const { return staticInst->isVector(); }
516 bool isControl() const { return staticInst->isControl(); }

--- 581 unchanged lines hidden ---