Lines Matching refs:opAddr
108 bool IsArmBranchOperationAddress(uptr opAddr) in IsArmBranchOperationAddress() argument
110 if( IsCodeAddress(opAddr) ) in IsArmBranchOperationAddress()
113 bit32 op = *reinterpret_cast<bit32*>(opAddr); in IsArmBranchOperationAddress()
123 bool IsThumbBranchOperationAddress(uptr opAddr) in IsThumbBranchOperationAddress() argument
125 if( IsCodeAddress(opAddr) ) in IsThumbBranchOperationAddress()
128 bit16 op = *reinterpret_cast<bit16*>(opAddr); in IsThumbBranchOperationAddress()
131 uptr opAddr2 = opAddr - 2; in IsThumbBranchOperationAddress()
158 bit32 opAddr = data - 4; in IsSavedLrValue() local
159 if( IsArmBranchOperationAddress(opAddr) ) in IsSavedLrValue()
168 bit32 opAddr = (data & ~1) - 2; in IsSavedLrValue() local
169 if( IsThumbBranchOperationAddress(opAddr) ) in IsSavedLrValue()