misc64.isa (12539:14f557f1dab8) misc64.isa (12543:cd851ca42177)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2011-2013, 2016-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

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

186 machInst, false, mnemonic);
187 }
188
189 '''
190
191 hltIop = InstObjParams("hlt", "Hlt64", "ImmOp64",
192 hltCode, ["IsNonSpeculative"])
193 header_output += ImmOp64Declare.subst(hltIop)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2011-2013, 2016-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

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

186 machInst, false, mnemonic);
187 }
188
189 '''
190
191 hltIop = InstObjParams("hlt", "Hlt64", "ImmOp64",
192 hltCode, ["IsNonSpeculative"])
193 header_output += ImmOp64Declare.subst(hltIop)
194 decoder_output += ImmOp64Constructor.subst(hltIop)
194 decoder_output += SemihostConstructor64.subst(hltIop)
195 exec_output += BasicExecute.subst(hltIop)
196}};
195 exec_output += BasicExecute.subst(hltIop)
196}};