/external/llvm/include/llvm/Object/ |
D | Binary.h | 65 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument 66 if (isLE) in getELFType() 72 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument 73 if (isLE) in getMachOType()
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | Binary.h | 75 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument 76 if (isLE) in getELFType() 82 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument 83 if (isLE) in getMachOType()
|
D | ELF.h | 171 bool isLE() const { in isLE() function 180 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Binary.h | 75 static inline unsigned int getELFType(bool isLE, bool is64Bits) { in getELFType() argument 76 if (isLE) in getELFType() 82 static unsigned int getMachOType(bool isLE, bool is64Bits) { in getMachOType() argument 83 if (isLE) in getMachOType()
|
D | ELF.h | 153 bool isLE() const { in isLE() function 162 bool isMips64EL() const { return isMipsELF64() && isLE(); } in isMips64EL()
|
/external/llvm-project/lld/ELF/Arch/ |
D | PPC64.cpp | 196 insn = config->isLE ? insn << 32 | insn >> 32 : insn; in writePrefixedInstruction() 342 config->isLE ? getRelaTocSymAndAddend<ELF64LE>(tocISB, rel.addend) in tryRelaxPPC64TocIndirection() 556 write32(config->isLE ? loc : loc - 2, insn); in writeFromHalf16() 560 return read32(config->isLE ? loc : loc - 2); in readFromHalf16() 565 return config->isLE ? (fullInstr << 32 | fullInstr >> 32) : fullInstr; in readPrefixedInstruction()
|
D | PPC.cpp | 65 return read32(config->isLE ? loc : loc - 2); in readFromHalf16() 69 write32(config->isLE ? loc : loc - 2, insn); in writeFromHalf16()
|
/external/llvm-project/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 824 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpStackSizesSection() 860 DataExtractor Data(Content, Obj.isLE(), ELFT::Is64Bits ? 8 : 4); in dumpBBAddrMapSection() 902 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpAddrsigSection() 1010 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpCallGraphProfileSection() 1232 DataExtractor Data(Content, Obj.isLE(), /*AddressSize=*/0); in dumpHashSection() 1268 DataExtractor Data(Content, Obj.isLE(), AddrSize); in dumpGnuHashSection()
|
/external/llvm-project/lld/ELF/ |
D | Config.h | 281 bool isLE; member
|
D | Driver.cpp | 1307 config->isLE = (k == ELF32LEKind || k == ELF64LEKind); in setConfigs() 1308 config->endianness = config->isLE ? endianness::little : endianness::big; in setConfigs()
|
D | SyntheticSections.cpp | 2749 DWARFDataExtractor data(obj, *pub, config->isLE, config->wordsize); in readPubNamesAndTypes() 3692 eHdr->e_ident[EI_DATA] = config->isLE ? ELFDATA2LSB : ELFDATA2MSB; in writeEhdr()
|
/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
D | ELF_x86_64.cpp | 247 return Obj.isLE() ? support::little : support::big; in getEndianness()
|
/external/llvm-project/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 2884 if (!Obj.isLE()) { in printAttributes() 5966 DataExtractor Data(Contents, Obj.isLE(), sizeof(Elf_Addr)); in printNonRelocatableStackSizes() 6052 DataExtractor Data(Contents, Obj.isLE(), sizeof(Elf_Addr)); in printRelocatableStackSizes()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 7078 bool isLE = DAG.getDataLayout().isLittleEndian(); in visitTRUNCATE() local 7131 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); in visitTRUNCATE() 7706 bool isLE = DAG.getDataLayout().isLittleEndian(); in ConstantFoldBITCASTofBUILD_VECTOR() local 7712 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); in ConstantFoldBITCASTofBUILD_VECTOR() 12609 bool isLE = DAG.getDataLayout().isLittleEndian(); in reduceBuildVecExtToExtBuildVec() local 12629 unsigned Index = isLE ? (i * ElemRatio) : in reduceBuildVecExtToExtBuildVec()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 10730 bool isLE = DAG.getDataLayout().isLittleEndian(); in visitTRUNCATE() local 10792 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); in visitTRUNCATE() 10965 unsigned Idx = isLE ? 0 : VecSrcVT.getVectorNumElements() - 1; in visitTRUNCATE() 11453 bool isLE = DAG.getDataLayout().isLittleEndian(); in ConstantFoldBITCASTofBUILD_VECTOR() local 11459 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); in ConstantFoldBITCASTofBUILD_VECTOR() 17383 bool isLE = DAG.getDataLayout().isLittleEndian(); in reduceBuildVecExtToExtBuildVec() local 17403 unsigned Index = isLE ? (i * ElemRatio) : in reduceBuildVecExtToExtBuildVec()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 11716 bool isLE = DAG.getDataLayout().isLittleEndian(); in visitTRUNCATE() local 11778 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1)); in visitTRUNCATE() 11952 unsigned Idx = isLE ? 0 : VecSrcVT.getVectorNumElements() - 1; in visitTRUNCATE() 12454 bool isLE = DAG.getDataLayout().isLittleEndian(); in ConstantFoldBITCASTofBUILD_VECTOR() local 12460 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j)); in ConstantFoldBITCASTofBUILD_VECTOR() 18567 bool isLE = DAG.getDataLayout().isLittleEndian(); in reduceBuildVecExtToExtBuildVec() local 18587 unsigned Index = isLE ? (i * ElemRatio) : in reduceBuildVecExtToExtBuildVec()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 1448 bool isLE = DAG.getDataLayout().isLittleEndian(); in isVSLDOIShuffleMask() local 1450 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) { in isVSLDOIShuffleMask() 1463 if (isLE) in isVSLDOIShuffleMask()
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Instructions.h | 1313 static bool isLE(Predicate P) {
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 1810 bool isLE = DAG.getDataLayout().isLittleEndian(); in isVSLDOIShuffleMask() local 1812 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) { in isVSLDOIShuffleMask() 1825 if (isLE) in isVSLDOIShuffleMask()
|
/external/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCISelLowering.cpp | 1936 bool isLE = DAG.getDataLayout().isLittleEndian(); in isVSLDOIShuffleMask() local 1938 if ((ShuffleKind == 0 && !isLE) || (ShuffleKind == 2 && isLE)) { in isVSLDOIShuffleMask() 1951 if (isLE) in isVSLDOIShuffleMask()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 15449 bool isSEXTLoad, bool IsMasked, bool isLE, in getMVEIndexedAddressParts() argument 15460 bool CanChangeType = isLE && !IsMasked; in getMVEIndexedAddressParts()
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | ARMISelLowering.cpp | 17211 bool isSEXTLoad, bool IsMasked, bool isLE, in getMVEIndexedAddressParts() argument 17222 bool CanChangeType = isLE && !IsMasked; in getMVEIndexedAddressParts()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 9558 assert((IsGreater || ICmpInst::isLE(Pred) || ICmpInst::isLT(Pred)) && in getMonotonicPredicateTypeImpl()
|