Deleted Added
sdiff udiff text old ( 7599:f6bbf266f2c8 ) new ( 7603:66d853e566d2 )
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

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

663 '''
664 setendIop = InstObjParams("setend", "Setend", "ImmOp",
665 { "code": setendCode,
666 "predicate_test": predicateTest }, [])
667 header_output += ImmOpDeclare.subst(setendIop)
668 decoder_output += ImmOpConstructor.subst(setendIop)
669 exec_output += PredOpExecute.subst(setendIop)
670
671 cpsCode = '''
672 uint32_t mode = bits(imm, 4, 0);
673 uint32_t f = bits(imm, 5);
674 uint32_t i = bits(imm, 6);
675 uint32_t a = bits(imm, 7);
676 bool setMode = bits(imm, 8);
677 bool enable = bits(imm, 9);
678 CPSR cpsr = Cpsr;

--- 25 unchanged lines hidden ---