/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelDAGToDAG.cpp | 78 bool SelectAddrOperands(MVT AddrType, unsigned ConstOpc, SDValue Op, 359 bool WebAssemblyDAGToDAGISel::SelectAddrOperands(MVT AddrType, in SelectAddrOperands() argument 374 CurDAG->getMachineNode(ConstOpc, DL, AddrType, in SelectAddrOperands() 375 CurDAG->getTargetConstant(0, DL, AddrType)), in SelectAddrOperands() 383 SelectAddrAddOperands(AddrType, N, Offset, Addr)) in SelectAddrOperands() 399 if (OrIsAdd && SelectAddrAddOperands(AddrType, N, Offset, Addr)) in SelectAddrOperands() 405 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, AddrType); in SelectAddrOperands() 407 CurDAG->getMachineNode(ConstOpc, DL, AddrType, in SelectAddrOperands() 408 CurDAG->getTargetConstant(0, DL, AddrType)), in SelectAddrOperands() 414 Offset = CurDAG->getTargetConstant(0, DL, AddrType); in SelectAddrOperands()
|
H A D | WebAssemblyAsmPrinter.cpp | 265 wasm::ValType AddrType = in getOrCreateWasmSymbol() local 267 Params.push_back(AddrType); in getOrCreateWasmSymbol()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kISelDAGToDAG.cpp | 49 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/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | Function.h | 269 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, in CallEdge() 317 return caller_address_type == AddrType::AfterCall && !is_tail_call 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/contrib/ofed/opensm/libvendor/ |
H A D | osm_vendor_umadt.c | 539 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/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaARM.cpp | 913 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local 915 AddrType.addConst(); in CheckARMBuiltinExclusiveCall() 919 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall() 922 << PointerArg->getType() << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall() 927 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall() 928 PointerArgRes = SemaRef.ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Function.cpp | 127 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/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrameList.cpp | 251 CallEdge::AddrType address_type = CallEdge::AddrType::Call; 424 calleeInfo.address_type == CallEdge::AddrType::Call; in SynthesizeTailCallFrames()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ScalarizeMaskedMemIntrin.cpp | 875 auto *AddrType = cast<FixedVectorType>(Ptrs->getType()); in scalarizeMaskedVectorHistogram() local 885 unsigned VectorWidth = AddrType->getNumElements(); in scalarizeMaskedVectorHistogram()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 812 bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) const; 1918 virtual bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) = 0; 2432 bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) override { in isLegalMaskedVectorHistogram() argument 2433 return Impl.isLegalMaskedVectorHistogram(AddrType, DataType); in isLegalMaskedVectorHistogram()
|
H A D | TargetTransformInfoImpl.h | 326 bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) const { in isLegalMaskedVectorHistogram() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 524 bool TargetTransformInfo::isLegalMaskedVectorHistogram(Type *AddrType, in isLegalMaskedVectorHistogram() argument 526 return TTIImpl->isLegalMaskedVectorHistogram(AddrType, DataType); in isLegalMaskedVectorHistogram()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARF.cpp | 4136 CallEdge::AddrType caller_address_type; in CollectCallEdges() 4139 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges() 4142 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges() 4145 caller_address_type = CallEdge::AddrType::Call; in CollectCallEdges()
|