HomeSort by relevance Sort by last modified time
    Searched refs:isUInt (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParserCommon.h 19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
36 return isUInt<8>(Value) || isInt<8>(Value);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/
X86AsmParserCommon.h 19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
36 return isUInt<8>(Value) || isInt<8>(Value);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 188 assert(isUInt<4>(Base) && isUInt<12>(Disp));
198 assert(isUInt<4>(Base) && isInt<20>(Disp));
209 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Index));
220 assert(isUInt<4>(Base) && isInt<20>(Disp) && isUInt<4>(Index));
232 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Len))
    [all...]
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 153 assert(isUInt<4>(Base) && isUInt<12>(Disp));
163 assert(isUInt<4>(Base) && isInt<20>(Disp));
174 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Index));
185 assert(isUInt<4>(Base) && isInt<20>(Disp) && isUInt<4>(Index));
197 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<8>(Len))
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 54 if (isUInt<32>(Imm.getZExtValue()))
105 if (isUInt<32>(Imm.getZExtValue()))
113 if (isUInt<32>(Imm.getZExtValue()))
116 if (isUInt<32>(-Imm.getSExtValue()))
131 if (isUInt<32>(Imm.getZExtValue()))
144 if (isUInt<32>(~Imm.getZExtValue()))
206 if (isUInt<32>(Imm.getZExtValue()))
208 if (isUInt<32>(-Imm.getSExtValue()))
  /external/llvm/lib/Target/AMDGPU/
SILoadStoreOptimizer.cpp 146 if (isUInt<8>(EltOffset0) && isUInt<8>(EltOffset1))
154 return isUInt<8>(EltOffset0 / 64) && isUInt<8>(EltOffset1 / 64);
223 assert((isUInt<8>(NewOffset0) && isUInt<8>(NewOffset1)) &&
319 assert((isUInt<8>(NewOffset0) && isUInt<8>(NewOffset1)) &&
AMDGPUISelDAGToDAG.cpp 643 if ((OffsetBits == 16 && !isUInt<16>(Offset)) ||
644 (OffsetBits == 8 && !isUInt<8>(Offset)))
673 if (isUInt<16>(ByteOffset)) {
701 if (isUInt<16>(CAddr->getZExtValue())) {
742 if (isUInt<8>(DWordOffset0)) {
769 if (isUInt<8>(DWordOffset0) && isUInt<8>(DWordOffset1)) {
789 return isUInt<12>(Imm->getZExtValue());
839 if (isUInt<32>(C1->getZExtValue())) {
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
MathExtras.h 54 /// isUInt - Checks if an unsigned integer fits into the given bit width.
56 inline bool isUInt(uint64_t x) {
61 inline bool isUInt<8>(uint64_t x) {
65 inline bool isUInt<16>(uint64_t x) {
69 inline bool isUInt<32>(uint64_t x) {
  /external/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
ARCExpandPseudos.cpp 65 isUInt<6>(SI.getOperand(2).getImm()) ? ARC::ADD_rru6 : ARC::ADD_rrlimm;
ARCRegisterInfo.cpp 75 unsigned AddOpc = isUInt<6>(Offset) ? ARC::ADD_rru6 : ARC::ADD_rrlimm;
112 TII.get(isUInt<6>(Offset) ? ARC::ADD_rru6 : ARC::ADD_rrlimm))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/Disassembler/
RISCVDisassembler.cpp 207 assert(isUInt<N>(Imm) && "Invalid immediate");
216 assert(isUInt<N>(Imm) && "Invalid immediate");
227 assert(isUInt<N>(Imm) && "Invalid immediate");
238 assert(isUInt<6>(Imm) && "Invalid immediate");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SILoadStoreOptimizer.cpp 274 isUInt<8>(EltOffset0 / 64) && isUInt<8>(EltOffset1 / 64)) {
282 if (isUInt<8>(EltOffset0) && isUInt<8>(EltOffset1)) {
292 if ((OffsetDiff % 64 == 0) && isUInt<8>(OffsetDiff / 64)) {
299 if (isUInt<8>(OffsetDiff)) {
504 assert((isUInt<8>(NewOffset0) && isUInt<8>(NewOffset1)) &&
597 assert((isUInt<8>(NewOffset0) && isUInt<8>(NewOffset1)) &
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
MathExtras.h 328 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
332 isUInt(uint64_t X) {
333 static_assert(N > 0, "isUInt<0> doesn't make sense");
338 isUInt(uint64_t X) {
343 template <> constexpr inline bool isUInt<8>(uint64_t x) {
346 template <> constexpr inline bool isUInt<16>(uint64_t x) {
349 template <> constexpr inline bool isUInt<32>(uint64_t x) {
362 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 453 bool isU1Imm() const { return Kind == Immediate && isUInt<1>(getImm()); }
454 bool isU2Imm() const { return Kind == Immediate && isUInt<2>(getImm()); }
455 bool isU3Imm() const { return Kind == Immediate && isUInt<3>(getImm()); }
456 bool isU4Imm() const { return Kind == Immediate && isUInt<4>(getImm()); }
457 bool isU5Imm() const { return Kind == Immediate && isUInt<5>(getImm()); }
459 bool isU6Imm() const { return Kind == Immediate && isUInt<6>(getImm()); }
461 isUInt<6>(getImm()) &&
463 bool isU7Imm() const { return Kind == Immediate && isUInt<7>(getImm()); }
465 isUInt<7>(getImm()) &&
467 bool isU8Imm() const { return Kind == Immediate && isUInt<8>(getImm());
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 474 bool isU1Imm() const { return Kind == Immediate && isUInt<1>(getImm()); }
475 bool isU2Imm() const { return Kind == Immediate && isUInt<2>(getImm()); }
476 bool isU3Imm() const { return Kind == Immediate && isUInt<3>(getImm()); }
477 bool isU4Imm() const { return Kind == Immediate && isUInt<4>(getImm()); }
478 bool isU5Imm() const { return Kind == Immediate && isUInt<5>(getImm()); }
480 bool isU6Imm() const { return Kind == Immediate && isUInt<6>(getImm()); }
482 isUInt<6>(getImm()) &&
484 bool isU7Imm() const { return Kind == Immediate && isUInt<7>(getImm()); }
486 isUInt<7>(getImm()) &&
488 bool isU8Imm() const { return Kind == Immediate && isUInt<8>(getImm());
    [all...]
  /external/llvm/lib/Target/AVR/
AVRRegisterInfo.cpp 171 if (isUInt<6>(Offset)) {
233 assert(isUInt<6>(Offset) && "Offset is out of range");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/
AVRRegisterInfo.cpp 181 if (isUInt<6>(Offset)) {
243 assert(isUInt<6>(Offset) && "Offset is out of range");
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 54 if (isUInt<32>(Imm.getZExtValue()))
105 if (isUInt<32>(Imm.getZExtValue()))
113 if (isUInt<32>(Imm.getZExtValue()))
116 if (isUInt<32>(-Imm.getSExtValue()))
131 if (isUInt<32>(Imm.getZExtValue()))
144 if (isUInt<32>(~Imm.getZExtValue()))
206 if (isUInt<32>(Imm.getZExtValue()))
208 if (isUInt<32>(-Imm.getSExtValue()))
  /external/llvm/include/llvm/Support/
MathExtras.h 289 /// isUInt - Checks if an unsigned integer fits into the given bit width.
291 inline bool isUInt(uint64_t x) {
296 inline bool isUInt<8>(uint64_t x) {
300 inline bool isUInt<16>(uint64_t x) {
304 inline bool isUInt<32>(uint64_t x) {
312 return isUInt<N+S>(x) && (x % (1<<S) == 0);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DataLayout.cpp 230 if (!isUInt<24>(AddrSpace))
279 if (!isUInt<24>(AddrSpace))
458 if (!isUInt<24>(bit_width))
460 if (!isUInt<16>(abi_align))
462 if (!isUInt<16>(pref_align))
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/AsmParser/
RISCVAsmParser.cpp 276 bool IsInRange = isRV64() ? true : isInt<32>(Imm) || isUInt<32>(Imm);
287 return (isRV64() && isUInt<6>(Imm)) || isUInt<5>(Imm);
299 return (isRV64() && isUInt<6>(Imm)) || isUInt<5>(Imm);
308 return IsConstantImm && isUInt<5>(Imm) && VK == RISCVMCExpr::VK_RISCV_None;
317 return IsConstantImm && isUInt<5>(Imm) && (Imm != 0) &&
352 (isUInt<5>(Imm) || (Imm >= 0xfffe0 && Imm <= 0xfffff)) &&
422 return IsConstantImm && isUInt<12>(Imm) && VK == RISCVMCExpr::VK_RISCV_None;
445 IsValid = isUInt<20>(Imm)
    [all...]
  /external/llvm/lib/MC/
MCCodeView.cpp 207 if (isUInt<7>(Data)) {
212 if (isUInt<14>(Data)) {
218 if (isUInt<29>(Data)) {

Completed in 4536 milliseconds

1 2 3 4 5 6 7