Deleted Added
sdiff udiff text old ( 7133:4a1af4580b7d ) new ( 7143:c81f34f9e075 )
full compact
1// -*- mode:c++ -*-
2
3// Copyright (c) 2010 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

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

181 BasicDeclare.subst(ccIop)
182 decoder_output = BasicConstructor.subst(iop) + \
183 BasicConstructor.subst(ccIop)
184 exec_output = PredOpExecute.subst(iop) + \
185 PredOpExecute.subst(ccIop)
186 decode_block = DataImmDecode.subst(iop)
187}};
188
189def format PredOp(code, *opt_flags) {{
190 iop = InstObjParams(name, Name, 'PredOp',
191 {"code": code,
192 "predicate_test": predicateTest},
193 opt_flags)
194 header_output = BasicDeclare.subst(iop)
195 decoder_output = BasicConstructor.subst(iop)
196 decode_block = BasicDecode.subst(iop)

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

203 "predicate_test": predicateTest},
204 opt_flags)
205 header_output = BasicDeclare.subst(iop)
206 decoder_output = BasicConstructor.subst(iop)
207 decode_block = BasicDecode.subst(iop)
208 exec_output = PredOpExecute.subst(iop)
209}};
210