Home | History | Annotate | Download | only in courgette

Lines Matching refs:rel32

131   // Find the rel32 relocations.
136 // Heuristic discovery of rel32 locations in instruction stream: are the
137 // next few bytes the start of an instruction containing a rel32
139 const uint8* rel32 = NULL;
142 if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32
143 rel32 = p + 1;
149 rel32 = p + 2;
152 if (rel32) {
153 RVA rva = static_cast<RVA>(rel32 - adjust_pointer_to_rva);
156 if (!rel32_rva->ComputeRelativeTarget(rel32)) {
161 // To be valid, rel32 target must be within image, and within this
168 p = rel32 + 4;