Lines Matching defs:isec
363 static void applyAdrpAdd(uint8_t *buf, const ConcatInputSection *isec,
374 uint64_t addr1 = isec->getVA() + offset1;
392 static void applyAdrpAdrp(uint8_t *buf, const ConcatInputSection *isec,
402 uint64_t page1 = pageBits(offset1 + isec->getVA()) + adrp1.addend;
403 uint64_t page2 = pageBits(offset2 + isec->getVA()) + adrp2.addend;
419 static void applyAdrpLdr(uint8_t *buf, const ConcatInputSection *isec,
430 uint64_t addr1 = isec->getVA() + offset1;
431 uint64_t addr2 = isec->getVA() + offset2;
444 static void applyAdrpLdrGot(uint8_t *buf, const ConcatInputSection *isec,
450 applyAdrpAdd(buf, isec, offset1, offset2);
452 applyAdrpLdr(buf, isec, offset1, offset2);
462 static void applyAdrpAddLdr(uint8_t *buf, const ConcatInputSection *isec,
486 uint64_t addr1 = isec->getVA() + offset1;
487 uint64_t addr3 = isec->getVA() + offset3;
530 static void applyAdrpLdrGotLdr(uint8_t *buf, const ConcatInputSection *isec,
538 applyAdrpAddLdr(buf, isec, offset1, offset2, offset3);
561 uint64_t addr1 = isec->getVA() + offset1;
562 uint64_t addr2 = isec->getVA() + offset2;
647 const ConcatInputSection *isec =
648 dyn_cast_or_null<ConcatInputSection>(subsec.isec);
649 if (!isec || isec->shouldOmitFromOutput())
652 section = isec;