pseudo.isa (10696:b5e5068fcb26) pseudo.isa (12763:37c243ed1112)
1// -*- mode:c++ -*-
2
1// -*- mode:c++ -*-
2
3// Copyright (c) 2014 ARM Limited
3// Copyright (c) 2014, 2018 ARM Limited
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
9// to a hardware implementation of the functionality of the software
10// licensed hereunder. You may use the software subject to the license
11// terms below provided that you ensure that this notice is replicated

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

50def format DecoderFault() {{
51 decode_block = '''
52 return new DecoderFaultInst(machInst);
53 '''
54}};
55
56////////////////////////////////////////////////////////////////////
57//
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
9// to a hardware implementation of the functionality of the software
10// licensed hereunder. You may use the software subject to the license
11// terms below provided that you ensure that this notice is replicated

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

50def format DecoderFault() {{
51 decode_block = '''
52 return new DecoderFaultInst(machInst);
53 '''
54}};
55
56////////////////////////////////////////////////////////////////////
57//
58// Illegal execution handling
59//
60
61def format IllegalExec() {{
62 decode_block = 'return new IllegalExecInst(machInst);\n'
63}};
64
65////////////////////////////////////////////////////////////////////
66//
58// Unknown instruction handling
59//
60
61def format Unknown() {{
62 decode_block = 'return new Unknown(machInst);\n'
63}};
64
65////////////////////////////////////////////////////////////////////

--- 13 unchanged lines hidden ---
67// Unknown instruction handling
68//
69
70def format Unknown() {{
71 decode_block = 'return new Unknown(machInst);\n'
72}};
73
74////////////////////////////////////////////////////////////////////

--- 13 unchanged lines hidden ---