| /freebsd/libexec/getty/ |
| H A D | subr.c | 199 #define CV(a) (char *)(&tmode.c_cc[a]) macro 203 CV(VERASE), CV(VKILL), CV(VINTR), 204 CV(VQUIT), CV(VSTART), CV(VSTOP), 205 CV(VEOF), CV(VEOL), CV(VSUSP), 206 CV(VDSUSP), CV(VREPRINT), CV(VDISCARD), 207 CV(VWERASE), CV(VLNEXT), 0
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Scalarizer.cpp | 316 void gather(Instruction *Op, const ValueVector &CV, const VectorSplit &VS); 317 void replaceUses(Instruction *Op, Value *CV); 319 void transferMetadataAndIRFlags(Instruction *Op, const ValueVector &CV); 362 ValueVector &CV = CachePtr ? *CachePtr : Tmp; in operator []() local 364 if (CV[Frag]) in operator []() 365 return CV[Frag]; in operator []() 369 CV[Frag] = V; in operator []() 371 CV[Frag] = Builder.CreateConstGEP1_32(VS.SplitTy, V, Frag, in operator []() 373 return CV[Frag]; in operator []() 382 CV[Frag] = in operator []() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRAsmPrinter.cpp | 63 const MCExpr *lowerConstant(const Constant *CV) override; 65 void emitXXStructor(const DataLayout &DL, const Constant *CV) override; 203 const MCExpr *AVRAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 206 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { in lowerConstant() 214 return AsmPrinter::lowerConstant(CV); in lowerConstant() 217 void AVRAsmPrinter::emitXXStructor(const DataLayout &DL, const Constant *CV) { in emitXXStructor() argument 233 AsmPrinter::emitXXStructor(DL, CV); in emitXXStructor()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600MCInstLower.cpp | 75 const MCExpr *R600AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 76 if (const MCExpr *E = lowerAddrSpaceCast(TM, CV, OutContext)) in lowerConstant() 78 return AsmPrinter::lowerConstant(CV); in lowerConstant()
|
| H A D | AMDGPUMCInstLower.cpp | 169 const MCExpr *AMDGPUAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 172 if (const GlobalVariable *GV = dyn_cast<const GlobalVariable>(CV)) { in lowerConstant() 175 auto *IntTy = Type::getInt32Ty(CV->getContext()); in lowerConstant() 180 if (const MCExpr *E = lowerAddrSpaceCast(TM, CV, OutContext)) in lowerConstant() 182 return AsmPrinter::lowerConstant(CV); in lowerConstant()
|
| H A D | AMDGPUMCInstLower.h | 46 const Constant *CV, in lowerAddrSpaceCast() argument 52 auto *CE = dyn_cast<ConstantExpr>(CV); in lowerAddrSpaceCast()
|
| H A D | R600AsmPrinter.h | 33 const MCExpr *lowerConstant(const Constant *CV) override;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFISelDAGToDAG.cpp | 82 bool fillGenericConstant(const DataLayout &DL, const Constant *CV, 389 const Constant *CV, in fillGenericConstant() argument 391 uint64_t Size = DL.getTypeAllocSize(CV->getType()); in fillGenericConstant() 393 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) in fillGenericConstant() 396 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in fillGenericConstant() 413 if (const ConstantDataArray *CDA = dyn_cast<ConstantDataArray>(CV)) in fillGenericConstant() 416 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) in fillGenericConstant() 419 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) in fillGenericConstant()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
| H A D | ObjCARC.cpp | 33 const ColorVector &CV = BlockColors.find(InsertBefore->getParent())->second; in createCallInstWithColors() local 34 assert(CV.size() == 1 && "non-unique color for block!"); in createCallInstWithColors() 35 Instruction *EHPad = CV.front()->getFirstNonPHI(); in createCallInstWithColors()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DirectiveEmitter.cpp | 101 for (const auto &CV : ClauseVals) { in GenerateEnumClauseVal() local 102 ClauseVal CVal{CV}; in GenerateEnumClauseVal() 103 OS << " " << CV->getName() << "=" << CVal.getValue() << ",\n"; in GenerateEnumClauseVal() 109 for (const auto &CV : ClauseVals) { in GenerateEnumClauseVal() local 110 OS << "constexpr auto " << CV->getName() << " = " in GenerateEnumClauseVal() 112 << "::" << CV->getName() << ";\n"; in GenerateEnumClauseVal() 354 auto DefaultIt = llvm::find_if(ClauseVals, [](Record *CV) { in GenerateGetKindClauseVal() argument 355 return CV->getValueAsBit("isDefault") == true; in GenerateGetKindClauseVal() 376 for (const auto &CV : ClauseVals) { in GenerateGetKindClauseVal() local 377 ClauseVal CVal{CV}; in GenerateGetKindClauseVal() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 3131 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 3134 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant() 3137 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant() 3140 if (const ConstantPtrAuth *CPA = dyn_cast<ConstantPtrAuth>(CV)) in lowerConstant() 3143 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant() 3146 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant() 3149 if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(CV)) in lowerConstant() 3152 if (const NoCFIValue *NC = dyn_cast<NoCFIValue>(CV)) in lowerConstant() 3155 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant() 3204 Op = ConstantFoldIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LoopUnrollAnalyzer.cpp | 143 Constant *CV = CDS->getElementAsConstant(Index); in visitLoad() local 144 assert(CV && "Constant expected."); in visitLoad() 145 SimplifiedValues[&I] = CV; in visitLoad()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 880 for (auto *CV : CurrentVisited) { in TryToPromote() local 881 if (auto *I = dyn_cast<Instruction>(CV)) in TryToPromote() 884 if (Sources.count(CV)) { in TryToPromote() 885 if (auto *Arg = dyn_cast<Argument>(CV)) in TryToPromote() 888 if (!isa<Instruction>(CV) || in TryToPromote() 889 !LI.getLoopFor(cast<Instruction>(CV)->getParent())) in TryToPromote() 894 if (isa<PHINode>(CV)) in TryToPromote() 896 if (LI.getLoopFor(cast<Instruction>(CV)->getParent())) in TryToPromote() 898 if (Sinks.count(cast<Instruction>(CV))) in TryToPromote()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FixupVectorConstants.cpp | 97 if (auto *CV = dyn_cast<ConstantVector>(C)) { in extractConstantBits() local 98 if (auto *CVSplat = getSplatValueAllowUndef(CV)) { in extractConstantBits() 106 for (unsigned I = 0, E = CV->getNumOperands(); I != E; ++I) { in extractConstantBits() 107 Constant *Elt = CV->getOperand(I); in extractConstantBits() 162 if (auto *CV = dyn_cast<ConstantVector>(C)) { in getSplatableConstant() local 163 unsigned NumOps = CV->getNumOperands(); in getSplatableConstant() 171 if (Constant *Elt = CV->getAggregateElement(Idx)) { in getSplatableConstant()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
| H A D | Evaluator.h | 118 if (Constant *CV = dyn_cast<Constant>(V)) return CV; in getVal() local
|
| /freebsd/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/ |
| H A D | DirectoryWatcher-windows.cpp | 48 std::condition_variable CV; member in __anon3d5a8a810111::DirectoryWatcherWindows::EventQueue 56 CV.notify_one(); in emplace() 67 CV.wait(L, [this]() { return !Q.empty(); }); in pop_front()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 936 const ConstantVector *CV = dyn_cast<ConstantVector>(C); in getConstantValue() local 942 } else if (CV || CAZ) { in getConstantValue() 960 if(CV) { in getConstantValue() 962 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 964 CV->getOperand(i))->getValueAPF().convertToFloat(); in getConstantValue() 982 if(CV) { in getConstantValue() 984 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 986 CV->getOperand(i))->getValueAPF().convertToDouble(); in getConstantValue() 1004 if(CV) { in getConstantValue() 1006 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | AsmPrinter.h | 491 virtual const MCExpr *lowerConstant(const Constant *CV); 497 void emitGlobalConstant(const DataLayout &DL, const Constant *CV, 572 virtual void emitXXStructor(const DataLayout &DL, const Constant *CV) { in emitXXStructor() argument 573 emitGlobalConstant(DL, CV); in emitXXStructor()
|
| /freebsd/crypto/openssl/test/certs/ |
| H A D | embeddedSCTs1_issuer.pem | 11 CV+w7D/RToI/SgkqSEkdJyEVgbwiyN+RXctc1sLBXif284LHhxk1TOeNoXS5Sw6P
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFTypePrinter.cpp | 569 auto CVStep = [&](DWARFDie CV) { in appendSubroutineNameAfter() argument 570 if (DWARFDie U = resolveReferencedType(CV)) { in appendSubroutineNameAfter() 577 if (DWARFDie CV = CVStep(P)) { in appendSubroutineNameAfter() local 578 CVStep(CV); in appendSubroutineNameAfter()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.h | 192 const MCExpr *lowerConstantForGV(const Constant *CV, bool ProcessingGeneric); 221 void bufferAggregateConstant(const Constant *CV, AggBuffer *aggBuffer);
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | AsmWriter.cpp | 1535 static void WriteConstantInternal(raw_ostream &Out, const Constant *CV, in WriteConstantInternal() argument 1537 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in WriteConstantInternal() 1557 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in WriteConstantInternal() 1574 if (isa<ConstantAggregateZero>(CV) || isa<ConstantTargetNone>(CV)) { in WriteConstantInternal() 1579 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) { in WriteConstantInternal() 1588 if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(CV)) { in WriteConstantInternal() 1594 if (const auto *NC = dyn_cast<NoCFIValue>(CV)) { in WriteConstantInternal() 1600 if (const ConstantPtrAuth *CPA = dyn_cast<ConstantPtrAuth>(CV)) { in WriteConstantInternal() 1621 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in WriteConstantInternal() 1637 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) { in WriteConstantInternal() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | SVals.cpp | 159 QualType VisitCompoundVal(nonloc::CompoundVal CV) { in VisitCompoundVal() argument 160 return CV.getValue()->getType(); in VisitCompoundVal()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrInfo.td | 87 def JAsm#V : FixedCondBranchRI <CV<V>, "j#", 0xA74>; 88 def JGAsm#V : FixedCondBranchRIL<CV<V>, "j{g|l}#", 0xC04>; 90 def BAsm#V : FixedCondBranchRX <CV<V>, "b#", 0x47>; 91 def BRAsm#V : FixedCondBranchRR <CV<V>, "b#r", 0x07>; 92 def BIAsm#V : FixedCondBranchRXY<CV<V>, "bi#", 0xe347>, 584 def SELRAsm#V : FixedCondBinaryRRFa<CV<V>, "selr", 0xB9F0, 586 def SELFHRAsm#V : FixedCondBinaryRRFa<CV<V>, "selfhr", 0xB9C0, 588 def SELGRAsm#V : FixedCondBinaryRRFa<CV<V>, "selgr", 0xB9E3, 625 def LOCHIAsm#V : FixedCondBinaryRIE<CV<V>, "lochi", 0xEC42, GR32, 627 def LOCGHIAsm#V : FixedCondBinaryRIE<CV<V>, "locghi", 0xEC46, GR64, [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMAsmPrinter.h | 104 void emitXXStructor(const DataLayout &DL, const Constant *CV) override;
|