unimp.isa revision 12291:2c0d8c31fc3d
12391SN/A// -*- mode:c++ -*-
28931Sandreas.hansson@arm.com
38931Sandreas.hansson@arm.com// Copyright (c) 2003-2005 The Regents of The University of Michigan
48931Sandreas.hansson@arm.com// All rights reserved.
58931Sandreas.hansson@arm.com//
68931Sandreas.hansson@arm.com// Redistribution and use in source and binary forms, with or without
78931Sandreas.hansson@arm.com// modification, are permitted provided that the following conditions are
88931Sandreas.hansson@arm.com// met: redistributions of source code must retain the above copyright
98931Sandreas.hansson@arm.com// notice, this list of conditions and the following disclaimer;
108931Sandreas.hansson@arm.com// redistributions in binary form must reproduce the above copyright
118931Sandreas.hansson@arm.com// notice, this list of conditions and the following disclaimer in the
128931Sandreas.hansson@arm.com// documentation and/or other materials provided with the distribution;
132391SN/A// neither the name of the copyright holders nor the names of its
142391SN/A// contributors may be used to endorse or promote products derived from
152391SN/A// this software without specific prior written permission.
162391SN/A//
172391SN/A// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182391SN/A// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192391SN/A// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202391SN/A// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212391SN/A// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222391SN/A// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232391SN/A// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242391SN/A// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252391SN/A// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262391SN/A// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272391SN/A// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282391SN/A//
292391SN/A// Authors: Steve Reinhardt
302391SN/A
312391SN/A////////////////////////////////////////////////////////////////////
322391SN/A//
332391SN/A// Unimplemented instructions
342391SN/A//
352391SN/A
362665Ssaidi@eecs.umich.edudef format FailUnimpl() {{
378931Sandreas.hansson@arm.com    iop = InstObjParams(name, 'FailUnimplemented')
382391SN/A    decode_block = BasicDecodeWithMnemonic.subst(iop)
392391SN/A}};
402391SN/A
412391SN/Adef format WarnUnimpl() {{
422391SN/A    iop = InstObjParams(name, 'WarnUnimplemented')
439235Sandreas.hansson@arm.com    decode_block = BasicDecodeWithMnemonic.subst(iop)
449293Sandreas.hansson@arm.com}};
459293Sandreas.hansson@arm.com
469293Sandreas.hansson@arm.com