mult.isa (7160:3f4333b1d4af) mult.isa (7162:97fe2d298f3e)
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

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

79 raise Exception, "Multiplication instructions with %d " + \
80 "registers are not implemented"
81
82 if regs == 3:
83 base = 'Mult3'
84 else:
85 base = 'Mult4'
86
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

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

79 raise Exception, "Multiplication instructions with %d " + \
80 "registers are not implemented"
81
82 if regs == 3:
83 base = 'Mult3'
84 else:
85 base = 'Mult4'
86
87 Name = "New" + mnem.capitalize()
87 Name = mnem.capitalize()
88
89 if unCc:
90 iop = InstObjParams(mnem, Name, base,
91 {"code" : code,
92 "predicate_test": predicateTest})
93 if doCc:
94 iopCc = InstObjParams(mnem + "s", Name + "Cc", base,
95 {"code" : code + ccCode,

--- 264 unchanged lines hidden ---
88
89 if unCc:
90 iop = InstObjParams(mnem, Name, base,
91 {"code" : code,
92 "predicate_test": predicateTest})
93 if doCc:
94 iopCc = InstObjParams(mnem + "s", Name + "Cc", base,
95 {"code" : code + ccCode,

--- 264 unchanged lines hidden ---