Home
last modified time | relevance | path

Searched refs:newFlags (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lld/ELF/Arch/
H A DMipsArchTree.cpp168 static bool isArchMatched(uint32_t newFlags, uint32_t res) { in isArchMatched() argument
169 if (newFlags == res) in isArchMatched()
171 if (newFlags == EF_MIPS_ARCH_32 && isArchMatched(EF_MIPS_ARCH_64, res)) in isArchMatched()
173 if (newFlags == EF_MIPS_ARCH_32R2 && isArchMatched(EF_MIPS_ARCH_64R2, res)) in isArchMatched()
178 if (res == newFlags) in isArchMatched()
280 uint32_t newFlags = f.flags & (EF_MIPS_ARCH | EF_MIPS_MACH); in getArchFlags() local
283 if (isArchMatched(newFlags, ret)) in getArchFlags()
285 if (!isArchMatched(ret, newFlags)) { in getArchFlags()
288 getFullArchName(newFlags)); in getArchFlags()
291 ret = newFlags; in getArchFlags()
/llvm-project-15.0.7/lld/wasm/
H A DSymbolTable.cpp277 uint32_t newFlags) { in shouldReplace() argument
286 if ((newFlags & WASM_SYMBOL_BINDING_MASK) == WASM_SYMBOL_BINDING_WEAK) { in shouldReplace()
/llvm-project-15.0.7/lld/ELF/
H A DWriter.cpp2370 uint64_t newFlags = computeFlags(sec->getPhdrFlags()); in createPhdrs() local
2373 if (!(load && newFlags == flags && sec != relroEnd && in createPhdrs()
2376 load = addHdr(PT_LOAD, newFlags); in createPhdrs()
2377 flags = newFlags; in createPhdrs()