Home
last modified time | relevance | path

Searched refs:isLE (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DBinary.h77 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument
78 if (isLE) in getELFType()
84 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument
85 if (isLE) in getMachOType()
H A DELF.h239 bool isLE() const { in isLE() function
248 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL()
/llvm-project-15.0.7/lld/ELF/Arch/
H A DPPC64.cpp191 insn = config->isLE ? insn << 32 | insn >> 32 : insn; in writePrefixedInstruction()
337 config->isLE ? getRelaTocSymAndAddend<ELF64LE>(tocISB, rel.addend) in tryRelaxPPC64TocIndirection()
552 write32(config->isLE ? loc : loc - 2, insn); in writeFromHalf16()
556 return read32(config->isLE ? loc : loc - 2); in readFromHalf16()
561 return config->isLE ? (fullInstr << 32 | fullInstr >> 32) : fullInstr; in readPrefixedInstruction()
H A DPPC.cpp69 return read32(config->isLE ? loc : loc - 2); in readFromHalf16()
73 write32(config->isLE ? loc : loc - 2, insn); in writeFromHalf16()
/llvm-project-15.0.7/llvm/lib/Object/
H A DELF.cpp387 DataExtractor Data(Content, isLE(), ELFT::Is64Bits ? 8 : 4); in android_relas()
640 DataExtractor Data(Content, isLE(), ELFT::Is64Bits ? 8 : 4); in decodeBBAddrMap()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp853 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpStackSizesSection()
889 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpBBAddrMapSection()
943 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpAddrsigSection()
1053 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpCallGraphProfileSection()
1263 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpHashSection()
1299 DataExtractor Data(Content, Obj.isLE(), AddrSize); in dumpGnuHashSection()
/llvm-project-15.0.7/lld/ELF/
H A DConfig.h306 bool isLE; member
H A DDriver.cpp1499 config->isLE = (k == ELF32LEKind || k == ELF64LEKind); in setConfigs()
1500 config->endianness = config->isLE ? endianness::little : endianness::big; in setConfigs()
H A DSyntheticSections.cpp2792 DWARFDataExtractor data(obj, *pub, config->isLE, config->wordsize); in readPubNamesAndTypes()
3740 eHdr->e_ident[EI_DATA] = config->isLE ? ELFDATA2LSB : ELFDATA2MSB; in writeEhdr()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2634 if (Obj.isLE()) in printArchSpecificInfo()
2643 if (Obj.isLE()) in printArchSpecificInfo()
6125 DataExtractor Data(Contents, Obj.isLE(), sizeof(Elf_Addr)); in printNonRelocatableStackSizes()
6212 DataExtractor Data(Contents, Obj.isLE(), sizeof(Elf_Addr)); in printRelocatableStackSizes()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInstructions.h1321 static bool isLE(Predicate P) {
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DScalarEvolution.cpp10701 assert((IsGreater || ICmpInst::isLE(Pred) || ICmpInst::isLT(Pred)) && in getMonotonicPredicateTypeImpl()
11430 assert((ICmpInst::isLT(CanonicalPred) || ICmpInst::isLE(CanonicalPred)) && in isImpliedCondBalancedTypes()
11433 ICmpInst::isLE(CanonicalFoundPred)) && in isImpliedCondBalancedTypes()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2119 bool isLE = DAG.getDataLayout().isLittleEndian(); in isVSLDOIShuffleMask() local
2121 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) { in isVSLDOIShuffleMask()
2134 if (isLE) in isVSLDOIShuffleMask()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp13173 bool isLE = DAG.getDataLayout().isLittleEndian(); in visitTRUNCATE() local
13248 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); in visitTRUNCATE()
13413 unsigned Idx = isLE ? 0 : VecSrcVT.getVectorNumElements() - 1; in visitTRUNCATE()
20141 bool isLE = DAG.getDataLayout().isLittleEndian(); in reduceBuildVecExtToExtBuildVec() local
20161 unsigned Index = isLE ? (i * ElemRatio) : in reduceBuildVecExtToExtBuildVec()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp19569 bool isSEXTLoad, bool IsMasked, bool isLE, in getMVEIndexedAddressParts() argument
19580 bool CanChangeType = isLE && !IsMasked; in getMVEIndexedAddressParts()