Home | History | Annotate | Download | only in courgette

Lines Matching defs:rel32

361   HistogramTargets("rel32 relocs", rel32_target_rvas_);
445 // Find the rel32 relocations.
460 // Heuristic discovery of rel32 locations in instruction stream: are the
461 // next few bytes the start of an instruction containing a rel32
463 const uint8* rel32 = NULL;
466 if (*p == 0xE8 || *p == 0xE9) { // jmp rel32 and call rel32
467 rel32 = p + 1;
473 rel32 = p + 2;
476 if (rel32) {
477 RVA rel32_rva = static_cast<RVA>(rel32 - adjust_pointer_to_rva);
486 // Beginning of abs32 reloc is before end of rel32 reloc so they
493 RVA target_rva = rel32_rva + 4 + Read32LittleEndian(rel32);
494 rel32 target must be within image, and within this
502 p = rel32 + 4;