Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDWARFDebugInfoTest.cpp51 const AddrType AddrValue = (AddrType)0x0123456789abcdefULL; in TestAllForms()
390 typedef uint32_t AddrType; in TEST() typedef
403 typedef uint64_t AddrType; typedef
412 typedef uint32_t AddrType; typedef
425 typedef uint64_t AddrType; typedef
434 typedef uint32_t AddrType; typedef
447 typedef uint64_t AddrType; typedef
460 typedef uint32_t AddrType; typedef
473 typedef uint64_t AddrType; typedef
570 typedef uint32_t AddrType; typedef
[all …]
H A DDWARFDieManualExtractTest.cpp25 typedef uint32_t AddrType; in TEST() typedef
27 Triple Triple = getDefaultTargetTripleForAddrSize(sizeof(AddrType)); in TEST()
/llvm-project-15.0.7/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 …]
/llvm-project-15.0.7/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, in CallEdge()
320 return caller_address_type == AddrType::AfterCall && !is_tail_call in GetUnresolvedReturnPCAddress()
327 AddrType caller_address_type;
340 DirectCallEdge(const char *symbol_name, AddrType caller_address_type, in DirectCallEdge()
373 IndirectCallEdge(DWARFExpressionList call_target, AddrType caller_address_type, in IndirectCallEdge()
/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrameList.cpp248 CallEdge::AddrType address_type = CallEdge::AddrType::Call;
421 calleeInfo.address_type == CallEdge::AddrType::Call; in SynthesizeTailCallFrames()
/llvm-project-15.0.7/llvm/lib/Target/WebAssembly/
H A DWebAssemblyAsmPrinter.cpp259 wasm::ValType AddrType = in getOrCreateWasmSymbol() local
261 Params.push_back(AddrType); in getOrCreateWasmSymbol()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp3907 CallEdge::AddrType caller_address_type; in CollectCallEdges()
3910 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
3913 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
3916 caller_address_type = CallEdge::AddrType::Call; in CollectCallEdges()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp3026 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local
3028 AddrType.addConst(); in CheckARMBuiltinExclusiveCall()
3032 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall()
3035 << PointerArg->getType() << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall()
3040 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall()
3041 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()