Searched refs:IsLE (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DDecompressor.h25 /// @param IsLE Flag determines if Data is in little endian form.
28 bool IsLE, bool Is64Bit);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DDecompressor.cpp21 bool IsLE, bool Is64Bit) {
27 : D.consumeCompressedZLibHeader(Is64Bit, IsLE);
20 create(StringRef Name, StringRef Data, bool IsLE, bool Is64Bit) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h553 bool &Swap, bool IsLE);
574 bool &Swap, bool IsLE);
594 unsigned &InsertAtByte, bool &Swap, bool IsLE);
H A DPPCISelLowering.cpp1530 bool IsLE = DAG.getDataLayout().isLittleEndian(); local
1532 if (IsLE)
1538 if (!IsLE)
1544 unsigned j = IsLE ? 0 : 1;
1561 bool IsLE = DAG.getDataLayout().isLittleEndian(); local
1563 if (IsLE)
1570 if (!IsLE)
1577 unsigned j = IsLE ? 0 : 2;
1603 bool IsLE = DAG.getDataLayout().isLittleEndian();
1605 if (IsLE)
1920 isXXINSERTWMask(ShuffleVectorSDNode *N, unsigned &ShiftElts, unsigned &InsertAtByte, bool &Swap, bool IsLE) argument
1995 isXXSLDWIShuffleMask(ShuffleVectorSDNode *N, unsigned &ShiftElts, bool &Swap, bool IsLE) argument
2094 isXXPERMDIShuffleMask(ShuffleVectorSDNode *N, unsigned &DM, bool &Swap, bool IsLE) argument
5755 bool IsLE = Subtarget.isLittleEndian(); local
9011 bool IsLE = Subtarget.isLittleEndian(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1448 bool IsLE = Doc.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB); local
1451 if (IsLE)
1455 if (IsLE)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp6854 bool IsLE = SI.getModule()->getDataLayout().isLittleEndian(); local
6860 const bool IsOffsetStore = (IsLE && Upper) || (!IsLE && !Upper);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2701 bool IsLE = getDataLayout().isLittleEndian();
2720 unsigned Shifts = IsLE ? i : SubScale - 1 - i;
2744 unsigned Shifts = IsLE ? i : NumElts - 1 - i;
3597 bool IsLE = getDataLayout().isLittleEndian();
3619 SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset);
H A DDAGCombiner.cpp15460 bool IsLE = DAG.getDataLayout().isLittleEndian(); local
15462 unsigned Idx = IsLE ? (NumStores - 1 - i) : i;
17121 bool IsLE = DAG.getDataLayout().isLittleEndian(); local
17124 unsigned BCTruncElt = IsLE ? 0 : NumElts - 1;
17139 BCTruncElt = IsLE ? 0 : XBitWidth / VecEltBitWidth - 1;

Completed in 562 milliseconds