Home
last modified time | relevance | path

Searched refs:CV (Results 1 – 25 of 99) sorted by relevance

1234

/freebsd-14-stable/libexec/getty/
HDsubr.c205 #define CV(a) (char *)(&tmode.c_cc[a]) macro
209 CV(VERASE), CV(VKILL), CV(VINTR),
210 CV(VQUIT), CV(VSTART), CV(VSTOP),
211 CV(VEOF), CV(VEOL), CV(VSUSP),
212 CV(VDSUSP), CV(VREPRINT), CV(VDISCARD),
213 CV(VWERASE), CV(VLNEXT), 0
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
HDScalarizer.cpp316 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-14-stable/contrib/llvm-project/llvm/lib/Target/AVR/
HDAVRAsmPrinter.cpp63 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-14-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
HDR600MCInstLower.cpp75 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()
HDAMDGPUMCInstLower.cpp169 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()
HDAMDGPUMCInstLower.h46 const Constant *CV, in lowerAddrSpaceCast() argument
52 auto *CE = dyn_cast<ConstantExpr>(CV); in lowerAddrSpaceCast()
HDR600AsmPrinter.h33 const MCExpr *lowerConstant(const Constant *CV) override;
HDAMDGPUAsmPrinter.h108 const MCExpr *lowerConstant(const Constant *CV) override;
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/BPF/
HDBPFISelDAGToDAG.cpp82 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-14-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
HDObjCARC.cpp33 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-14-stable/contrib/llvm-project/llvm/utils/TableGen/
HDDirectiveEmitter.cpp101 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-14-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDAsmPrinter.cpp3131 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-14-stable/contrib/llvm-project/llvm/lib/Analysis/
HDLoopUnrollAnalyzer.cpp143 Constant *CV = CDS->getElementAsConstant(Index); in visitLoad() local
144 assert(CV && "Constant expected."); in visitLoad()
145 SimplifiedValues[&I] = CV; in visitLoad()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDTypePromotion.cpp880 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-14-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
HDEvaluator.h118 if (Constant *CV = dyn_cast<Constant>(V)) return CV; in getVal() local
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86FixupVectorConstants.cpp97 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-14-stable/contrib/llvm-project/clang/lib/DirectoryWatcher/windows/
HDDirectoryWatcher-windows.cpp48 std::condition_variable CV; member in __anone4b0279b0111::DirectoryWatcherWindows::EventQueue
56 CV.notify_one(); in emplace()
67 CV.wait(L, [this]() { return !Q.empty(); }); in pop_front()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
HDExecutionEngine.cpp936 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-14-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDAsmPrinter.h491 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-14-stable/crypto/openssl/test/certs/
HDembeddedSCTs1_issuer.pem11 CV+w7D/RToI/SgkqSEkdJyEVgbwiyN+RXctc1sLBXif284LHhxk1TOeNoXS5Sw6P
/freebsd-14-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
HDDWARFTypePrinter.cpp569 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-14-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
HDNVPTXAsmPrinter.h192 const MCExpr *lowerConstantForGV(const Constant *CV, bool ProcessingGeneric);
221 void bufferAggregateConstant(const Constant *CV, AggBuffer *aggBuffer);
/freebsd-14-stable/contrib/llvm-project/llvm/lib/IR/
HDAsmWriter.cpp1535 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-14-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDSVals.cpp159 QualType VisitCompoundVal(nonloc::CompoundVal CV) { in VisitCompoundVal() argument
160 return CV.getValue()->getType(); in VisitCompoundVal()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZInstrInfo.td87 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 …]

1234