Home
last modified time | relevance | path

Searched refs:IsRef (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp203 bool ValueObjectPrinter::IsRef() { in IsRef() function in ValueObjectPrinter
518 const bool is_ref = IsRef(); in ShouldPrintChildren()
592 if (IsRef()) { in PrintChildrenPreamble()
608 ((IsPtr() && !m_options.m_pointer_as_array) || IsRef()); in PrintChild()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp343 for (auto U : PA.Addr->members_if(DFG.IsRef<NodeAttrs::Use>, DFG)) { in getAllReachingDefsRecImpl()
490 if (!DFG.IsRef<NodeAttrs::Def>(R)) in computePhiInfo()
593 if (!DFG.IsRef<NodeAttrs::Use>(I) || SeenUses.count(I.Id)) in computePhiInfo()
675 NodeList PUs = PA.Addr->members_if(DFG.IsRef<NodeAttrs::Use>, DFG); in computePhiInfo()
731 NodeList Ds = PA.Addr->members_if(DFG.IsRef<NodeAttrs::Def>, DFG); in computePhiInfo()
812 for (auto U : PA.Addr->members_if(DFG.IsRef<NodeAttrs::Use>, DFG)) { in computeLiveIns()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Derror.h189 static constexpr bool IsRef = std::is_reference<T>::value; variable
192 using storage_type = std::conditional_t<IsRef, wrap, T>;
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h90 bool IsRef();
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DBitTracker.cpp129 bool IsRef = (V.Type == BT::BitValue::Ref); in operator <<() local
131 if (!IsRef && V == SV) in operator <<()
133 if (IsRef && SV.Type == BT::BitValue::Ref && V.RefI.Reg == SV.RefI.Reg) { in operator <<()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h817 template <uint16_t Kind> static bool IsRef(const Node BA) { in IsRef() function