Searched refs:BigEndian (Results 1 - 15 of 15) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DTCE.h111 BigEndian = false;
H A DARM.cpp45 resetDataLayout(BigEndian
49 assert(!BigEndian && "Windows on ARM does not support big endian");
60 assert(!BigEndian && "NaCl on ARM does not support big endian");
63 resetDataLayout(BigEndian
95 assert(!BigEndian && "AAPCS16 does not support big-endian");
99 BigEndian
104 BigEndian
H A DMips.cpp74 if (BigEndian) {
H A DMips.h37 if (BigEndian)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringExtractor.h21 enum { BigEndian = 0, LittleEndian = 1 }; enumerator in enum:StringExtractor::__anon2773
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDataLayout.h121 bool BigEndian; member in class:llvm::DataLayout
210 BigEndian = DL.isBigEndian();
233 bool isLittleEndian() const { return !BigEndian; }
234 bool isBigEndian() const { return BigEndian; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp180 BigEndian = false;
269 BigEndian = true;
272 BigEndian = false;
468 bool Ret = BigEndian == Other.BigEndian &&
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h186 bool BigEndian; member in class:clang::TargetInfo
1347 bool isBigEndian() const { return BigEndian; }
1348 bool isLittleEndian() const { return !BigEndian; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1377 bool BigEndian = !DAG.getSubtarget().getTargetTriple().isLittleEndian(); local
1398 if(BigEndian)
1428 bool BigEndian, SelectionDAG &DAG) {
1446 if (BigEndian)
1465 bool BigEndian) {
1480 if (BigEndian)
1498 Exp2Imm = getBuildVectorSplat(VecTy, Imm, BigEndian, DAG);
1511 bool BigEndian = !DAG.getSubtarget().getTargetTriple().isLittleEndian(); local
1515 SDValue SplatVec = getBuildVectorSplat(ResTy, ConstValue, BigEndian, DAG);
1427 getBuildVectorSplat(EVT VecTy, SDValue SplatValue, bool BigEndian, SelectionDAG &DAG) argument
1463 lowerMSABinaryBitImmIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc, SDValue Imm, bool BigEndian) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp32 BigEndian = !T.isLittleEndian();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp1031 auto BigEndian = makeMultilib("").flag("+EB").flag("-EL"); local
1050 .Either(BigEndian, LittleEndian)
1209 auto BigEndian = makeMultilib("").flag("+EB").flag("-EL"); local
1231 .Either(BigEndian, LittleEndian)
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp2975 int CharWidth, bool BigEndian) {
2980 if (BigEndian)
3065 bool BigEndian) {
3068 if (BigEndian) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp2570 MemA[address,4] = if BigEndian() then D[d+r]<63:32> else D[d+r]<31:0>;
2571 MemA[address+4,4] = if BigEndian() then D[d+r]<31:0> else D[d+r]<63:32>;
2664 D[d+r] = if BigEndian() then word1:word2 else word2:word1;
11236 D[d+r] = if BigEndian() then word1:word2 else word2:word1;
11392 // D[d+r] = if BigEndian() then word1:word2 else word2:word1;
11428 MemA[address,4] = if BigEndian() then D[d+r]<63:32> else D[d+r]<31:0>;
11429 MemA[address+4,4] = if BigEndian() then D[d+r]<31:0> else D[d+r]<63:32>;
11573 // endianness. MemA[address,4] = if BigEndian() then D[d+r]<63:32> else
11575 // MemA[address+4,4] = if BigEndian() then D[d+r]<31:0> else
11633 D[d] = if BigEndian() the
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp2473 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
2489 if (BigEndian)
9781 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
9790 if (BigEndian)
9799 if (BigEndian)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6803 bool BigEndian = true, LittleEndian = true;
6807 BigEndian &= CurrentByteOffset == BigEndianByteAt(Width, i);
6808 if (!BigEndian && !LittleEndian)
6812 assert((BigEndian != LittleEndian) && "It should be either big endian or"
6814 return BigEndian;

Completed in 283 milliseconds