HomeSort by: relevance | last modified time | path
    Searched refs:BitNo (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamReader.h 131 Error JumpToBit(uint64_t BitNo) {
132 size_t ByteNo = size_t(BitNo/8) & ~(sizeof(word_t)-1);
133 unsigned WordBitNo = unsigned(BitNo & (sizeof(word_t)*8-1));
159 const uint8_t *getPointerToBit(uint64_t BitNo, uint64_t NumBytes) {
160 assert(!(BitNo % 8) && "Expected bit on byte boundary");
161 return getPointerToByte(BitNo / 8, NumBytes);
BitstreamWriter.h 139 void BackpatchWord(uint64_t BitNo, unsigned NewWord) {
141 uint64_t ByteNo = BitNo / 8;
142 uint64_t StartBit = BitNo & 7;
197 void BackpatchWord64(uint64_t BitNo, uint64_t Val) {
198 BackpatchWord(BitNo, (uint32_t)Val);
199 BackpatchWord(BitNo + 32, (uint32_t)(Val >> 32));
320 uint64_t BitNo = uint64_t(B.StartSizeWord) * 32;
323 BackpatchWord(BitNo, SizeInWords);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 1059 unsigned Num, BitNo;
1060 Num = BitNo = 0;
1080 BitNo = 0;
1093 ++BitNo;
1094 FieldVal = FieldVal | Val << BitNo;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APInt.h 593 static APInt getOneBitSet(unsigned numBits, unsigned BitNo) {
595 Res.setBit(BitNo);
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kISelLowering.cpp 1409 /// Create a BT (Bit Test) node - Test bit \p BitNo in \p Src and set condition
1411 static SDValue getBitTestCondition(SDValue Src, SDValue BitNo, ISD::CondCode CC,
1421 if (Src.getValueType() != BitNo.getValueType())
1422 BitNo = DAG.getNode(ISD::ANY_EXTEND, DL, Src.getValueType(), BitNo);
1424 SDValue BT = DAG.getNode(M68kISD::BT, DL, MVT::i32, Src, BitNo);
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 10360 unsigned BitNo; // Bit # of CR6.
10365 BitNo = 0; InvertBit = false;
10368 BitNo = 0; InvertBit = true;
10371 BitNo = 2; InvertBit = false;
10374 BitNo = 2; InvertBit = true;
10380 DAG.getConstant(8 - (3 - BitNo), dl, MVT::i32));
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 22624 SDValue Src, BitNo;
22639 BitNo = Op0.getOperand(1);
22648 BitNo = AndLHS.getOperand(1);
22656 BitNo = DAG.getConstant(Log2_64_Ceil(AndRHSVal), dl,
22675 // shorter encoding. Since the former takes the modulo 32 of BitNo and the
22676 // latter takes the modulo 64, this is only valid if the 5th bit of BitNo is
22679 DAG.MaskedValueIsZero(BitNo, APInt(BitNo.getValueSizeInBits(), 32)))
22684 if (Src.getValueType() != BitNo.getValueType())
22685 BitNo = DAG.getNode(ISD::ANY_EXTEND, dl, Src.getValueType(), BitNo)
    [all...]

Completed in 45 milliseconds