| /openbsd-src/gnu/usr.bin/perl/ext/PerlIO-via/ |
| H A D | via.xs | 18 CV *PUSHED; 19 CV *POPPED; 20 CV *OPEN; 21 CV *FDOPEN; 22 CV *SYSOPEN; 23 CV *GETARG; 24 CV *FILENO; 25 CV *READ; 26 CV *WRITE; 27 CV *FIL [all...] |
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | Scalarizer.cpp | 234 void gather(Instruction *Op, const ValueVector &CV); 235 void replaceUses(Instruction *Op, Value *CV); 237 void transferMetadataAndIRFlags(Instruction *Op, const ValueVector &CV); 306 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); in operator []() local 308 if (CV[I]) in operator []() 309 return CV[I]; in operator []() 313 if (!CV[0]) { in operator []() 316 CV[0] = Builder.CreateBitCast(V, NewPtrTy, V->getName() + ".i0"); in operator []() 319 CV[I] = Builder.CreateConstGEP1_32(VectorElemTy, CV[0], I, in operator []() 335 CV[J] = Insert->getOperand(1); in operator []() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ |
| H A D | pad.c | 24 =for apidoc Amx|PADLIST *|CvPADLIST|CV *cv 26 CV's can have CvPADLIST(cv) set to point to a PADLIST. This is the CV's 30 For these purposes "formats" are a kind-of CV; eval""s are too (except they're 37 every entersub). Do not get or set C<CvPADLIST> if a CV is an XSUB (as 51 at that depth of recursion into the CV. The 0th slot of a frame AV is an 109 is a CV representing a possible closure. 134 part of the pad for the currently-compiling code. (At runtime a CV may 163 Perl_set_padlist(CV * cv, PADLIST *padlist){ in Perl_set_padlist() 184 padnew_CLONE this pad is for a cloned CV [all...] |
| H A D | cv.h | 19 =for apidoc Ayh||CV 22 Null CV pointer. 24 (deprecated - use C<(CV *)NULL> instead) 26 =for apidoc Am|HV*|CvSTASH|CV* cv 27 Returns the stash of the CV. A stash is the symbol table hash, containing 38 # define Nullcv Null(CV*) 47 #define CvGV(sv) Perl_CvGV(aTHX_ (CV *)(sv)) 59 #define CvDEPTH(sv) (*Perl_CvDEPTH((const CV *)sv)) 60 /* For use when you only have a XPVCV*, not a real CV*. 65 #define CvPADLIST(sv) (*(assert_(!CvISXSUB((CV*)(s [all...] |
| H A D | gv.c | 248 Perl_cvgv_set(pTHX_ CV* cv, GV* gv) in Perl_cvgv_set() 291 Perl_cvgv_from_hek(pTHX_ CV *cv) in Perl_cvgv_from_hek() 320 Perl_cvstash_set(pTHX_ CV *cv, HV *st) in Perl_cvstash_set() 517 CV * const cv = (CV *)has_constant; in Perl_gv_init_pvn() 530 CV *cv; in Perl_gv_init_pvn() 536 GvCV_set(gv, (CV *)SvREFCNT_inc_simple_NN(cv)); in Perl_gv_init_pvn() 540 from a reference to CV. */ in Perl_gv_init_pvn() 586 static void core_xsub(pTHX_ CV* cv); 594 CV *c in S_maybe_add_coresub() [all...] |
| /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/ |
| H A D | svpeek.t | 50 is (DPeek (sub {}), '\CV(__ANON__)', 'sub {}'); 81 is (DPeek ($VAR), '\CV(__ANON__)', ' $VAR sub { "VAR" }'); 82 is (DPeek (\$VAR), '\\\CV(__ANON__)', '\$VAR sub { "VAR" }'); 85 is (DPeek ($VAR), '\CV(\x{30cd})', ' $VAR sub \x{30cd} { "VAR" }'); 86 is (DPeek (\$VAR), '\\\\CV(\x{30cd})', '\$VAR sub \x{30cd} { "VAR" }'); 90 is (DPeek (\&VAR), '\CV(VAR)', '\&VAR'); 97 is (DPeek (*VAR{CODE}), '\CV(VAR)', ' *VAR{CODE}');
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlclassguts.pod | 29 CV *xhv_class_initfields_cv; 45 C<xhv_class_initfields_cv> will contain a C<CV *> pointing to a function to be 47 CV is responsible for initializing all the fields defined by this class for a 48 new instance. This CV will be an anonymous real function - i.e. while it has no 53 C<xhv_class_adjust_blocks> may point to an AV containing CV pointers to each of 60 The CVs are stored directly, not via RVs. Each CV will be an anonymous real 91 exists in the C<PADNAMELIST> of its corresponding CV. Methods and other 146 A method is still fundamentally a CV, and has the same basic representation as 148 containing package. It is distinguished from a non-method CV by the fact that 156 CV, so the structure does not add any new fields. [all …]
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | DirectiveEmitter.cpp | 94 for (const auto &CV : ClauseVals) { in GenerateEnumClauseVal() local 95 ClauseVal CVal{CV}; in GenerateEnumClauseVal() 96 OS << " " << CV->getName() << "=" << CVal.getValue() << ",\n"; in GenerateEnumClauseVal() 102 for (const auto &CV : ClauseVals) { in GenerateEnumClauseVal() local 103 OS << "constexpr auto " << CV->getName() << " = " in GenerateEnumClauseVal() 105 << "::" << CV->getName() << ";\n"; in GenerateEnumClauseVal() 314 auto DefaultIt = llvm::find_if(ClauseVals, [](Record *CV) { in GenerateGetKindClauseVal() argument 315 return CV->getValueAsBit("isDefault") == true; in GenerateGetKindClauseVal() 336 for (const auto &CV : ClauseVals) { in GenerateGetKindClauseVal() local 337 ClauseVal CVal{CV}; in GenerateGetKindClauseVal() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AVR/ |
| H A D | AVRAsmPrinter.cpp | 62 const MCExpr *lowerConstant(const Constant *CV) override; 64 void emitXXStructor(const DataLayout &DL, const Constant *CV) override; 208 const MCExpr *AVRAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 211 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) { in lowerConstant() 219 return AsmPrinter::lowerConstant(CV); in lowerConstant() 222 void AVRAsmPrinter::emitXXStructor(const DataLayout &DL, const Constant *CV) { in emitXXStructor() argument 238 AsmPrinter::emitXXStructor(DL, CV); in emitXXStructor()
|
| /openbsd-src/gnu/llvm/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 | 168 const MCExpr *AMDGPUAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 171 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(CV)) { in lowerConstant() 175 Constant *C = ConstantInt::get(CV->getContext(), APInt(32, offset)); 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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/BPF/ |
| H A D | BPFISelDAGToDAG.cpp | 85 bool fillGenericConstant(const DataLayout &DL, const Constant *CV, 394 const Constant *CV, in fillGenericConstant() argument 396 uint64_t Size = DL.getTypeAllocSize(CV->getType()); in fillGenericConstant() 398 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) in fillGenericConstant() 401 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in fillGenericConstant() 418 if (const ConstantDataArray *CDA = dyn_cast<ConstantDataArray>(CV)) in fillGenericConstant() 421 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) in fillGenericConstant() 424 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) in fillGenericConstant()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/usr.bin/perl/ext/attributes/ |
| H A D | attributes.xs | 93 HEK *const hek = CvNAME_HEK((CV *)sv); in modify_SV_attributes() 100 subname=(SV *)CvGV((const CV *)sv); in modify_SV_attributes() 103 Perl_cv_ckproto_len_flags(aTHX_ (const CV *)sv, in modify_SV_attributes() 173 cvflags = CvFLAGS((const CV *)sv);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 2879 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 2882 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant() 2885 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant() 2888 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant() 2891 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant() 2894 if (const auto *Equiv = dyn_cast<DSOLocalEquivalent>(CV)) in lowerConstant() 2897 if (const NoCFIValue *NC = dyn_cast<NoCFIValue>(CV)) in lowerConstant() 2900 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant() 2949 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant() 3171 const ConstantVector *CV, AsmPrinter &AP, in emitGlobalConstantVector() argument [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ext/Devel-Peek/ |
| H A D | Changes | 3 Additional fields for CV added. 15 CV: STASH renamed to COMP_STASH. The package of GV is printed now. 22 New style PADless CV allowed.
|
| /openbsd-src/gnu/usr.bin/perl/ext/Fcntl/ |
| H A D | Fcntl.xs | 37 XS_Fcntl_S_ISREG(pTHX_ CV* cv) in XS_Fcntl_S_ISREG() 88 CV *cv;
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/ |
| H A D | ListUtil.xs | 222 static double MY_callrand(pTHX_ CV *randcv) in MY_callrand() 244 static CV* MY_sv_to_cv(pTHX_ SV* sv, const char * const subname) in MY_sv_to_cv() 248 CV *cv = sv_2cv(sv, &stash, &gv, 0); in MY_sv_to_cv() 554 CV *cv = sv_to_cv(block, ix ? "reductions" : "reduce"); in reduce() 642 CV *cv = sv_to_cv(block, "first"); in first() 712 CV *cv = sv_to_cv(block, in any() 941 CV *cv = sv_to_cv(block, "pairfirst"); in pairfirst() 1020 CV *cv = sv_to_cv(block, "pairgrep"); in pairgrep() 1109 CV *cv = sv_to_cv(block, "pairmap"); in pairmap() 1256 CV * const randcv = randsv && SvROK(randsv) && SvTYPE(SvRV(randsv)) == SVt_PVCV ? in shuffle() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 871 for (auto *CV : CurrentVisited) { in TryToPromote() local 872 if (auto *I = dyn_cast<Instruction>(CV)) in TryToPromote() 875 if (Sources.count(CV)) { in TryToPromote() 876 if (auto *Arg = dyn_cast<Argument>(CV)) in TryToPromote() 879 if (!isa<Instruction>(CV) || in TryToPromote() 880 !LI.getLoopFor(cast<Instruction>(CV)->getParent())) in TryToPromote() 885 if (isa<PHINode>(CV)) in TryToPromote() 887 if (LI.getLoopFor(cast<Instruction>(CV)->getParent())) in TryToPromote() 889 if (Sinks.count(cast<Instruction>(CV))) in TryToPromote()
|
| /openbsd-src/gnu/usr.bin/perl/ext/B/ |
| H A D | B.xs | 40 "B::CV", 468 typedef CV *B__CV; 610 CV *cv; 1154 # return a string representation of op_aux where possible The op's CV is 1161 B::CV cv 1201 # How to interpret each array element is op-dependent. The op's CV is 1208 B::CV cv 1535 B::CV::STASH = PVCV_stash_ix 1536 B::CV::FILE = PVCV_file_ix 1537 B::CV [all...] |
| /openbsd-src/gnu/usr.bin/perl/dist/Attribute-Handlers/ |
| H A D | Changes | 140 Attribute handlers being applied to a temporary CV has actually been 143 after the temporary CV has been merged into the existing CV or has 149 crucially on the order in which the CV construction events occur. So
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/ |
| H A D | ExecutionEngine.cpp | 918 const ConstantVector *CV = dyn_cast<ConstantVector>(C); in getConstantValue() local 924 } else if (CV || CAZ) { in getConstantValue() 942 if(CV) { in getConstantValue() 944 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 946 CV->getOperand(i))->getValueAPF().convertToFloat(); in getConstantValue() 964 if(CV) { in getConstantValue() 966 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 968 CV->getOperand(i))->getValueAPF().convertToDouble(); in getConstantValue() 986 if(CV) { in getConstantValue() 988 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/ |
| H A D | Evaluator.h | 118 if (Constant *CV = dyn_cast<Constant>(V)) return CV; in getVal() local
|