HomeSort by relevance Sort by last modified time
    Searched defs:BitSize (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 37 unsigned BitSize = Ty->getPrimitiveSizeInBits();
40 if (BitSize == 0)
43 if (BitSize > 64)
70 unsigned BitSize = Ty->getPrimitiveSizeInBits();
73 if (BitSize == 0)
76 if (BitSize > 64)
92 if (BitSize == 8)
141 if (BitSize <= 32)
152 if (TII->isRxSBGMask(Imm.getZExtValue(), BitSize, Start, End))
188 unsigned BitSize = Ty->getPrimitiveSizeInBits()
    [all...]
SystemZISelDAGToDAG.cpp 115 // otherwise. The output value has BitSize bits, although Input may be
119 : Opcode(Op), BitSize(N.getValueType().getSizeInBits()),
120 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
124 unsigned BitSize;
725 if (TII->isRxSBGMask(Mask, RxSBG.BitSize, RxSBG.Start, RxSBG.End)) {
794 if (RxSBG.BitSize != 64 || N.getValueType() != MVT::i64)
826 if (maskMatters(RxSBG, allOnes(RxSBG.BitSize) - allOnes(InnerBitSize)))
839 unsigned BitSize = N.getValueType().getSizeInBits();
840 if (Count < 1 || Count >= BitSize)
    [all...]
SystemZISelLowering.cpp     [all...]
  /external/llvm/include/llvm/Transforms/IPO/
LowerBitSets.h 41 uint64_t BitSize;
53 return Bits.size() == BitSize;
190 /// Allocate BitSize bits in the byte array where Bits contains the bits to
195 void allocate(const std::set<uint64_t> &Bits, uint64_t BitSize,
  /external/llvm/unittests/Transforms/IPO/
LowerBitSets.cpp 20 uint64_t BitSize;
62 EXPECT_EQ(T.BitSize, BSI.BitSize);
112 uint64_t BitSize;
148 BABuilder.allocate(A.Bits, A.BitSize, GotByteOffset, GotMask);
  /art/runtime/base/
bit_vector.h 66 return bit_index_ == BitSize();
81 bit_index_(BitSize()) { }
83 uint32_t BitSize() const {
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 44 unsigned BitSize = Ty->getPrimitiveSizeInBits();
45 if (BitSize == 0)
74 unsigned BitSize = Ty->getPrimitiveSizeInBits();
75 if (BitSize == 0)
108 unsigned BitSize = Ty->getPrimitiveSizeInBits();
109 if (BitSize == 0)
  /external/v8/src/
bignum.cc 20 static int BitSize(S value) {
27 DCHECK(kBigitSize >= BitSize(value));
  /external/llvm/include/llvm/CodeGen/
ValueTypes.h 184 unsigned BitSize = getSizeInBits();
185 return BitSize >= 8 && !(BitSize & (BitSize - 1));
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 169 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
173 switch(BitSize) {
273 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
274 unsigned WordSize = (BitSize + 63) / 64;
279 for (unsigned i = 1, ct = 0; i < (BitSize>64 ? 64 : BitSize);
290 if (BitSize > 64) {
293 BitSize -= 64;
306 unsigned BitSize = V->getType()->getPrimitiveSizeInBits();
307 for (unsigned i = 1; i < BitSize; i <<= 1)
    [all...]
TargetLoweringBase.cpp     [all...]
TargetInstrInfo.cpp 352 unsigned BitSize = TRI->getSubRegIdxSize(SubIdx);
355 if (BitSize % 8)
362 Size = BitSize /= 8;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 43 unsigned BitSize = Ty->getPrimitiveSizeInBits();
44 if (BitSize == 0)
49 if (BitSize & 0x3f)
50 ImmVal = Imm.sext((BitSize + 63) & ~0x3fU);
55 for (unsigned ShiftVal = 0; ShiftVal < BitSize; ShiftVal += 64) {
68 unsigned BitSize = Ty->getPrimitiveSizeInBits();
71 if (BitSize == 0)
121 int NumConstants = (BitSize + 63) / 64;
134 unsigned BitSize = Ty->getPrimitiveSizeInBits();
137 if (BitSize == 0
    [all...]
AArch64ISelDAGToDAG.cpp 350 unsigned BitSize = N.getValueType().getSizeInBits();
351 unsigned Val = RHS->getZExtValue() & (BitSize - 1);
    [all...]
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 146 const unsigned BitSize = ByteSize * 8;
148 std::string BitSizeStr = utostr(BitSize);
167 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
197 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart);
515 const unsigned BitSize = ByteSize * 8;
516 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
529 const unsigned BitSize = ByteSize * 8;
530 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
546 const unsigned BitSize = ByteSize * 8;
547 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 58 if (BitOffset >= BitSize)
98 OS << "offset " << ByteOffset << " size " << BitSize << " align "
136 BSI.BitSize = ((Max - Min) >> BSI.AlignLog2) + 1;
175 uint64_t BitSize, uint64_t &AllocByteOffset,
186 unsigned ReqSize = AllocByteOffset + BitSize;
201 uint64_t BitSize;
357 BAI->BitSize = BSI.BitSize;
366 return BAI1.BitSize > BAI2.BitSize;
    [all...]
  /art/runtime/
stack_map.h 660 DCHECK_LE(BitSize(), 32u);
663 ALWAYS_INLINE size_t BitSize() const { return end_offset_ - start_offset_; }
667 const size_t bit_count = BitSize();
696 region.StoreBits(start_offset_, value - min_value_, BitSize());
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 216 USHORT BitSize;
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp     [all...]

Completed in 1857 milliseconds

1 2 3 4