Home
last modified time | relevance | path

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

123456789

/openbsd-src/gnu/usr.bin/perl/ext/PerlIO-via/
H A Dvia.xs18 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 DScalarizer.cpp234 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 Dpad.c24 =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 Dcv.h19 =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 Dgv.c248 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 Dsvpeek.t50 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 Dperlclassguts.pod29 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 DDirectiveEmitter.cpp94 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 DAVRAsmPrinter.cpp62 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 DR600MCInstLower.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()
H A DAMDGPUMCInstLower.cpp168 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 DAMDGPUMCInstLower.h46 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 DBPFISelDAGToDAG.cpp85 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 DObjCARC.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()
/openbsd-src/gnu/usr.bin/perl/ext/attributes/
H A Dattributes.xs93 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 DAsmPrinter.cpp2879 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 DChanges3 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 DFcntl.xs37 XS_Fcntl_S_ISREG(pTHX_ CV* cv) in XS_Fcntl_S_ISREG()
88 CV *cv;
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopUnrollAnalyzer.cpp143 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 DListUtil.xs222 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 DTypePromotion.cpp871 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 DB.xs40 "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 DChanges140 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 DExecutionEngine.cpp918 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 DEvaluator.h118 if (Constant *CV = dyn_cast<Constant>(V)) return CV; in getVal() local

123456789