Lines Matching refs:dst
1790 static inline void copyRegisterLine(RegisterLine* dst, const RegisterLine* src, in copyRegisterLine() argument
1793 memcpy(dst->regTypes, src->regTypes, numRegs * sizeof(RegType)); in copyRegisterLine()
1795 assert((src->monitorEntries == NULL && dst->monitorEntries == NULL) || in copyRegisterLine()
1796 (src->monitorEntries != NULL && dst->monitorEntries != NULL)); in copyRegisterLine()
1797 if (dst->monitorEntries != NULL) { in copyRegisterLine()
1798 assert(dst->monitorStack != NULL); in copyRegisterLine()
1799 memcpy(dst->monitorEntries, src->monitorEntries, in copyRegisterLine()
1801 memcpy(dst->monitorStack, src->monitorStack, in copyRegisterLine()
1803 dst->monitorStackTop = src->monitorStackTop; in copyRegisterLine()
1813 RegisterLine* dst = getRegisterLine(regTable, insnIdx); in copyLineToTable() local
1814 assert(dst->regTypes != NULL); in copyLineToTable()
1815 copyRegisterLine(dst, src, regTable->insnRegCountPlus); in copyLineToTable()
1821 static inline void copyLineFromTable(RegisterLine* dst, in copyLineFromTable() argument
1826 copyRegisterLine(dst, src, regTable->insnRegCountPlus); in copyLineFromTable()