// -*- mode:c++ -*- // Copyright (c) 2010 ARM Limited // All rights reserved // // The license below extends only to copyright in the software and shall // not be construed as granting a license to any other intellectual // property including but not limited to intellectual property relating // to a hardware implementation of the functionality of the software // licensed hereunder. You may use the software subject to the license // terms below provided that you ensure that this notice is replicated // unmodified and in its entirety in all distributions of the software, // modified or unmodified, in source code or in binary form. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer; // redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution; // neither the name of the copyright holders nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Authors: Gabe Black let {{ header_output = "" decoder_output = "" exec_output = "" # B, BL for (mnem, link) in (("b", False), ("bl", True)): bCode = ''' ArmISA::PCState pc = PCS; Addr curPc = pc.instPC(); pc.instNPC((uint32_t)(curPc + imm)); PCS = pc; ''' if (link): bCode += ''' if (pc.thumb()) LR = curPc | 1; else LR = curPc - 4; ''' bIop = InstObjParams(mnem, mnem.capitalize(), "BranchImmCond", {"code": bCode, "predicate_test": predicateTest}) header_output += BranchImmCondDeclare.subst(bIop) decoder_output += BranchImmCondConstructor.subst(bIop) exec_output += PredOpExecute.subst(bIop) # BX, BLX blxCode = ''' ArmISA::PCState pc = PCS; Addr curPc M5_VAR_USED = pc.instPC(); %(link)s // Switch modes %(branch)s PCS = pc; ''' blxList = (("blx", True, True), ("blx", False, True), ("bx", False, False)) for (mnem, imm, link) in blxList: Name = mnem.capitalize() if imm: Name += "Imm" # Since we're switching ISAs, the target ISA will be the opposite # of the current ISA. pc.thumb() is whether the target is ARM. newPC = '(pc.thumb() ? (roundDown(curPc, 4) + imm) : (curPc + imm))' base = "BranchImmCond" declare = BranchImmCondDeclare constructor = BranchImmCondConstructor else: Name += "Reg" newPC = 'Op1' base = "BranchRegCond" declare = BranchRegCondDeclare constructor = BranchRegCondConstructor if link and imm: linkStr = ''' // The immediate version of the blx thumb instruction // is 32 bits wide, but "next pc" doesn't reflect that // so we don't want to substract 2 from it at this point if (pc.thumb()) LR = curPc | 1; else LR = curPc - 4; ''' elif link: linkStr = ''' if (pc.thumb()) LR = (curPc - 2) | 1; else LR = curPc - 4; ''' else: linkStr = "" if imm and link: #blx with imm branchStr = ''' pc.nextThumb(!pc.thumb()); pc.instNPC(%(newPC)s); ''' else: branchStr = "pc.instIWNPC(%(newPC)s);" branchStr = branchStr % { "newPC" : newPC } code = blxCode % {"link": linkStr, "newPC": newPC, "branch": branchStr} blxIop = InstObjParams(mnem, Name, base, {"code": code, "predicate_test": predicateTest}) header_output += declare.subst(blxIop) decoder_output += constructor.subst(blxIop) exec_output += PredOpExecute.subst(blxIop) #Ignore BXJ for now #CBNZ, CBZ. These are always unconditional as far as predicates for (mnem, test) in (("cbz", "=="), ("cbnz", "!=")): code = ''' ArmISA::PCState pc = PCS; Addr curPc = pc.instPC(); pc.instNPC((uint32_t)(curPc + imm)); PCS = pc; ''' predTest = "Op1 %(test)s 0" % {"test": test} iop = InstObjParams(mnem, mnem.capitalize(), "BranchImmReg", {"code": code, "predicate_test": predTest}) header_output += BranchImmRegDeclare.subst(iop) decoder_output += BranchImmRegConstructor.subst(iop) exec_output += PredOpExecute.subst(iop) #TBB, TBH for isTbh in (0, 1): if isTbh: eaCode = ''' unsigned memAccessFlags = ArmISA::TLB::AllowUnaligned | ArmISA::TLB::AlignHalfWord | ArmISA::TLB::MustBeOne; EA = Op1 + Op2 * 2 ''' accCode = ''' ArmISA::PCState pc = PCS; pc.instNPC(pc.instPC() + 2 * (Mem.uh)); PCS = pc; ''' mnem = "tbh" else: eaCode = ''' unsigned memAccessFlags = ArmISA::TLB::AllowUnaligned | ArmISA::TLB::AlignByte | ArmISA::TLB::MustBeOne; EA = Op1 + Op2 ''' accCode = ''' ArmISA::PCState pc = PCS; pc.instNPC(pc.instPC() + 2 * (Mem.ub)); PCS = pc; ''' mnem = "tbb" iop = InstObjParams(mnem, mnem.capitalize(), "BranchRegReg", {'ea_code': eaCode, 'memacc_code': accCode, 'predicate_test': predicateTest}) header_output += BranchTableDeclare.subst(iop) decoder_output += BranchRegRegConstructor.subst(iop) exec_output += LoadExecute.subst(iop) + \ LoadInitiateAcc.subst(iop) + \ LoadCompleteAcc.subst(iop) }};