Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelDAGToDAG.cpp80 bool SelectAddrOperands(MVT AddrType, unsigned ConstOpc, SDValue Op,
338 bool WebAssemblyDAGToDAGISel::SelectAddrOperands(MVT AddrType, in SelectAddrOperands() argument
353 CurDAG->getMachineNode(ConstOpc, DL, AddrType, in SelectAddrOperands()
354 CurDAG->getTargetConstant(0, DL, AddrType)), in SelectAddrOperands()
362 SelectAddrAddOperands(AddrType, N, Offset, Addr)) in SelectAddrOperands()
378 if (OrIsAdd && SelectAddrAddOperands(AddrType, N, Offset, Addr)) in SelectAddrOperands()
384 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, AddrType); in SelectAddrOperands()
386 CurDAG->getMachineNode(ConstOpc, DL, AddrType, in SelectAddrOperands()
387 CurDAG->getTargetConstant(0, DL, AddrType)), in SelectAddrOperands()
393 Offset = CurDAG->getTargetConstant(0, DL, AddrType); in SelectAddrOperands()
H A DWebAssemblyAsmPrinter.cpp261 wasm::ValType AddrType = in getOrCreateWasmSymbol() local
263 Params.push_back(AddrType); in getOrCreateWasmSymbol()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelDAGToDAG.cpp49 enum class AddrType { enum
59 AddrType AM;
83 M68kISelAddressMode(AddrType AT) in M68kISelAddressMode()
109 return AM == AddrType::ARII || AM == AddrType::PCI || in isDispAddrType()
110 AM == AddrType::ARID || AM == AddrType::PCD || AM == AddrType::AL; in isDispAddrType()
117 case AddrType::ARII: in getDispSize()
118 case AddrType::PCI: in getDispSize()
121 case AddrType::ARID: in getDispSize()
122 case AddrType::PCD: in getDispSize()
124 case AddrType::AL: in getDispSize()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DFunction.h269 enum class AddrType : uint8_t { Call, AfterCall }; enum
287 std::pair<AddrType, lldb::addr_t> GetCallerAddress(Function &caller, in GetCallerAddress()
307 CallEdge(AddrType caller_address_type, lldb::addr_t caller_address,
317 return caller_address_type == AddrType::AfterCall && !is_tail_call in GetUnresolvedReturnPCAddress()
324 AddrType caller_address_type;
337 DirectCallEdge(const char *symbol_name, AddrType caller_address_type,
367 AddrType caller_address_type, lldb::addr_t caller_address,
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp127 CallEdge::CallEdge(AddrType caller_address_type, lldb::addr_t caller_address, in CallEdge()
196 AddrType caller_address_type, in DirectCallEdge()
211 AddrType caller_address_type, in IndirectCallEdge()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStackFrameList.cpp251 CallEdge::AddrType address_type = CallEdge::AddrType::Call;
424 calleeInfo.address_type == CallEdge::AddrType::Call; in SynthesizeTailCallFrames()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp4155 CallEdge::AddrType caller_address_type; in CollectCallEdges()
4158 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
4161 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
4164 caller_address_type = CallEdge::AddrType::Call; in CollectCallEdges()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3470 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local
3472 AddrType.addConst(); in CheckARMBuiltinExclusiveCall()
3476 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall()
3479 << PointerArg->getType() << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall()
3484 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall()
3485 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()