Searched refs:Bit (Results 1 - 18 of 18) sorted by relevance

/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.cpp77 for (uint32_t Bit = (1u << 5); Bit < (1u << 12); Bit <<= 1) {
78 if ((RegSave & Bit) == 0u)
81 Mask |= Bit;
111 uint32_t Bit = 1u << (i - 1);
112 if ((VFPRegSave & Bit) == 0u) {
120 Bit >>= 1;
122 while (i > 16 && (VFPRegSave & Bit)) {
125 Bit >>
[all...]
H A DARMELFStreamer.cpp898 unsigned Bit = (1u << Reg);
899 if ((Mask & Bit) == 0) {
900 Mask |= Bit;
/freebsd-9.3-release/contrib/llvm/lib/TableGen/
H A DTGLexer.h46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, enumerator in enum:llvm::tgtok::TokKind
H A DRecord.cpp219 if (BitInit *Bit = dyn_cast<BitInit>(BI->getBit(i))) {
220 Result |= Bit->getValue() << i;
495 if (Init *Bit = getBit(e-i-1))
496 Result += Bit->getAsString();
531 Init *Bit = CachedInit->getBit(CurBit->getBitNum()); local
532 NewBits[i] = fixBitInit(RV, CurBit, Bit);
549 Init *Bit = CurBitVar->getBit(CurBit->getBitNum()); local
550 NewBits[i] = fixBitInit(RV, CurBit, Bit);
734 Init *OpInit::getBit(unsigned Bit) const {
737 return VarBitInit::get(const_cast<OpInit*>(this), Bit);
[all...]
H A DTGParser.cpp124 unsigned Bit = BitList[i]; local
125 if (NewBits[Bit])
126 return Error(Loc, "Cannot set bit #" + utostr(Bit) + " of value '" +
128 NewBits[Bit] = BInit->getBit(i);
682 case tgtok::Bit: Lex.Lex(); return BitRecTy::get();
1254 Init *Bit = Vals[i]->convertInitializerTo(BitRecTy::get()); local
1255 if (Bit == 0) {
1260 NewBits[Vals.size()-i-1] = Bit;
/freebsd-9.3-release/sys/contrib/dev/acpica/utilities/
H A Dutmisc.c338 UINT32 Bit; local
371 Bit = 1 << ACPI_MOD_32 (OwnerId);
375 if (AcpiGbl_OwnerIdMask[Index] & Bit)
377 AcpiGbl_OwnerIdMask[Index] ^= Bit;
/freebsd-9.3-release/contrib/llvm/include/llvm/TableGen/
H A DRecord.h538 virtual Init *getBit(unsigned Bit) const = 0;
609 virtual Init *getBit(unsigned Bit) const {
640 virtual Init *getBit(unsigned Bit) const {
641 assert(Bit < 1 && "Bit index out of range!");
690 virtual Init *getBit(unsigned Bit) const {
691 assert(Bit < Bits.size() && "Bit index out of range!");
692 return Bits[Bit];
732 virtual Init *getBit(unsigned Bit) cons
1094 unsigned Bit; member in class:llvm::VarBitInit
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DR600Packetizer.cpp224 void setIsLastBit(MachineInstr *MI, unsigned Bit) const {
226 MI->getOperand(LastOp).setImm(Bit);
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DCommandLine.h1455 static unsigned Bit(const T &V) { function in class:llvm::cl::bits_storage
1476 *Location |= Bit(V);
1483 return (*Location & Bit(V)) != 0;
1496 static unsigned Bit(const T &V) {
1506 Bits |= Bit(V);
1513 return (Bits & Bit(V)) != 0;
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCCodeEmitter.cpp993 unsigned Bit = 0; local
999 REX |= 1 << Bit; // set REX.B (Bit=0) and REX.X (Bit=1)
1000 Bit++;
1015 unsigned Bit = 0; local
1020 REX |= 1 << Bit; // REX.B (Bit=0) and REX.X (Bit=1)
1021 Bit
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86CodeEmitter.cpp207 unsigned Bit = 0; local
213 REX |= 1 << Bit;
214 Bit++;
228 unsigned Bit = 0; local
233 REX |= 1 << Bit;
234 Bit++;
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp521 if (BitInit *Bit = dyn_cast<BitInit>(TSF->getBit(i)))
522 Value |= uint64_t(Bit->getValue()) << i;
H A DCodeGenRegisters.cpp1179 unsigned Bit = 0; local
1185 Idx->LaneMask = 1u << Bit;
1193 if (Bit < 31)
1194 ++Bit;
1198 CoveringLanes &= ~(1u << Bit);
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCAsmStreamer.cpp1281 unsigned Bit = (Code[i] >> j) & 1;
1290 assert(Bit == 0 && "Encoder wrote into fixed up bit!");
1293 OS << Bit;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp93 // The deleting destructors accept an i32 bitfield as a second parameter. Bit
94 // 1 indicates if the memory should be deleted. Bit 2 indicates if the this
1213 llvm::ConstantInt *Bit = llvm::ConstantInt::get(GuardTy, 1U << BitIndex); local
1216 Builder.CreateICmpNE(Builder.CreateAnd(LI, Bit), Zero);
1224 Builder.CreateStore(Builder.CreateOr(LI, Bit), GI.Guard);
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp32 // (((X ^ XORValue) + AddValue) >> Bit)
35 : XORValue(xorValue), AddValue(addValue), Bit(bit) {}
39 unsigned Bit; member in struct:__anon2490::IPMConversion
1512 DAG.getConstant(Conversion.Bit, MVT::i32));
1513 if (Conversion.Bit != 31)
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1380 SDValue Bit = DAG.getNode(ISD::SHL, DL, ResTy, One, Op->getOperand(2)); local
1383 DAG.getNOT(DL, Bit, ResTy));
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp3747 // Bit 4: Special Reg (cpsr, apsr => 0; spsr => 1)
5332 unsigned Bit = 1; local
5336 Bit = (ITState.Mask >> (5 - ITState.CurPosition)) & 1;
5341 unsigned ITCond = Bit ? ITState.Cond :

Completed in 168 milliseconds