Home
last modified time | relevance | path

Searched refs:AP (Results 1 – 25 of 188) sorted by relevance

12345678

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DOcamlGCPrinter.cpp40 void beginAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
41 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
51 static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) { in EmitCamlGlobal() argument
67 MCSymbol *Sym = AP.OutContext.getOrCreateSymbol(TmpStr); in EmitCamlGlobal()
69 AP.OutStreamer->emitSymbolAttribute(Sym, MCSA_Global); in EmitCamlGlobal()
70 AP.OutStreamer->emitLabel(Sym); in EmitCamlGlobal()
74 AsmPrinter &AP) { in beginAssembly() argument
75 AP.OutStreamer->switchSection(AP.getObjFileLowering().getTextSection()); in beginAssembly()
76 EmitCamlGlobal(M, AP, "code_begin"); in beginAssembly()
78 AP.OutStreamer->switchSection(AP.getObjFileLowering().getDataSection()); in beginAssembly()
[all …]
H A DDIE.cpp62 void DIEAbbrev::Emit(const AsmPrinter *AP) const { in Emit()
64 AP->emitULEB128(Tag, dwarf::TagString(Tag).data()); in Emit()
67 AP->emitULEB128((unsigned)Children, dwarf::ChildrenString(Children).data()); in Emit()
72 AP->emitULEB128(AttrData.getAttribute(), in Emit()
80 AP->getDwarfVersion())) { in Emit()
82 << " for DWARF version " << AP->getDwarfVersion() in Emit()
87 AP->emitULEB128(AttrData.getForm(), in Emit()
92 AP->emitSLEB128(AttrData.getValue()); in Emit()
96 AP->emitULEB128(0, "EOM(1)"); in Emit()
97 AP->emitULEB128(0, "EOM(2)"); in Emit()
[all …]
H A DErlangGCPrinter.cpp34 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
43 AsmPrinter &AP) { in finishAssembly() argument
44 MCStreamer &OS = *AP.OutStreamer; in finishAssembly()
48 OS.switchSection(AP.getObjFileLowering().getContext().getELFSection( in finishAssembly()
72 AP.emitAlignment(IntPtrSize == 4 ? Align(4) : Align(8)); in finishAssembly()
76 AP.emitInt16(MD.size()); in finishAssembly()
83 AP.emitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/); in finishAssembly()
92 AP.emitInt16(MD.getFrameSize() / IntPtrSize); in finishAssembly()
100 AP.emitInt16(StackArity); in finishAssembly()
104 AP.emitInt16(MD.live_size(PI)); in finishAssembly()
[all …]
H A DByteStreamer.h41 AsmPrinter &AP;
44 APByteStreamer(AsmPrinter &Asm) : AP(Asm) {} in APByteStreamer()
46 AP.OutStreamer->AddComment(Comment); in emitInt8()
47 AP.emitInt8(Byte); in emitInt8()
50 AP.OutStreamer->AddComment(Comment); in emitSLEB128()
51 AP.emitSLEB128(DWord); in emitSLEB128()
55 AP.OutStreamer->AddComment(Comment); in emitULEB128()
56 AP.emitULEB128(DWord, nullptr, PadTo); in emitULEB128()
H A DAsmPrinter.cpp1153 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { in emitKill() argument
1160 << printReg(Op.getReg(), AP.MF->getSubtarget().getRegisterInfo()); in emitKill()
1162 AP.OutStreamer->AddComment(Str); in emitKill()
1163 AP.OutStreamer->addBlankLine(); in emitKill()
1166 static void emitFakeUse(const MachineInstr *MI, AsmPrinter &AP) { in emitFakeUse() argument
1175 OS << ' ' << printReg(Op.getReg(), AP.MF->getSubtarget().getRegisterInfo()); in emitFakeUse()
1177 AP.OutStreamer->AddComment(OS.str()); in emitFakeUse()
1178 AP.OutStreamer->addBlankLine(); in emitFakeUse()
1184 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { in emitDebugValueComment() argument
1260 AP.MF->getSubtarget().getFrameLowering(); in emitDebugValueComment()
[all …]
H A DAsmPrinterInlineAsm.cpp136 AsmPrinter *AP, uint64_t LocCookie, in EmitInlineAsmStr() argument
230 AP->PrintSpecial(MI, OS, StringRef(StrStart, StrEnd - StrStart)); in EmitInlineAsmStr()
300 MCSymbol *Sym = AP->GetBlockAddressSymbol(BA); in EmitInlineAsmStr()
301 Sym->print(OS, AP->MAI); in EmitInlineAsmStr()
305 Sym->print(OS, AP->MAI); in EmitInlineAsmStr()
307 Error = AP->PrintAsmMemoryOperand( in EmitInlineAsmStr()
310 Error = AP->PrintAsmOperand(MI, OpNo, in EmitInlineAsmStr()
361 AsmPrinter *AP = const_cast<AsmPrinter*>(this); in emitInlineAsm() local
362 EmitInlineAsmStr(AsmStr, MI, MMI, MAI, AP, LocCookie, OS); in emitInlineAsm()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEMCInstLower.cpp30 const MCSymbol *Symbol, AsmPrinter &AP) { in LowerSymbolOperand() argument
33 const MCExpr *Expr = MCSymbolRefExpr::create(Symbol, AP.OutContext); in LowerSymbolOperand()
37 Expr, MCConstantExpr::create(MO.getOffset(), AP.OutContext), in LowerSymbolOperand()
38 AP.OutContext); in LowerSymbolOperand()
39 Expr = MCSpecifierExpr::create(Expr, Kind, AP.OutContext); in LowerSymbolOperand()
44 AsmPrinter &AP) { in LowerOperand() argument
56 MI, MO, AP.GetBlockAddressSymbol(MO.getBlockAddress()), AP); in LowerOperand()
58 return LowerSymbolOperand(MI, MO, AP.GetCPISymbol(MO.getIndex()), AP); in LowerOperand()
61 MI, MO, AP.GetExternalSymbolSymbol(MO.getSymbolName()), AP); in LowerOperand()
63 return LowerSymbolOperand(MI, MO, AP.getSymbol(MO.getGlobal()), AP); in LowerOperand()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonMCInstLower.cpp36 MCInst &MCB, HexagonAsmPrinter &AP);
97 MCInst &MCB, HexagonAsmPrinter &AP) { in HexagonLowerToMC() argument
107 AP.EmitSled(*MI, HexagonAsmPrinter::SledKind::FUNCTION_ENTER); in HexagonLowerToMC()
111 AP.EmitSled(*MI, HexagonAsmPrinter::SledKind::FUNCTION_EXIT); in HexagonLowerToMC()
115 AP.EmitSled(*MI, HexagonAsmPrinter::SledKind::TAIL_CALL); in HexagonLowerToMC()
119 MCInst *MCI = AP.OutContext.createMCInst(); in HexagonLowerToMC()
146 AP.OutContext), in HexagonLowerToMC()
147 AP.OutContext); in HexagonLowerToMC()
154 MCConstantExpr::create(MO.getImm(), AP.OutContext), AP.OutContext); in HexagonLowerToMC()
161 AP.OutContext); in HexagonLowerToMC()
[all …]
/freebsd/contrib/wpa/hostapd/
H A DREADME-MULTI-AP1 hostapd, wpa_supplicant and the Multi-AP Specification
5 support the Multi-AP Specification.
7 Introduction to Multi-AP
10 The Wi-Fi Alliance Multi-AP Specification is the technical specification for
12 Multi-AP. It defines control protocols between Wi-Fi® access points (APs) to
17 Most of the Multi-AP specification falls outside of the scope of
28 The text below refers to "Multi-AP Specification v1.0" [3].
34 In a Multi-AP network, the central controller can configure the BSSs on the
42 Multi-AP specification doesn't dictate this, but typically the backhaul link
47 side of the backhaul link is configured through the Multi-AP protocol as the
[all …]
H A DREADME-WPS5 configured and how an external component on an AP (e.g., web UI) is
30 addition of new devices); this may be either in the AP ("internal
35 It should also be noted that the AP and a client device may change
36 roles (i.e., AP acts as an Enrollee and client device as a Registrar)
79 # WPA2-Personal configuration for the AP
97 # WPS configuration (AP configured, do not allow external WPS Registrars)
103 device_name=Wireless AP
137 PINs on the AP for a set of Enrollee).
142 a new device. The AP could use, e.g., a web UI for showing active
146 the AP, but for which there was no PIN. Following information is
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchMCInstLower.cpp27 const AsmPrinter &AP) { in lowerSymbolOperand() argument
28 MCContext &Ctx = AP.OutContext; in lowerSymbolOperand()
141 const AsmPrinter &AP) { in lowerLoongArchMachineOperandToMCOperand() argument
159 MCOp = lowerSymbolOperand(MO, AP.GetCPISymbol(MO.getIndex()), AP); in lowerLoongArchMachineOperandToMCOperand()
162 MCOp = lowerSymbolOperand(MO, AP.getSymbolPreferLocal(*MO.getGlobal()), AP); in lowerLoongArchMachineOperandToMCOperand()
165 MCOp = lowerSymbolOperand(MO, MO.getMBB()->getSymbol(), AP); in lowerLoongArchMachineOperandToMCOperand()
169 MO, AP.GetExternalSymbolSymbol(MO.getSymbolName()), AP); in lowerLoongArchMachineOperandToMCOperand()
173 MO, AP.GetBlockAddressSymbol(MO.getBlockAddress()), AP); in lowerLoongArchMachineOperandToMCOperand()
176 MCOp = lowerSymbolOperand(MO, AP.GetJTISymbol(MO.getIndex()), AP); in lowerLoongArchMachineOperandToMCOperand()
183 MCInst &OutMI, AsmPrinter &AP) { in lowerLoongArchMachineInstrToMCInst() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DFaultMaps.cpp26 FaultMaps::FaultMaps(AsmPrinter &AP) : AP(AP) {} in FaultMaps() argument
31 MCContext &OutContext = AP.OutStreamer->getContext(); in recordFaultingOp()
35 MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext), OutContext); in recordFaultingOp()
39 MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext), OutContext); in recordFaultingOp()
41 FunctionInfos[AP.CurrentFnSym].emplace_back(FaultTy, FaultingOffset, in recordFaultingOp()
49 MCContext &OutContext = AP.OutStreamer->getContext(); in serializeToFaultMapSection()
50 MCStreamer &OS = *AP.OutStreamer; in serializeToFaultMapSection()
78 MCStreamer &OS = *AP.OutStreamer; in emitFunctionInfo()
H A DStackMaps.cpp165 StackMaps::StackMaps(AsmPrinter &AP) : AP(AP) { in StackMaps() argument
210 const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo(); in parseOperand()
216 auto &DL = AP.MF->getDataLayout(); in parseOperand()
296 AP.MF ? AP.MF->getSubtarget().getRegisterInfo() : nullptr; in print()
378 const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo(); in parseRegisterLiveOutMask()
490 MCContext &OutContext = AP.OutStreamer->getContext(); in recordStackMapOpers()
512 MCSymbolRefExpr::create(AP.CurrentFnSymForSize, OutContext), OutContext); in recordStackMapOpers()
518 const MachineFrameInfo &MFI = AP.MF->getFrameInfo(); in recordStackMapOpers()
519 const TargetRegisterInfo *RegInfo = AP.MF->getSubtarget().getRegisterInfo(); in recordStackMapOpers()
521 MFI.hasVarSizedObjects() || RegInfo->hasStackRealignment(*(AP.MF)); in recordStackMapOpers()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp35 AsmPrinter &AP) { in GetSymbolFromOperand() argument
40 return AP.getSymbol(GV); in GetSymbolFromOperand()
46 const DataLayout &DL = AP.getDataLayout(); in GetSymbolFromOperand()
49 MCContext &Ctx = AP.OutContext; in GetSymbolFromOperand()
178 AsmPrinter &AP) { in LowerPPCMachineInstrToMCInst() argument
183 if (LowerPPCMachineOperandToMCOperand(MO, MCOp, AP)) in LowerPPCMachineInstrToMCInst()
189 MCOperand &OutMO, AsmPrinter &AP) { in LowerPPCMachineOperandToMCOperand() argument
214 MCSymbolRefExpr::create(MO.getMBB()->getSymbol(), AP.OutContext)); in LowerPPCMachineOperandToMCOperand()
218 OutMO = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP); in LowerPPCMachineOperandToMCOperand()
221 OutMO = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP); in LowerPPCMachineOperandToMCOperand()
[all …]
/freebsd/contrib/wpa/wpa_supplicant/
H A DREADME-WPS31 addition of new devices); this may be either in the AP ("internal
36 It should also be noted that the AP and a client device may change
37 roles (i.e., AP acts as an Enrollee and client device as a Registrar)
50 configure an AP.
118 AP to access the network.
130 When the wps_pin command is issued for an AP (including P2P GO) mode
144 a button is also pressed at the AP/Registrar at about the same time (2
150 At this point, the AP/Registrar has two minutes to complete WPS
155 current AP configuration and optionally, to configure an AP,
159 wpa_cli wps_reg <AP BSSID> <AP PIN>
[all …]
H A DREADME-DPP6 the STA device and AP can be configured to connect each other using DPP
47 Any STA or AP device can act as a Configurator. Enable DPP in build
48 config. For an AP to act as a Configurator, Interworking needs to be
81 It is assumed that an AP and client station are up by running hostapd
117 AP as an Enrollee is listening on its operating channel.
129 AP. conf is sta-dpp if Enrollee is a client)
135 config file. If the Enrollee is an AP, we need to manually write these
142 To set values in runtime for AP enrollees
153 will automatically connect to the already provisioned AP and connection
171 Sample AP configuration files after provisioning
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp104 void generateDeallocatorMismatchReport(const AllocationPair &AP,
113 generateAllocatedDataNotReleasedReport(const AllocationPair &AP,
119 const AllocationPair &AP) const { in markInteresting()
120 R->markInteresting(AP.first); in markInteresting()
121 R->markInteresting(AP.second->Region); in markInteresting()
220 generateDeallocatorMismatchReport(const AllocationPair &AP, in generateDeallocatorMismatchReport() argument
224 State = State->remove<AllocatedData>(AP.first); in generateDeallocatorMismatchReport()
232 FunctionsToTrack[AP.second->AllocatorIdx].DeallocatorIdx; in generateDeallocatorMismatchReport()
237 Report->addVisitor(std::make_unique<SecKeychainBugVisitor>(AP.first)); in generateDeallocatorMismatchReport()
239 markInteresting(Report.get(), AP); in generateDeallocatorMismatchReport()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPrettyStackTrace.cpp239 va_list AP; in PrettyStackTraceFormat() local
240 va_start(AP, Format); in PrettyStackTraceFormat()
241 const int SizeOrError = vsnprintf(nullptr, 0, Format, AP); in PrettyStackTraceFormat()
242 va_end(AP); in PrettyStackTraceFormat()
249 va_start(AP, Format); in PrettyStackTraceFormat()
250 vsnprintf(Str.data(), Size, Format, AP); in PrettyStackTraceFormat()
251 va_end(AP); in PrettyStackTraceFormat()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DGCMetadataPrinter.h60 virtual void beginAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) {} in beginAssembly() argument
64 virtual void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) {} in finishAssembly() argument
69 virtual bool emitStackMaps(StackMaps &SM, AsmPrinter &AP) { return false; } in emitStackMaps() argument
/freebsd/sys/contrib/device-tree/Bindings/rtc/
H A Drtc-meson-vrtc.txt12 application processors (AP) and the secure co-processor (SCP.) When
13 the AP suspends, the SCP will use the value of this register to
15 the SCP will wake up and will then wake the AP.
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h104 const NVPTXAsmPrinter &AP; variable
108 AggBuffer(unsigned size, const NVPTXAsmPrinter &AP) in AggBuffer() argument
109 : size(size), buffer(size), curpos(0), AP(AP), in AggBuffer()
110 EmitGeneric(AP.EmitGeneric) {} in AggBuffer()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600MCInstLower.cpp27 const AsmPrinter &AP);
35 const AsmPrinter &AP) in R600MCInstLower() argument
36 : AMDGPUMCInstLower(Ctx, ST, AP) {} in R600MCInstLower()
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dmarvell,sei.txt10 AP and is wired while a second set comes from the CPs by the mean of
20 coming from the AP, should be 1. The cell is the IRQ
23 for AP interrupts.
/freebsd/sys/contrib/device-tree/Bindings/serio/
H A Dolpc,ap-sp.txt1 OLPC AP-SP serio interface
6 - interrupts : SP-AP interrupt
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/
H A Drk3399pro.dtsi10 /* Default to enabled since AP talk to NPU part over pcie */
15 /* Default to enabled since AP talk to NPU part over pcie */

12345678