Searched refs:newFlags (Results 1 - 2 of 2) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DMipsArchTree.cpp169 static bool isArchMatched(uint32_t newFlags, uint32_t res) { argument
170 if (newFlags == res)
172 if (newFlags == EF_MIPS_ARCH_32 && isArchMatched(EF_MIPS_ARCH_64, res))
174 if (newFlags == EF_MIPS_ARCH_32R2 && isArchMatched(EF_MIPS_ARCH_64R2, res))
179 if (res == newFlags)
281 uint32_t newFlags = f.flags & (EF_MIPS_ARCH | EF_MIPS_MACH); local
284 if (isArchMatched(newFlags, ret))
286 if (!isArchMatched(ret, newFlags)) {
289 getFullArchName(newFlags));
292 ret = newFlags;
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DWriter.cpp2122 uint64_t newFlags = computeFlags(sec->getPhdrFlags()); local
2127 sec->memRegion != load->firstSec->memRegion || flags != newFlags ||
2129 load = addHdr(PT_LOAD, newFlags);
2130 flags = newFlags;

Completed in 201 milliseconds