Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Target/WebAssembly/
DWebAssemblyISelDAGToDAG.cpp79 bool SelectAddrOperands(MVT AddrType, unsigned ConstOpc, SDValue Op,
322 bool WebAssemblyDAGToDAGISel::SelectAddrOperands(MVT AddrType, in SelectAddrOperands() argument
337 CurDAG->getMachineNode(ConstOpc, DL, AddrType, in SelectAddrOperands()
338 CurDAG->getTargetConstant(0, DL, AddrType)), in SelectAddrOperands()
346 SelectAddrAddOperands(AddrType, N, Offset, Addr)) in SelectAddrOperands()
362 if (OrIsAdd && SelectAddrAddOperands(AddrType, N, Offset, Addr)) in SelectAddrOperands()
368 Offset = CurDAG->getTargetConstant(CN->getZExtValue(), DL, AddrType); in SelectAddrOperands()
370 CurDAG->getMachineNode(ConstOpc, DL, AddrType, in SelectAddrOperands()
371 CurDAG->getTargetConstant(0, DL, AddrType)), in SelectAddrOperands()
377 Offset = CurDAG->getTargetConstant(0, DL, AddrType); in SelectAddrOperands()
DWebAssemblyAsmPrinter.cpp259 wasm::ValType AddrType = in getOrCreateWasmSymbol() local
261 Params.push_back(AddrType); in getOrCreateWasmSymbol()
/openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/
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()
/openbsd/src/gnu/llvm/lldb/source/Target/
DStackFrameList.cpp248 CallEdge::AddrType address_type = CallEdge::AddrType::Call;
421 calleeInfo.address_type == CallEdge::AddrType::Call; in SynthesizeTailCallFrames()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp4042 CallEdge::AddrType caller_address_type; in CollectCallEdges()
4045 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
4048 caller_address_type = CallEdge::AddrType::AfterCall; in CollectCallEdges()
4051 caller_address_type = CallEdge::AddrType::Call; in CollectCallEdges()
/openbsd/src/gnu/llvm/clang/lib/Sema/
DSemaChecking.cpp3129 QualType AddrType = ValType.getUnqualifiedType().withVolatile(); in CheckARMBuiltinExclusiveCall() local
3131 AddrType.addConst(); in CheckARMBuiltinExclusiveCall()
3135 if (!AddrType.isAtLeastAsQualifiedAs(ValType)) { in CheckARMBuiltinExclusiveCall()
3138 << PointerArg->getType() << Context.getPointerType(AddrType) in CheckARMBuiltinExclusiveCall()
3143 AddrType = Context.getPointerType(AddrType); in CheckARMBuiltinExclusiveCall()
3144 PointerArgRes = ImpCastExprToType(PointerArg, AddrType, CastNeeded); in CheckARMBuiltinExclusiveCall()