Searched refs:Bits (Results 51 - 75 of 164) sorted by relevance

1234567

/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DFrontendActions.cpp543 #define LANGOPT(Name, Bits, Default, Description) \
545 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
548 #define VALUE_LANGOPT(Name, Bits, Default, Description) \
550 #define BENIGN_LANGOPT(Name, Bits, Default, Description)
551 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
585 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name);
586 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \
588 #define VALUE_DIAGOPT(Name, Bits, Default) \
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCCodeEmitter.cpp103 unsigned Bits = getBinaryCodeForInstr(MI, Fixups, STI); local
104 support::endian::write(OS, Bits,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp429 // Update Mask, Bits and ExtraProb.
434 CB->Bits += Hi - Lo + 1;
444 if (a.Bits != b.Bits)
445 return a.Bits > b.Bits;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp228 ArrayRef<uint8_t> VTUsed = IsAfter ? Target.TM->Bits->After.BytesUsed
229 : Target.TM->Bits->Before.BytesUsed;
558 std::vector<VTableBits> &Bits,
932 std::vector<VTableBits> &Bits,
935 Bits.reserve(M.getGlobalList().size());
945 Bits.emplace_back();
946 Bits.back().GV = &GV;
947 Bits.back().ObjectSize =
949 BitsPtr = &Bits.back();
969 if (!TM.Bits
931 buildTypeIdentifierMap( std::vector<VTableBits> &Bits, DenseMap<Metadata *, std::set<TypeMemberInfo>> &TypeIdMap) argument
1591 Value *Bits = B.CreateLoad(Int8Ty, Addr); local
[all...]
H A DLowerTypeTests.cpp131 return Bits.count(BitOffset);
144 for (uint64_t B : Bits)
176 BSI.Bits.insert(Offset);
211 void ByteArrayBuilder::allocate(const std::set<uint64_t> &Bits, argument
230 for (uint64_t B : Bits)
247 std::set<uint64_t> Bits; member in struct:__anon2851::ByteArrayInfo
581 /// Build a test that bit BitOffset mod sizeof(Bits)*8 is set in
582 /// Bits. This pattern matches to the bt instruction on x86.
583 static Value *createMaskedBitTest(IRBuilder<> &B, Value *Bits, argument
585 auto BitsType = cast<IntegerType>(Bits
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DLiteralSupport.cpp689 uint8_t Bits = 0; local
693 Bits = 8;
698 Bits = 16;
704 Bits = 32;
710 Bits = 64;
717 if (Bits) {
721 MicrosoftInteger = Bits;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Driver/
H A DTypes.cpp28 unsigned Bits = 0; member in class:TypeInfo::PhasesBitSet
33 Bits |= 1 << Id;
35 bool contains(phases::ID Id) const { return Bits & (1 << Id); }
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DBasicBlock.cpp505 BasicBlockBits Bits = getBasicBlockBits(); local
506 Bits.InstrOrderValid = true;
507 setBasicBlockBits(Bits);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp221 static bool getUsedBitsInStore(unsigned Opc, BitVector &Bits,
223 static bool getUsedBits(unsigned Opc, unsigned OpN, BitVector &Bits,
462 // the source register, and set appropriate bits in Bits. Return true if
464 bool HexagonBitSimplify::getUsedBitsInStore(unsigned Opc, BitVector &Bits,
522 Bits.set(Begin, Begin+8);
578 Bits.set(Begin, Begin+16);
608 Bits.set(Begin+16, Begin+32);
619 // operand may be a subregister of a larger register, while Bits would
621 // the parameter Begin can be used to indicate which bit of Bits should be
624 BitVector &Bits, uint16_
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/M68k/Disassembler/
H A DM68kDisassembler.cpp108 void addBits(unsigned N, uint64_t Bits);
271 void M68kInstructionLookupBuilder::addBits(unsigned N, uint64_t Bits) { argument
279 uint16_t BitsToWrite = Bits & WordMask;
284 Bits >>= ToWrite;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DTGLexer.h50 Assert, Bit, Bits, Class, Code, Dag, Def, Defm, Defset, Defvar, ElseKW, enumerator in enum:llvm::tgtok::TokKind
H A DTGParser.h31 std::vector<unsigned> Bits; member in struct:llvm::LetRecord
35 : Name(N), Bits(B), Value(V), Loc(L) {
H A DRecord.cpp380 BitsInit::convertInitializerBitRange(ArrayRef<unsigned> Bits) const {
381 SmallVector<Init *, 16> NewBits(Bits.size());
383 for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
384 if (Bits[i] >= getNumBits())
386 NewBits[i] = getBit(Bits[i]);
493 IntInit::convertInitializerBitRange(ArrayRef<unsigned> Bits) const {
494 SmallVector<Init *, 16> NewBits(Bits.size());
496 for (unsigned i = 0, e = Bits.size(); i != e; ++i) {
497 if (Bits[i] >= 64)
500 NewBits[i] = BitInit::get(Value & (INT64_C(1) << Bits[
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp457 uint64_t Bits = getBinaryCodeForInstr(MI, Fixups, STI); local
466 support::endian::write<uint32_t>(OS, Bits, E);
471 support::endian::write<uint32_t>(OS, Bits >> 32, E);
472 support::endian::write<uint32_t>(OS, Bits, E);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSwitchLoweringUtils.h95 unsigned Bits = 0; member in struct:llvm::SwitchCG::CaseBits
101 : Mask(mask), BB(bb), Bits(bits), ExtraProb(Prob) {}
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DType.h3663 // adjust the Bits field below, and if you add bits, you'll need to adjust
3680 uint16_t Bits = CC_C; member in class:clang::FunctionType::ExtInfo
3682 ExtInfo(unsigned Bits) : Bits(static_cast<uint16_t>(Bits)) {} argument
3691 Bits = ((unsigned)cc) | (noReturn ? NoReturnMask : 0) |
3705 ExtInfo(CallingConv CC) : Bits(CC) {}
3707 bool getNoReturn() const { return Bits & NoReturnMask; }
3708 bool getProducesResult() const { return Bits & ProducesResultMask; }
3709 bool getCmseNSCall() const { return Bits
[all...]
H A DASTContext.h3011 unsigned Bits; member in class:clang::ASTContext::ObjCEncOptions
3013 ObjCEncOptions(unsigned Bits) : Bits(Bits) {} argument
3016 ObjCEncOptions() : Bits(0) {}
3017 ObjCEncOptions(const ObjCEncOptions &RHS) : Bits(RHS.Bits) {}
3028 #define V(N,I) ObjCEncOptions& set##N() { Bits |= 1 << I; return *this; }
3032 #define V(N,I) bool N() const { return Bits & 1 << I; }
3039 return Bits
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gold/
H A Dreloc.h325 class Bits;
366 return (Bits<valsize>::has_overflow32(value)
370 return (Bits<valsize>::has_overflow(value)
375 return (Bits<valsize>::has_unsigned_overflow32(value)
379 return (Bits<valsize>::has_unsigned_overflow(value)
384 return (Bits<valsize>::has_signed_unsigned_overflow32(value)
388 return (Bits<valsize>::has_signed_unsigned_overflow64(value)
1001 class Bits class in namespace:gold
1049 // Bits<8>::has_signed_unsigned_overflow32 would check -128 <= VAL <
1115 // Bits<
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gold/
H A Dreloc.h325 class Bits;
366 return (Bits<valsize>::has_overflow32(value)
370 return (Bits<valsize>::has_overflow(value)
375 return (Bits<valsize>::has_unsigned_overflow32(value)
379 return (Bits<valsize>::has_unsigned_overflow(value)
384 return (Bits<valsize>::has_signed_unsigned_overflow32(value)
388 return (Bits<valsize>::has_signed_unsigned_overflow64(value)
1001 class Bits class in namespace:gold
1049 // Bits<8>::has_signed_unsigned_overflow32 would check -128 <= VAL <
1115 // Bits<
[all...]
/netbsd-current/external/gpl3/binutils/dist/gold/
H A Dreloc.h325 class Bits;
366 return (Bits<valsize>::has_overflow32(value)
370 return (Bits<valsize>::has_overflow(value)
375 return (Bits<valsize>::has_unsigned_overflow32(value)
379 return (Bits<valsize>::has_unsigned_overflow(value)
384 return (Bits<valsize>::has_signed_unsigned_overflow32(value)
388 return (Bits<valsize>::has_signed_unsigned_overflow64(value)
1001 class Bits class in namespace:gold
1049 // Bits<8>::has_signed_unsigned_overflow32 would check -128 <= VAL <
1115 // Bits<
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp423 BitsInit &Bits = getBitsField(*AllInstructions[Opcode].EncodingDef, "Inst"); local
437 Insn.push_back(bitFromBits(Bits, i));
945 << "const FeatureBitset &Bits) {\n";
1238 o << "Bits[" << Emitter->PredicateNamespace << "::" << Arg->getAsString()
1824 BitsInit &Bits = getBitsField(EncodingDef, "Inst");
1825 if (Bits.allInComplete()) return false;
1900 for (; bi < Bits.getNumBits(); ++bi) {
1902 VarBitInit *BI = dyn_cast<VarBitInit>(Bits.getBit(bi));
1906 Var = dyn_cast<VarInit>(Bits.getBit(bi));
1912 if (bi == Bits
[all...]
H A DCodeEmitterGen.cpp341 static void emitInstBits(raw_ostream &OS, const APInt &Bits) { argument
342 for (unsigned I = 0; I < Bits.getNumWords(); ++I)
343 OS << ((I > 0) ? ", " : "") << "UINT64_C(" << utostr(Bits.getRawData()[I])
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DSHA1.cpp30 static inline uint32_t rol(uint32_t Number, int Bits) { argument
31 return (Number << Bits) | (Number >> (32 - Bits));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DFoldingSet.h314 /// Bits - Vector of all the data bits that make the node unique.
316 SmallVector<unsigned, 32> Bits; member in class:llvm::FoldingSetNodeID
322 : Bits(Ref.getData(), Ref.getData() + Ref.getSize()) {}
341 inline void clear() { Bits.clear(); }
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dwindows-nat.c1065 if (!info.HighWord.Bits.Pres)
1070 base = (info.HighWord.Bits.BaseHi << 24) +
1071 (info.HighWord.Bits.BaseMid << 16)
1073 limit = (info.HighWord.Bits.LimitHi << 16) + info.LimitLow;
1074 if (info.HighWord.Bits.Granularity)
1077 if (info.HighWord.Bits.Default_Big)
1081 switch ((info.HighWord.Bits.Type & 0xf) >> 1)
1109 (unsigned long) info.HighWord.Bits.Type);
1111 if ((info.HighWord.Bits.Type & 0x1) == 0)
1114 if ((info.HighWord.Bits
[all...]

Completed in 729 milliseconds

1234567