Quelle MozInstructions-vixl.cpp
Sprache: unbekannt
// Copyright 2013, ARM Limited // All rights reserved. // // 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 ARM Limited 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 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.
void
Instruction::SetImmPCRawOffset(ptrdiff_t offset)
{ if (IsPCRelAddressing()) { // ADR and ADRP. We're encoding a raw offset here. // See also SetPCRelImmTarget().
Instr imm = vixl::Assembler::ImmPCRelAddress(offset);
SetInstructionBits(Mask(~ImmPCRel_mask) | imm);
} else {
SetBranchImmTarget(this + (offset << kInstructionSizeLog2));
}
}
// Is this a stack pointer synchronization instruction as inserted by // MacroAssembler::syncStackPtr()? bool
Instruction::IsStackPtrSync() const
{ // The stack pointer sync is a move to the stack pointer. // This is encoded as 'add sp, Rs, #0'. return IsAddSubImmediate() && Rd() == js::jit::Registers::sp && ImmAddSub() == 0;
}
// Skip over a constant pool at |this| if there is one. // // If |this| is pointing to the artifical guard branch around a constant pool, // return the instruction after the pool. Otherwise return |this| itself. // // This function does not skip constant pools with a natural guard branch. It // is assumed that anyone inspecting the instruction stream understands about // branches that were inserted naturally. const Instruction*
Instruction::skipPool() const
{ // Artificial pool guards can only be B (rather than BR), and they must be // forward branches. if (!IsUncondB() || ImmUncondBranch() <= 0) returnthis;
// Check for a constant pool header which has the high 16 bits set. See // struct PoolHeader. Bit 15 indicates a natural pool guard when set. It // must be clear which indicates an artificial pool guard. const Instruction *header = InstructionAtOffset(kInstructionSize); if (header->Mask(0xffff8000) != 0xffff0000) returnthis;
// OK, this is an artificial jump around a constant pool. return ImmPCOffsetTarget();
}