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

/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DTCE.h111 BigEndian = false;
H A DARM.cpp42 resetDataLayout(BigEndian
46 assert(!BigEndian && "Windows on ARM does not support big endian");
57 assert(!BigEndian && "NaCl on ARM does not support big endian");
60 resetDataLayout(BigEndian
90 assert(!BigEndian && "AAPCS16 does not support big-endian");
94 BigEndian
99 BigEndian
H A DMips.h37 if (BigEndian)
H A DMips.cpp74 if (BigEndian) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDataLayout.h121 bool BigEndian; member in class:llvm::DataLayout
209 BigEndian = DL.isBigEndian();
232 bool isLittleEndian() const { return !BigEndian; }
233 bool isBigEndian() const { return BigEndian; }
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStringExtractor.h21 enum { BigEndian = 0, LittleEndian = 1 }; enumerator in enum:StringExtractor::__anon1182
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp178 BigEndian = false;
267 BigEndian = true;
270 BigEndian = false;
463 bool Ret = BigEndian == Other.BigEndian &&
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetInfo.h171 bool BigEndian; member in class:clang::TargetInfo
1271 bool isBigEndian() const { return BigEndian; }
1272 bool isLittleEndian() const { return !BigEndian; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1378 bool BigEndian = !DAG.getSubtarget().getTargetTriple().isLittleEndian(); local
1399 if(BigEndian)
1429 bool BigEndian, SelectionDAG &DAG) {
1447 if (BigEndian)
1466 bool BigEndian) {
1481 if (BigEndian)
1499 Exp2Imm = getBuildVectorSplat(VecTy, Imm, BigEndian, DAG);
1512 bool BigEndian = !DAG.getSubtarget().getTargetTriple().isLittleEndian(); local
1516 SDValue SplatVec = getBuildVectorSplat(ResTy, ConstValue, BigEndian, DAG);
1428 getBuildVectorSplat(EVT VecTy, SDValue SplatValue, bool BigEndian, SelectionDAG &DAG) argument
1464 lowerMSABinaryBitImmIntr(SDValue Op, SelectionDAG &DAG, unsigned Opc, SDValue Imm, bool BigEndian) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DTargetInfo.cpp32 BigEndian = !T.isLittleEndian();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DGnu.cpp981 auto BigEndian = makeMultilib("").flag("+EB").flag("-EL"); local
1000 .Either(BigEndian, LittleEndian)
1159 auto BigEndian = makeMultilib("").flag("+EB").flag("-EL"); local
1181 .Either(BigEndian, LittleEndian)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp2577 MemA[address,4] = if BigEndian() then D[d+r]<63:32> else D[d+r]<31:0>;
2578 MemA[address+4,4] = if BigEndian() then D[d+r]<31:0> else D[d+r]<63:32>;
2671 D[d+r] = if BigEndian() then word1:word2 else word2:word1;
11243 D[d+r] = if BigEndian() then word1:word2 else word2:word1;
11399 // D[d+r] = if BigEndian() then word1:word2 else word2:word1;
11435 MemA[address,4] = if BigEndian() then D[d+r]<63:32> else D[d+r]<31:0>;
11436 MemA[address+4,4] = if BigEndian() then D[d+r]<31:0> else D[d+r]<63:32>;
11580 // endianness. MemA[address,4] = if BigEndian() then D[d+r]<63:32> else
11582 // MemA[address+4,4] = if BigEndian() then D[d+r]<31:0> else
11640 D[d] = if BigEndian() the
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp2427 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
2443 if (BigEndian)
9438 bool BigEndian = Info.Ctx.getTargetInfo().isBigEndian();
9447 if (BigEndian)
9456 if (BigEndian)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6551 bool BigEndian = true, LittleEndian = true;
6555 BigEndian &= CurrentByteOffset == BigEndianByteAt(Width, i);
6556 if (!BigEndian && !LittleEndian)
6560 assert((BigEndian != LittleEndian) && "It should be either big endian or"
6562 return BigEndian;

Completed in 298 milliseconds