data.isa (7146:f68d5f1f748c) data.isa (7156:192093645d75)
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

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

180 buildDataInst("teq", "resTemp = Op1 ^ secondOp;")
181 buildDataInst("cmp", "resTemp = Op1 - secondOp;", "sub")
182 buildDataInst("cmn", "resTemp = Op1 + secondOp;", "add")
183 buildDataInst("orr", "Dest = resTemp = Op1 | secondOp;")
184 buildDataInst("orn", "Dest = resTemp = Op1 | ~secondOp;")
185 buildDataInst("mov", "Dest = resTemp = secondOp;")
186 buildDataInst("bic", "Dest = resTemp = Op1 & ~secondOp;")
187 buildDataInst("mvn", "Dest = resTemp = ~secondOp;")
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

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

180 buildDataInst("teq", "resTemp = Op1 ^ secondOp;")
181 buildDataInst("cmp", "resTemp = Op1 - secondOp;", "sub")
182 buildDataInst("cmn", "resTemp = Op1 + secondOp;", "add")
183 buildDataInst("orr", "Dest = resTemp = Op1 | secondOp;")
184 buildDataInst("orn", "Dest = resTemp = Op1 | ~secondOp;")
185 buildDataInst("mov", "Dest = resTemp = secondOp;")
186 buildDataInst("bic", "Dest = resTemp = Op1 & ~secondOp;")
187 buildDataInst("mvn", "Dest = resTemp = ~secondOp;")
188 buildDataInst("movt",
189 "Dest = resTemp = insertBits(Op1, 31, 16, secondOp);")
188}};
190}};