Searched refs:pointer_type (Results 1 – 13 of 13) sorted by relevance
| /llvm-project-15.0.7/mlir/utils/gdb-scripts/ |
| H A D | prettyprinters.py | 27 pointer_type = gdb.lookup_type('mlir::Type').pointer() 28 elements = (self.val.address + 1).cast(pointer_type) 40 pointer_type = gdb.lookup_type('mlir::Location').pointer() 41 elements = (self.val.address + 1).cast(pointer_type)
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 731 assert(pointer_type); in CreateLLDBTypeFromPDBType() 738 pointer_type->getPointeeType()->getSymIndexId()); in CreateLLDBTypeFromPDBType() 742 if (pointer_type->isPointerToDataMember() || in CreateLLDBTypeFromPDBType() 743 pointer_type->isPointerToMemberFunction()) { in CreateLLDBTypeFromPDBType() 756 pointer_type->getLength(), nullptr, LLDB_INVALID_UID, in CreateLLDBTypeFromPDBType() 763 if (pointer_type->isReference()) in CreateLLDBTypeFromPDBType() 765 else if (pointer_type->isRValueReference()) in CreateLLDBTypeFromPDBType() 770 if (pointer_type->isConstType()) in CreateLLDBTypeFromPDBType() 773 if (pointer_type->isVolatileType()) in CreateLLDBTypeFromPDBType() 776 if (pointer_type->isRestrictedType()) in CreateLLDBTypeFromPDBType() [all …]
|
| /llvm-project-15.0.7/llvm/test/Bindings/OCaml/ |
| H A D | core.ml | 218 let c = const_pointer_null (pointer_type i64_type) in 259 let void_ptr = pointer_type i8_type in 312 (const_gep2 i8_type (const_null (pointer_type i8_type)) 362 let pty = pointer_type nsty in 470 insist (pointer_type float_type == 649 insist (pointer_type ty = type_of fn); 983 let void_ptr = pointer_type i8_type in 1108 (const_null (pointer_type (pointer_type i8_type))) 1194 insist((pointer_type (pointer_type i8_type)) = type_of ztid); 1195 let ety = pointer_type (pointer_type i8_type) in [all …]
|
| /llvm-project-15.0.7/llvm/utils/gdb-scripts/ |
| H A D | prettyprinters.py | 398 pointer_type = val.type.template_argument(0) 400 return PointerIntPairPrinter(pointer.cast(pointer_type), 421 pointer_type = val.type.template_argument(int(value)) 422 return PointerUnionPrinter(pointer.cast(pointer_type))
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbAstBuilder.cpp | 857 clang::QualType pointer_type; in CreatePointerType() local 859 pointer_type = m_clang.getASTContext().getLValueReferenceType(pointee_type); in CreatePointerType() 861 pointer_type = m_clang.getASTContext().getRValueReferenceType(pointee_type); in CreatePointerType() 863 pointer_type = m_clang.getASTContext().getPointerType(pointee_type); in CreatePointerType() 866 pointer_type.addConst(); in CreatePointerType() 869 pointer_type.addVolatile(); in CreatePointerType() 872 pointer_type.addRestrict(); in CreatePointerType() 874 return pointer_type; in CreatePointerType()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRForTarget.cpp | 269 const clang::Type *pointer_type = pointer_qual_type.getTypePtr(); in CreateResultVariable() local 272 pointer_type->getAs<clang::PointerType>(); in CreateResultVariable() 274 pointer_type->getAs<clang::ObjCObjectPointerType>(); in CreateResultVariable()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 514 CompilerType pointer_type = compiler_type.GetPointerType(); in DoExecute() local 515 if (pointer_type.IsValid()) in DoExecute() 516 compiler_type = pointer_type; in DoExecute()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObject.cpp | 2989 CompilerType pointer_type(type.GetPointerType()); in CreateValueObjectFromAddress() local 2990 if (pointer_type) { in CreateValueObjectFromAddress() 2994 exe_ctx.GetBestExecutionContextScope(), pointer_type, in CreateValueObjectFromAddress()
|
| /llvm-project-15.0.7/llvm/bindings/ocaml/llvm/ |
| H A D | llvm.mli | 719 (** [pointer_type ty] returns the pointer type referencing objects of type 722 val pointer_type : lltype -> lltype val 1055 equivalent to [const_ptrtoint (const_gep (const_null (pointer_type {i8,ty})) 1061 equivalent to [const_ptrtoint (const_gep (const_null (pointer_type ty))
|
| H A D | llvm.ml | 508 external pointer_type : lltype -> lltype = "llvm_pointer_type"
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | memory | 988 typedef void* pointer_type;
|
| /llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/ |
| H A D | Dwarf.def | 149 HANDLE_DW_TAG(0x000f, pointer_type, 2, DWARF, DW_KIND_TYPE)
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 5450 const clang::PointerType *pointer_type = in GetNumChildren() local 5452 clang::QualType pointee_type(pointer_type->getPointeeType()); in GetNumChildren() 7064 const clang::PointerType *pointer_type = in GetIndexOfChildWithName() local 7066 CompilerType pointee_type = GetType(pointer_type->getPointeeType()); in GetIndexOfChildWithName()
|