Home
last modified time | relevance | path

Searched refs:AddressAlign (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckPlacementNew.cpp223 unsigned AddressAlign = Offset % AllocatedTAlign; in checkElementRegionAlign() local
224 if (AddressAlign != 0) { in checkElementRegionAlign()
225 emitBadAlignReport(P, C, AllocatedTAlign, AddressAlign); in checkElementRegionAlign()
253 unsigned AddressAlign = OffsetValue % AllocatedTAlign; in checkFieldRegionAlign() local
254 if (AddressAlign != 0) in checkFieldRegionAlign()
255 emitBadAlignReport(P, C, AllocatedTAlign, AddressAlign); in checkFieldRegionAlign()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/
H A DUtility.cpp433 Section.AddressAlign = 0; in containerizeOpenMPSPIRVImage()
445 ImageSection.AddressAlign = 0; in containerizeOpenMPSPIRVImage()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp829 SHeader.sh_addralign = Sec->AddressAlign; in initSectionHeaders()
1015 SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 8; in initSymtabSectionHeader()
1041 SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1; in initStrtabSectionHeader()
1099 SHeader.sh_addralign = YAMLSec ? (uint64_t)YAMLSec->AddressAlign : 1; in initDWARFSectionHeader()
1810 switch (Section.AddressAlign) { in writeSectionContent()
1820 Twine::utohexstr(Section.AddressAlign)); in writeSectionContent()
H A DELFYAML.cpp1397 IO.mapOptional("AddressAlign", Section.AddressAlign, Hex64(0)); in commonSectionMapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h271 llvm::yaml::Hex64 AddressAlign; member