| /netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| H A D | X86FoldTablesEmitter.cpp | 206 BitInit *Bit = cast<BitInit>(B->getBit(i)); in getValueFromBitsInit() 218 BitInit *Bit1 = cast<BitInit>(B1->getBit(i)); in equalBitsInits() 219 BitInit *Bit2 = cast<BitInit>(B2->getBit(i)); in equalBitsInits()
|
| H A D | X86EVEX2VEXTablesEmitter.cpp | 94 if (BitInit *Bit = dyn_cast<BitInit>(B->getBit(i))) in getValueFromBitsInit()
|
| H A D | CodeBeadsGen.cpp | 104 if (auto *B = dyn_cast<BitInit>(BI->getBit(i))) { in run()
|
| H A D | FixedLenDecoderEmitter.cpp | 193 if (BitInit *bit = dyn_cast<BitInit>(bits.getBit(index))) in bitFromBits() 1995 BitInit *HasCompleteDecoderBit = HasCompleteDecoderVal ? in populateInstruction() 1996 dyn_cast<BitInit>(HasCompleteDecoderVal->getValue()) : nullptr; in populateInstruction() 2055 BitInit *HasCompleteDecoderBit = HasCompleteDecoderVal ? in populateInstruction() 2056 dyn_cast<BitInit>(HasCompleteDecoderVal->getValue()) : nullptr; in populateInstruction() 2067 if (const BitInit *OpBit = dyn_cast<BitInit>(OpBits->getBit(I))) in populateInstruction()
|
| H A D | CodeEmitterGen.cpp | 379 if (BitInit *B = dyn_cast<BitInit>(BI->getBit(e - i - 1))) in emitInstructionBaseValues()
|
| H A D | DFAEmitter.cpp | 335 if (auto *Bit = dyn_cast<BitInit>(NewStateInit->getBit(I))) { in Transition()
|
| H A D | SearchableTableEmitter.cpp | 122 else if (BitInit *BI = dyn_cast<BitInit>(I)) in primaryRepresentation()
|
| H A D | RegisterInfoEmitter.cpp | 1105 if (BitInit *B = dyn_cast<BitInit>(BI->getBit(b))) in runMCDesc()
|
| H A D | InstrInfoEmitter.cpp | 993 if (const auto *Bit = dyn_cast<BitInit>(TSF->getBit(i))) in emitRecord()
|
| H A D | CodeGenSchedule.cpp | 1863 BitInit *Val = cast<BitInit>(MoveElimInfo->getElement(I)); in collectRegisterFiles()
|
| H A D | X86RecognizableInstr.cpp | 42 if (cast<BitInit>(init.getBit(index))->getValue()) in byteFromBitsInit()
|
| H A D | AsmMatcherEmitter.cpp | 1411 if (BitInit *BI = dyn_cast<BitInit>(IsOptional)) in buildOperandClasses()
|
| H A D | CodeGenDAGPatterns.cpp | 2821 if (isa<IntInit>(TheInit) || isa<BitInit>(TheInit)) { in ParseTreePattern() 2824 if (isa<BitInit>(TheInit)) in ParseTreePattern()
|
| H A D | CodeGenRegisters.cpp | 699 RV.setValue(BitInit::get(true)); in expand()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/TableGen/ |
| H A D | Record.cpp | 299 BitInit *BitInit::get(bool V) { in get() 300 static BitInit True(true); in get() 301 static BitInit False(false); in get() 306 Init *BitInit::convertInitializerTo(RecTy *Ty) const { in convertInitializerTo() 308 return const_cast<BitInit *>(this); in convertInitializerTo() 316 return BitsInit::get(const_cast<BitInit *>(this)); in convertInitializerTo() 369 if (auto *Bit = dyn_cast<BitInit>(getBit(i))) in convertInitializerTo() 473 return BitInit::get(Val != 0); in convertInitializerTo() 484 NewBits[i] = BitInit::get(Value & ((i < 64) ? (1LL << i) : 0)); in convertInitializerTo() 500 NewBits[i] = BitInit::get(Value & (INT64_C(1) << Bits[i])); in convertInitializerBitRange() [all …]
|
| H A D | JSONBackend.cpp | 50 } else if (auto *Bit = dyn_cast<BitInit>(&I)) { in translateInit()
|
| H A D | TGParser.cpp | 1469 if (isa<BitInit>(MHS)) in ParseOperation() 1476 if (isa<BitInit>(RHS)) in ParseOperation() 2032 if (isa<BitInit>(V)) in ParseOperationCond() 2102 Bits[i] = BitInit::get(BinaryVal.first & (1LL << i)); in ParseSimpleValue() 3208 ListInit *SingletonList = ListInit::get({BitInit::get(1)}, BitRecTy::get()); in ParseIf()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 470 class BitInit final : public TypedInit { 473 explicit BitInit(bool V) : TypedInit(IK_BitInit, BitRecTy::get()), Value(V) {} in BitInit() function 476 BitInit(const BitInit &) = delete; 477 BitInit &operator=(BitInit &) = delete; 483 static BitInit *get(bool V); 491 return const_cast<BitInit*>(this); in getBit() 576 return BitInit::get((Value & (1ULL << Bit)) != 0); in getBit()
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangSACheckersEmitter.cpp | 66 const auto *Bit = dyn_cast<BitInit>(B->getBit(i)); in getValueFromBitsInit()
|
| H A D | MveEmitter.cpp | 1278 if (auto *BI = dyn_cast<BitInit>(Arg)) in getCodeForDagArg()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/TableGen/ |
| H A D | BackGuide.rst | 290 classes include ``BitInit``, ``BitsInit``, ``DagInit``, ``DefInit``, 297 ``BitInit`` 300 The ``BitInit`` class is a subclass of ``TypedInit``. Its instances 307 the specified value(s). In the case of ``BitInit``, ``get(true)`` returns 308 an instance of ``BitInit`` representing true, while ``get(false)`` returns 311 is exactly one or more than one ``BitInit`` representing true (or false).
|