mem64.cc (12504:6a6d80495bd6) mem64.cc (13367:dc06baae4275)
1/*
2 * Copyright (c) 2011-2013,2018 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

59}
60
61
62
63void
64Memory64::startDisassembly(std::ostream &os) const
65{
66 printMnemonic(os, "", false);
1/*
2 * Copyright (c) 2011-2013,2018 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

59}
60
61
62
63void
64Memory64::startDisassembly(std::ostream &os) const
65{
66 printMnemonic(os, "", false);
67 printIntReg(os, dest);
67 if (isDataPrefetch()||isInstPrefetch()){
68 printPFflags(os, dest);
69 }else{
70 printIntReg(os, dest);
71 }
68 ccprintf(os, ", [");
69 printIntReg(os, base);
70}
71
72void
73Memory64::setExcAcRel(bool exclusive, bool acrel)
74{
75 if (exclusive)

--- 118 unchanged lines hidden ---
72 ccprintf(os, ", [");
73 printIntReg(os, base);
74}
75
76void
77Memory64::setExcAcRel(bool exclusive, bool acrel)
78{
79 if (exclusive)

--- 118 unchanged lines hidden ---