pseudo.cc (11572:9eac6e12c673) pseudo.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2014,2016 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

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

37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Andreas Sandberg
41 * Stephen Hines
42 */
43
44#include "arch/arm/insts/pseudo.hh"
1/*
2 * Copyright (c) 2014,2016 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

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

37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Andreas Sandberg
41 * Stephen Hines
42 */
43
44#include "arch/arm/insts/pseudo.hh"
45
45#include "cpu/exec_context.hh"
46
47DecoderFaultInst::DecoderFaultInst(ExtMachInst _machInst)
48 : ArmStaticInst("gem5decoderFault", _machInst, No_OpClass),
49 faultId(static_cast<DecoderFault>(
50 static_cast<uint8_t>(_machInst.decoderFault)))
51{
52 // Don't call execute() if we're on a speculative path and the

--- 169 unchanged lines hidden ---
46#include "cpu/exec_context.hh"
47
48DecoderFaultInst::DecoderFaultInst(ExtMachInst _machInst)
49 : ArmStaticInst("gem5decoderFault", _machInst, No_OpClass),
50 faultId(static_cast<DecoderFault>(
51 static_cast<uint8_t>(_machInst.decoderFault)))
52{
53 // Don't call execute() if we're on a speculative path and the

--- 169 unchanged lines hidden ---