Home
last modified time | relevance | path

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

1234

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp74 uint64_t ReferenceType; in tryAddingSymbolicOperand() local
79 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch; in tryAddingSymbolicOperand()
91 else if (ReferenceType == in tryAddingSymbolicOperand()
103 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address, in tryAddingSymbolicOperand()
134 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address, in tryAddingSymbolicOperand()
139 else if (ReferenceType == in tryAddingSymbolicOperand()
144 } else if (ReferenceType == in tryAddingSymbolicOperand()
147 else if (ReferenceType == in tryAddingSymbolicOperand()
150 else if (ReferenceType == in tryAddingSymbolicOperand()
153 else if (ReferenceType == in tryAddingSymbolicOperand()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DMCExternalSymbolizer.cpp58 uint64_t ReferenceType; in tryAddingSymbolicOperand() local
60 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch; in tryAddingSymbolicOperand()
62 ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in tryAddingSymbolicOperand()
70 if(ReferenceType == LLVMDisassembler_ReferenceType_DeMangled_Name) in tryAddingSymbolicOperand()
77 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub) in tryAddingSymbolicOperand()
161 else if(ReferenceType == in tryAddingPcLoadReferenceComment()
167 else if(ReferenceType == in tryAddingPcLoadReferenceComment()
170 else if(ReferenceType == in tryAddingPcLoadReferenceComment()
173 else if(ReferenceType == in tryAddingPcLoadReferenceComment()
176 else if(ReferenceType == in tryAddingPcLoadReferenceComment()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DASTSelection.h64 using ReferenceType = std::reference_wrapper<const SelectedASTNode>; member
102 ArrayRef<SelectedASTNode::ReferenceType> getParents() { return Parents; } in getParents()
138 CodeRangeASTSelection(SelectedASTNode::ReferenceType SelectedNode, in CodeRangeASTSelection()
139 ArrayRef<SelectedASTNode::ReferenceType> Parents, in CodeRangeASTSelection()
146 SelectedASTNode::ReferenceType SelectedNode;
148 llvm::SmallVector<SelectedASTNode::ReferenceType, 8> Parents;
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DWithCache.h37 using ReferenceType = conditionally_const_t<UnderlyingType &, IsConst>; variable
68 ReferenceType operator*() const { return *Pointer.getPointer(); }
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.h59 const char *SymbolLookup(uint64_t ReferenceValue, uint64_t *ReferenceType,
67 uint64_t *ReferenceType,
/freebsd/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DASTSelection.cpp252 SelectedASTNode::ReferenceType Node;
253 llvm::SmallVector<SelectedASTNode::ReferenceType, 8> Parents;
345 llvm::SmallVectorImpl<SelectedASTNode::ReferenceType> &ParentStack) { in findDeepestWithKind()
375 llvm::SmallVector<SelectedASTNode::ReferenceType, 16> ParentStack; in findDeepestWithKind()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp32 else if (const ReferenceType *RefTy = T->getAs<ReferenceType>()) in GetUnderlyingFunction()
143 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) { in CheckSpecifiedExceptionType()
691 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); in handlerCanCatch()
846 if (const ReferenceType *RefTy = SubI->getAs<ReferenceType>()) in CheckExceptionSpecSubset()
1053 else if (const ReferenceType *RT = T->getAs<ReferenceType>()) in canCalleeThrow()
H A DSemaTemplateDeduction.cpp1405 const ReferenceType *PRef = P->getAs<ReferenceType>(); in DeduceTemplateArgumentsByTypeMatch()
1410 const ReferenceType *ARef = A->getAs<ReferenceType>(); in DeduceTemplateArgumentsByTypeMatch()
3466 if (const ReferenceType *DeducedARef = DeducedA->getAs<ReferenceType>()) in CheckOriginalCallArgDeduction()
3468 if (const ReferenceType *ARef = A->getAs<ReferenceType>()) in CheckOriginalCallArgDeduction()
3476 if (const ReferenceType *OriginalParamRef in CheckOriginalCallArgDeduction()
3477 = OriginalParamType->getAs<ReferenceType>()) { in CheckOriginalCallArgDeduction()
3982 const ReferenceType *ParamRefType = ParamType->getAs<ReferenceType>(); in AdjustFunctionParmAndArgTypesForDeduction()
4616 if (const ReferenceType *PRef = P->getAs<ReferenceType>()) in DeduceTemplateArguments()
4622 if (const ReferenceType *ARef = A->getAs<ReferenceType>()) { in DeduceTemplateArguments()
4627 if (!FromType->getAs<ReferenceType>()) { in DeduceTemplateArguments()
[all …]
H A DSemaCast.cpp798 const ReferenceType *DestReference = nullptr; in CheckDynamicCast()
801 } else if ((DestReference = DestType->getAs<ReferenceType>())) { in CheckDynamicCast()
1587 const ReferenceType *DestReference = DestType->getAs<ReferenceType>(); in TryStaticReferenceDowncast()
1938 if (const ReferenceType *DestTypeTmp =DestType->getAs<ReferenceType>()) { in TryConstCast()
2052 if (!DestType->getAs<ReferenceType>()) { in CheckCompatibleReinterpretCast()
2267 if (const ReferenceType *DestTypeTmp = DestType->getAs<ReferenceType>()) { in TryReinterpretCast()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DDisassemblerTypes.h120 uint64_t *ReferenceType,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td58 def ReferenceType : TypeNode<Type, 1>;
59 def LValueReferenceType : TypeNode<ReferenceType>;
60 def RValueReferenceType : TypeNode<ReferenceType>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h434 struct CanProxyAdaptor<ReferenceType> : public CanProxyBase<ReferenceType> {
625 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
H A DType.h1784 friend class ReferenceType;
3005 class ReferenceType : public Type, public llvm::FoldingSetNode {
3009 ReferenceType(TypeClass tc, QualType Referencee, QualType CanonicalRef,
3025 const ReferenceType *T = this;
3027 T = T->PointeeType->castAs<ReferenceType>();
3049 class LValueReferenceType : public ReferenceType {
3054 : ReferenceType(LValueReference, Referencee, CanonicalRef,
3067 class RValueReferenceType : public ReferenceType {
7033 if (const auto *RefType = (*this)->getAs<ReferenceType>())
7097 return isa<ReferenceType>(CanonicalType);
[all …]
H A DTextNodeDumper.h314 void VisitRValueReferenceType(const ReferenceType *T);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DFunction.cpp1595 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]); in matchIntrinsicType() local
1598 if ((ReferenceType != nullptr) != (ThisArgType != nullptr)) in matchIntrinsicType()
1602 if (ReferenceType->getElementCount() != in matchIntrinsicType()
1630 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[RefArgNumber]); in matchIntrinsicType() local
1632 if (!ThisArgVecTy || !ReferenceType || in matchIntrinsicType()
1633 (ReferenceType->getElementCount() != ThisArgVecTy->getElementCount())) in matchIntrinsicType()
1640 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]); in matchIntrinsicType() local
1641 return !ReferenceType || Ty != ReferenceType->getElementType(); in matchIntrinsicType()
1660 auto *ReferenceType = dyn_cast<VectorType>(ArgTys[D.getArgumentNumber()]); in matchIntrinsicType() local
1662 if (!ThisArgVecTy || !ReferenceType) in matchIntrinsicType()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DItaniumNodes.def28 NODE(ReferenceType)
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp3357 uint64_t *ReferenceType, in method_reference() argument
6722 uint64_t *ReferenceType, in GuessLiteralPointer() argument
6865 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in SymbolizerSymbolLookUp()
6874 method_reference(info, ReferenceType, ReferenceName); in SymbolizerSymbolLookUp()
6887 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in SymbolizerSymbolLookUp()
6892 method_reference(info, ReferenceType, ReferenceName); in SymbolizerSymbolLookUp()
6894 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in SymbolizerSymbolLookUp()
6904 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in SymbolizerSymbolLookUp()
6936 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in SymbolizerSymbolLookUp()
6964 *ReferenceType = LLVMDisassembler_ReferenceType_InOut_None; in SymbolizerSymbolLookUp()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp273 if (VD->getType()->getAs<ReferenceType>()) in CheckVarDecl()
383 if (V->getType()->getAs<ReferenceType>()) in observeStmt()
H A DGTestChecker.cpp228 auto *RefTy = CtorDecl->getParamDecl(0)->getType()->getAs<ReferenceType>(); in checkPostCall()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransforms.cpp369 else if (const ReferenceType *RT = T->getAs<ReferenceType>()) in isGCOwnedNonObjC()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp556 const ReferenceType *RTy = cast<ReferenceType>(Ty); in ConvertType()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp99 QualType RT = PreferredType->castAs<ReferenceType>()->getPointeeType(); in handleDeclaration()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DQualTypeNames.cpp407 if (isa<ReferenceType>(QT.getTypePtr())) { in getFullyQualifiedType()
H A DType.cpp658 if (const auto *RT = getAs<ReferenceType>()) in getPointeeType()
1808 else if (const auto *RT = getAs<ReferenceType>()) in getPointeeCXXRecordDecl()
1886 Type *VisitReferenceType(const ReferenceType *T) { in VisitReferenceType()
3402 if (const auto *RefType = getTypePtr()->getAs<ReferenceType>()) in getNonLValueExprType()
4303 return Cache::get(cast<ReferenceType>(T)->getPointeeType()); in computeCachedProperties()
4390 return computeTypeLinkageInfo(cast<ReferenceType>(T)->getPointeeType()); in computeTypeLinkageInfo()
4707 if (const auto *Ref = getAs<ReferenceType>()) in isObjCIndirectLifetimeType()
4758 if (const auto *ref = getAs<ReferenceType>()) in hasSizedVLAType()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp870 if (const ReferenceType *RT = T->getAs<ReferenceType>()) { in VisitType()

1234