mem.isa (7132:83b433d6e600) mem.isa (7133:4a1af4580b7d)
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

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

47 # This shouldn't be part of the eaCode, but until the exec templates
48 # are converted over it's the easiest place to put it.
49 eaCode += '\n unsigned memAccessFlags = '
50 if memFlags:
51 eaCode += (string.join(memFlags, '|') + ';')
52 else:
53 eaCode += '0;'
54
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

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

47 # This shouldn't be part of the eaCode, but until the exec templates
48 # are converted over it's the easiest place to put it.
49 eaCode += '\n unsigned memAccessFlags = '
50 if memFlags:
51 eaCode += (string.join(memFlags, '|') + ';')
52 else:
53 eaCode += '0;'
54
55 predicateTest = 'testPredicate(CondCodes, condCode)'
56
57 iop = InstObjParams(name, Name, base,
58 {'ea_code': eaCode,
59 'memacc_code': accCode,
60 'predicate_test': predicateTest},
61 instFlags)
62
63 fullExecTemplate = eval(execTemplateBase + 'Execute')
64 initiateAccTemplate = eval(execTemplateBase + 'InitiateAcc')

--- 79 unchanged lines hidden ---
55 iop = InstObjParams(name, Name, base,
56 {'ea_code': eaCode,
57 'memacc_code': accCode,
58 'predicate_test': predicateTest},
59 instFlags)
60
61 fullExecTemplate = eval(execTemplateBase + 'Execute')
62 initiateAccTemplate = eval(execTemplateBase + 'InitiateAcc')

--- 79 unchanged lines hidden ---