mult.isa (7422:feddb9077def) mult.isa (7760:e93e7e0caae1)
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

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

83 else:
84 base = 'Mult4'
85
86 Name = mnem.capitalize()
87
88 if unCc:
89 iop = InstObjParams(mnem, Name, base,
90 {"code" : code,
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

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

83 else:
84 base = 'Mult4'
85
86 Name = mnem.capitalize()
87
88 if unCc:
89 iop = InstObjParams(mnem, Name, base,
90 {"code" : code,
91 "predicate_test": predicateTest})
91 "predicate_test": predicateTest,
92 "op_class": "IntMultOp" })
92 if doCc:
93 iopCc = InstObjParams(mnem + "s", Name + "Cc", base,
94 {"code" : code + ccCode,
93 if doCc:
94 iopCc = InstObjParams(mnem + "s", Name + "Cc", base,
95 {"code" : code + ccCode,
95 "predicate_test": condPredicateTest})
96 "predicate_test": condPredicateTest,
97 "op_class": "IntMultOp" })
96
97 if regs == 3:
98 declare = Mult3Declare
99 constructor = Mult3Constructor
100 else:
101 declare = Mult4Declare
102 constructor = Mult4Constructor
103

--- 284 unchanged lines hidden ---
98
99 if regs == 3:
100 declare = Mult3Declare
101 constructor = Mult3Constructor
102 else:
103 declare = Mult4Declare
104 constructor = Mult4Constructor
105

--- 284 unchanged lines hidden ---