Searched refs:JumpLinkType (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/assembler/
H A DLinkBuffer.h66 typedef MacroAssembler::JumpLinkType JumpLinkType; typedef in class:JSC::LinkBuffer
248 JumpLinkType jumpLinkType = m_assembler->computeJumpType(jumpsToLink[i], linkBase + writePtr, target);
H A DARMv7Assembler.h447 enum JumpLinkType { LinkInvalid, LinkJumpT1, LinkJumpT2, LinkJumpT3,
465 JumpLinkType linkType() const { return m_linkType; }
466 void setLinkType(JumpLinkType linkType) { ASSERT(m_linkType == LinkInvalid); m_linkType = linkType; }
472 JumpLinkType m_linkType : 4;
1643 int jumpSizeDelta(JumpType jumpType, JumpLinkType jumpLinkType) { return JumpPaddingSizes[jumpType] - JumpSizes[jumpLinkType]; }
1666 JumpLinkType computeJumpType(JumpType jumpType, const uint8_t* from, const uint8_t* to)
1717 JumpLinkType computeJumpType(LinkRecord& record, const uint8_t* from, const uint8_t* to)
1719 JumpLinkType linkType = computeJumpType(record.type(), from, to);
H A DMacroAssemblerARMv7.h50 typedef ARMv7Assembler::JumpLinkType JumpLinkType; typedef in class:JSC::MacroAssemblerARMv7
62 JumpLinkType computeJumpType(JumpType jumpType, const uint8_t* from, const uint8_t* to) { return m_assembler.computeJumpType(jumpType, from, to); }
63 JumpLinkType computeJumpType(LinkRecord& record, const uint8_t* from, const uint8_t* to) { return m_assembler.computeJumpType(record, from, to); }
65 int jumpSizeDelta(JumpType jumpType, JumpLinkType jumpLinkType) { return m_assembler.jumpSizeDelta(jumpType, jumpLinkType); }

Completed in 73 milliseconds