Lines Matching defs:curShdr
561 auto &curShdr = shdr[i];
566 curShdr.sh_addralign = sectionToAlign_[secName];
567 curSecOffset = AlignUp(curSecOffset, curShdr.sh_addralign);
579 curShdr.sh_name = shName;
580 curShdr.sh_type = section.Type();
581 curShdr.sh_flags = section.Flag();
582 curShdr.sh_addr = curSecOffset;
583 curShdr.sh_offset = static_cast<uint64_t>(curSecOffset);
584 curShdr.sh_info = 0;
585 curShdr.sh_link = static_cast<uint32_t>(section.Link());
592 curShdr.sh_size = curSecSize;
598 curShdr.sh_size = curSecOffset - curSize;
604 curShdr.sh_size = curSecOffset - curSize;
610 curShdr.sh_size = curSecOffset - curSize;
614 FixSymtab(&curShdr);
618 curShdr.sh_size = curSecOffset - curSize;
628 curShdr.sh_size = curSecSize;
640 curShdr.sh_entsize = static_cast<uint64_t>(section.Entsize());
641 sectionToShdr_[secName] = curShdr;
642 LOG_COMPILER(DEBUG) << " shdr[i].sh_entsize " << std::hex << curShdr.sh_entsize << std::endl;