Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelDAGToDAG.cpp48 enum class AddrType { enum
58 AddrType AM;
82 M68kISelAddressMode(AddrType AT) in M68kISelAddressMode()
108 return AM == AddrType::ARII || AM == AddrType::PCI || in isDispAddrType()
109 AM == AddrType::ARID || AM == AddrType::PCD || AM == AddrType::AL; in isDispAddrType()
116 case AddrType::ARII: in getDispSize()
117 case AddrType::PCI: in getDispSize()
120 case AddrType::ARID: in getDispSize()
121 case AddrType::PCD: in getDispSize()
123 case AddrType::AL: in getDispSize()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h273 enum class AddrType : uint8_t { Call, AfterCall }; enum
291 std::pair<AddrType, lldb::addr_t> GetCallerAddress(Function &caller, in GetCallerAddress()
311 CallEdge(AddrType caller_address_type, lldb::addr_t caller_address, in CallEdge()
324 return caller_address_type == AddrType::AfterCall && !is_tail_call in GetUnresolvedReturnPCAddress()
331 AddrType caller_address_type;
344 DirectCallEdge(const char *symbol_name, AddrType caller_address_type, in DirectCallEdge()
377 IndirectCallEdge(DWARFExpression call_target, AddrType caller_address_type, in IndirectCallEdge()
/freebsd-13.1/contrib/ofed/opensm/libvendor/
H A Dosm_vendor_umadt.c539 destAddr.AddrType.Smi.SourceLid = in osm_vendor_send()
542 destAddr.AddrType.Gsi.RemoteQpNumber = in osm_vendor_send()
544 destAddr.AddrType.Gsi.RemoteQkey = in osm_vendor_send()
546 destAddr.AddrType.Gsi.PKey = OSM_DEFAULT_PKEY; in osm_vendor_send()
547 destAddr.AddrType.Gsi.ServiceLevel = in osm_vendor_send()
549 destAddr.AddrType.Gsi.GlobalRoute = in osm_vendor_send()
948 pRecvCmp->AddressInfo.AddrType.Smi.SourceLid; in __mad_recv_processor()
952 pRecvCmp->AddressInfo.AddrType.Gsi.RemoteQpNumber; in __mad_recv_processor()
954 pRecvCmp->AddressInfo.AddrType.Gsi.RemoteQkey; in __mad_recv_processor()
957 pRecvCmp->AddressInfo.AddrType.Gsi.ServiceLevel; in __mad_recv_processor()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp247 CallEdge::AddrType address_type = CallEdge::AddrType::Call;
420 calleeInfo.address_type == CallEdge::AddrType::Call; in SynthesizeTailCallFrames()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp3692 CallEdge::AddrType caller_address_type; in CollectCallEdges()
3695 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
3698 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
3701 caller_address_type = CallEdge::AddrType::Call; in CollectCallEdges()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp2370 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local
2372 AddrType.addConst(); in CheckARMBuiltinExclusiveCall()
2376 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall()
2379 << PointerArg->getType() << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall()
2384 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall()
2385 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()