Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/include/llvm/Support/
DValueHandle.h62 PointerIntPair<Value*, 2> VP; variable
67 : PrevPair(0, Kind), Next(0), VP(0, 0) {} in ValueHandleBase()
69 : PrevPair(0, Kind), Next(0), VP(V, 0) { in ValueHandleBase()
70 if (isValid(VP.getPointer())) in ValueHandleBase()
74 : PrevPair(0, Kind), Next(0), VP(RHS.VP) { in ValueHandleBase()
75 if (isValid(VP.getPointer())) in ValueHandleBase()
79 if (isValid(VP.getPointer())) in ~ValueHandleBase()
84 if (VP.getPointer() == RHS) return RHS;
85 if (isValid(VP.getPointer())) RemoveFromUseList();
86 VP.setPointer(RHS);
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DOwnership.h190 void *VP = PtrTraits::getAsVoidPointer(V);
191 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
204 void *VP = reinterpret_cast<void *>(PtrWithInvalid & ~0x01);
205 return PtrTraits::getFromVoidPointer(VP);
213 void *VP = PtrTraits::getAsVoidPointer(V);
214 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
219 void *VP = PtrTraits::getAsVoidPointer(RHS);
220 PtrWithInvalid = reinterpret_cast<uintptr_t>(VP);
/freebsd-10-stable/contrib/llvm/lib/IR/
DValue.cpp534 assert(VP.getPointer() == Next->VP.getPointer() && "Added to wrong list?"); in AddToExistingUseList()
550 assert(VP.getPointer() && "Null pointer doesn't have a use list!"); in AddToUseList()
552 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl; in AddToUseList()
554 if (VP.getPointer()->HasValueHandle) { in AddToUseList()
557 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()]; in AddToUseList()
571 ValueHandleBase *&Entry = Handles[VP.getPointer()]; in AddToUseList()
574 VP.getPointer()->HasValueHandle = true; in AddToUseList()
586 assert(I->second && I->first == I->second->VP.getPointer() && in AddToUseList()
594 assert(VP.getPointer() && VP.getPointer()->HasValueHandle && in RemoveFromUseList()
611 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl; in RemoveFromUseList()
[all …]
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
DPointerUnion.h172 static inline PointerUnion getFromOpaqueValue(void *VP) {
174 V.Val = ValTy::getFromOpaqueValue(VP);
317 static inline PointerUnion3 getFromOpaqueValue(void *VP) {
319 V.Val = ValTy::getFromOpaqueValue(VP);
430 static inline PointerUnion4 getFromOpaqueValue(void *VP) {
432 V.Val = ValTy::getFromOpaqueValue(VP);
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp1298 VPPair VP(P, ValuePair(*I, *J)); in computePairsConnectedTo() local
1299 ConnectedPairs[VP.first].push_back(VP.second); in computePairsConnectedTo()
1300 PairConnectionTypes.insert(VPPairWithType(VP, PairConnectionDirect)); in computePairsConnectedTo()
1305 VPPair VP(P, ValuePair(*J, *I)); in computePairsConnectedTo() local
1306 ConnectedPairs[VP.first].push_back(VP.second); in computePairsConnectedTo()
1307 PairConnectionTypes.insert(VPPairWithType(VP, PairConnectionSwap)); in computePairsConnectedTo()
1320 VPPair VP(P, ValuePair(*I, *J)); in computePairsConnectedTo() local
1321 ConnectedPairs[VP.first].push_back(VP.second); in computePairsConnectedTo()
1322 PairConnectionTypes.insert(VPPairWithType(VP, PairConnectionSplat)); in computePairsConnectedTo()
1344 VPPair VP(P, ValuePair(*I, *J)); in computePairsConnectedTo() local
[all …]
/freebsd-10-stable/sys/sys/
Dmount.h766 #define VFS_RECLAIM_LOWERVP(MP, VP) do { \ argument
769 (*(MP)->mnt_op->vfs_reclaim_lowervp)((MP), (VP)); \
774 #define VFS_UNLINK_LOWERVP(MP, VP) do { \ argument
777 (*(MP)->mnt_op->vfs_unlink_lowervp)((MP), (VP)); \
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
DStackColoring.cpp490 std::pair<unsigned, DebugLoc> &VP = VI->second; in remapInstructions() local
491 if (SlotRemap.count(VP.first)) { in remapInstructions()
493 VP.first = SlotRemap[VP.first]; in remapInstructions()
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
DBreakCriticalEdges.cpp106 if (const PHINode *VP = dyn_cast<PHINode>(V)) in createPHIsForSplitLoopExit() local
107 if (VP->getParent() == SplitBB) in createPHIsForSplitLoopExit()
/freebsd-10-stable/contrib/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.cpp1351 DITemplateValueParameter VP) { in constructTemplateValueParameterDIE() argument
1352 DIE *ParamDIE = createAndAddDIE(VP.getTag(), Buffer); in constructTemplateValueParameterDIE()
1356 if (VP.getTag() == dwarf::DW_TAG_template_value_parameter) in constructTemplateValueParameterDIE()
1357 addType(ParamDIE, resolve(VP.getType())); in constructTemplateValueParameterDIE()
1358 if (!VP.getName().empty()) in constructTemplateValueParameterDIE()
1359 addString(ParamDIE, dwarf::DW_AT_name, VP.getName()); in constructTemplateValueParameterDIE()
1360 if (Value *Val = VP.getValue()) { in constructTemplateValueParameterDIE()
1363 isUnsignedDIType(DD, resolve(VP.getType()))); in constructTemplateValueParameterDIE()
1373 } else if (VP.getTag() == dwarf::DW_TAG_GNU_template_template_param) { in constructTemplateValueParameterDIE()
1377 } else if (VP.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack) { in constructTemplateValueParameterDIE()
DDwarfDebug.cpp1315 const std::pair<unsigned, DebugLoc> &VP = VI->second; in collectVariableInfoFromMMITable() local
1317 LexicalScope *Scope = LScopes.findLexicalScope(VP.second); in collectVariableInfoFromMMITable()
1323 DbgVariable *AbsDbgVariable = findAbstractVariable(DV, VP.second); in collectVariableInfoFromMMITable()
1325 RegVar->setFrameIndex(VP.first); in collectVariableInfoFromMMITable()
1329 AbsDbgVariable->setFrameIndex(VP.first); in collectVariableInfoFromMMITable()
/freebsd-10-stable/contrib/llvm/lib/Linker/
DLinkModules.cpp1148 Value **VP, **Values = VP = new Value*[NumOps]; in linkModuleFlagsMetadata() local
1149 for (unsigned i = 0, e = DstValue->getNumOperands(); i != e; ++i, ++VP) in linkModuleFlagsMetadata()
1150 *VP = DstValue->getOperand(i); in linkModuleFlagsMetadata()
1151 for (unsigned i = 0, e = SrcValue->getNumOperands(); i != e; ++i, ++VP) in linkModuleFlagsMetadata()
1152 *VP = SrcValue->getOperand(i); in linkModuleFlagsMetadata()
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
Dzfs_znode.h243 #define VTOZ(VP) ((znode_t *)(VP)->v_data) argument
/freebsd-10-stable/share/syscons/fonts/
Dkoi8-u-8x8.fnt46 M`'QF9F9\8&``/&9@8&!F/`!^&!@8&!@8`&9F9CX&9CP`V]M^/'[;VP!\9F9\
Dkoi8-r-8x8.fnt46 M`'QF9F9\8&``/&9@8&!F/`!^&!@8&!@8`&9F9CX&9CP`V]M^/'[;VP!\9F9\
Dcp1251-8x8.fnt38 MQGY@8'Q@8'X`V]M^/'[;VP`\9@8<!F8\`&9F;GYV9F8`/&9N?G9F9@!F;'AP
Dcp1251-8x14.fnt44 M``````````````!F9F;,``````````````#;VP``````&!C^&!@8&!@8````
Dcp1251-8x16.fnt50 M````````9F9FS`````````````````#;VP```````!@8&/X8&!@8&!@`````
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp615 if (const PHINode *VP = dyn_cast<PHINode>(I)) in CanSelectOperandBeMappingIntoPredBlock() local
616 if (VP->getParent() == CondPHI->getParent()) in CanSelectOperandBeMappingIntoPredBlock()
/freebsd-10-stable/contrib/sendmail/contrib/
Dmail.local.linux160 MO"4EJ$7IR!97@@VP`3>`!@R&CF`#8*,,4`RI2"0TAL?@$IPC9=B+F,$O4A?U
/freebsd-10-stable/contrib/ntp/
Dconfigure.ac2361 AC_MSG_CHECKING([for ONCORE Motorola VP/UT Oncore GPS])
2366 [s Motorola VP/UT Oncore GPS receiver]
DCommitLog162585 on the VP and extract LEAP SECOND information. See the code for a more complete
162637 on the VP and extract LEAP SECOND information. See the code for a more complete
/freebsd-10-stable/sys/contrib/ngatm/netnatm/msg/
Duni_ie.c4312 MKT(UNI_BEARER_TVP, transparent-VP), in DEF_IE_PRINT()
/freebsd-10-stable/contrib/bmake/
Dbmake.cat11510 … and !!==. The ..PPAATTHH functionality is based on an older feature VVPPAATTHH found
/freebsd-10-stable/share/misc/
Dpci_vendors11618 0586 VT82C586/A/B PCI-to-ISA [Apollo VP]
/freebsd-10-stable/contrib/ncurses/misc/
Dterminfo.src17533 # (known now only by the initials VP) who said, the mighty Jerq must stay