Lines Matching defs:pRec
104 PRELOCREC pRec;
116 pRec = (PRELOCREC)MMR3HeapAllocZ(pVM, MM_TAG_PATM_PATCH, sizeof(*pRec));
117 Assert(pRec);
118 pRec->Core.Key = (AVLPVKEY)pRelocHC;
119 pRec->pRelocPos = pRelocHC; /* @todo redundant. */
120 pRec->pSource = pSource;
121 pRec->pDest = pDest;
122 pRec->uType = uType;
124 bool ret = RTAvlPVInsert(&pPatch->FixupTree, &pRec->Core);
133 PJUMPREC pRec;
135 pRec = (PJUMPREC)MMR3HeapAllocZ(pVM, MM_TAG_PATM_PATCH, sizeof(*pRec));
136 Assert(pRec);
138 pRec->Core.Key = (AVLPVKEY)pJumpHC;
139 pRec->pJumpHC = pJumpHC; /* @todo redundant. */
140 pRec->offDispl = offset;
141 pRec->pTargetGC = pTargetGC;
142 pRec->opcode = opcode;
144 bool ret = RTAvlPVInsert(&pPatch->JumpTree, &pRec->Core);