Home | History | Annotate | Download | only in assembler

Lines Matching refs:JmpSrc

476     class JmpSrc {
481 JmpSrc()
487 JmpSrc(int offset, JumpType type)
495 JmpSrc(int offset, JumpType type, Condition condition)
885 JmpSrc b(JumpType type)
888 return JmpSrc(m_formatter.size(), type);
892 JmpSrc blx(RegisterID rm, JumpType type)
896 return JmpSrc(m_formatter.size(), type);
900 JmpSrc bx(RegisterID rm, JumpType type, Condition condition)
903 return JmpSrc(m_formatter.size(), type, condition);
906 JmpSrc bx(RegisterID rm, JumpType type)
909 return JmpSrc(m_formatter.size(), type);
1607 static void* getRelocatedAddress(void* code, JmpSrc jump)
1626 static int getDifferenceBetweenLabels(JmpDst src, JmpSrc dst)
1631 static int getDifferenceBetweenLabels(JmpSrc src, JmpDst dst)
1771 static unsigned getCallReturnOffset(JmpSrc call)
1785 void linkJump(JmpSrc from, JmpDst to)
1792 static void linkJump(void* code, JmpSrc from, void* to)
1802 static void linkCall(void* code, JmpSrc from, void* to)