Deleted Added
sdiff udiff text old ( 7410:1589cdca3c6e ) new ( 7418:e81194228b6e )
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

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

463 exec_output += BasicExecute.subst(bkptIop)
464
465 nopIop = InstObjParams("nop", "NopInst", "PredOp", \
466 { "code" : "", "predicate_test" : predicateTest })
467 header_output += BasicDeclare.subst(nopIop)
468 decoder_output += BasicConstructor.subst(nopIop)
469 exec_output += PredOpExecute.subst(nopIop)
470
471 itIop = InstObjParams("it", "ItInst", "PredOp", \
472 { "code" : "Itstate = machInst.newItstate;",
473 "predicate_test" : predicateTest })
474 header_output += BasicDeclare.subst(itIop)
475 decoder_output += BasicConstructor.subst(itIop)
476 exec_output += PredOpExecute.subst(itIop)
477 unknownCode = '''
478#if FULL_SYSTEM

--- 154 unchanged lines hidden ---