/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | OcamlGCPrinter.cpp | 40 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 D | DIE.cpp | 62 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 D | ErlangGCPrinter.cpp | 34 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 D | ByteStreamer.h | 41 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 D | AsmPrinter.cpp | 1122 static void emitKill(const MachineInstr *MI, AsmPrinter &AP) { in emitKill() argument 1129 << printReg(Op.getReg(), AP.MF->getSubtarget().getRegisterInfo()); in emitKill() 1131 AP.OutStreamer->AddComment(Str); in emitKill() 1132 AP.OutStreamer->addBlankLine(); in emitKill() 1138 static bool emitDebugValueComment(const MachineInstr *MI, AsmPrinter &AP) { in emitDebugValueComment() argument 1214 AP.MF->getSubtarget().getFrameLowering(); in emitDebugValueComment() 1215 Offset = TFI->getFrameIndexReference(*AP.MF, Op.getIndex(), Reg); in emitDebugValueComment() 1227 OS << printReg(Reg, AP.MF->getSubtarget().getRegisterInfo()); in emitDebugValueComment() 1238 AP.OutStreamer->emitRawComment(Str); in emitDebugValueComment() 1245 static bool emitDebugLabelComment(const MachineInstr *MI, AsmPrinter &AP) { in emitDebugLabelComment() argument [all …]
|
H A D | AsmPrinterInlineAsm.cpp | 136 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() 370 AsmPrinter *AP = const_cast<AsmPrinter*>(this); in emitInlineAsm() local 371 EmitInlineAsmStr(AsmStr, MI, MMI, MAI, AP, LocCookie, OS); in emitInlineAsm()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VEMCInstLower.cpp | 30 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 = VEMCExpr::create(Kind, Expr, 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 D | HexagonMCInstLower.cpp | 37 MCInst &MCB, HexagonAsmPrinter &AP); 98 MCInst &MCB, HexagonAsmPrinter &AP) { in HexagonLowerToMC() argument 108 AP.EmitSled(*MI, HexagonAsmPrinter::SledKind::FUNCTION_ENTER); in HexagonLowerToMC() 112 AP.EmitSled(*MI, HexagonAsmPrinter::SledKind::FUNCTION_EXIT); in HexagonLowerToMC() 116 AP.EmitSled(*MI, HexagonAsmPrinter::SledKind::TAIL_CALL); in HexagonLowerToMC() 120 MCInst *MCI = AP.OutContext.createMCInst(); in HexagonLowerToMC() 147 AP.OutContext), in HexagonLowerToMC() 148 AP.OutContext); in HexagonLowerToMC() 155 MCConstantExpr::create(MO.getImm(), AP.OutContext), AP.OutContext); in HexagonLowerToMC() 162 AP.OutContext); in HexagonLowerToMC() [all …]
|
/freebsd/contrib/wpa/hostapd/ |
H A D | README-MULTI-AP | 1 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 D | README-WPS | 5 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 D | LoongArchMCInstLower.cpp | 28 const AsmPrinter &AP) { in lowerSymbolOperand() argument 29 MCContext &Ctx = AP.OutContext; in lowerSymbolOperand() 136 const AsmPrinter &AP) { in lowerLoongArchMachineOperandToMCOperand() argument 154 MCOp = lowerSymbolOperand(MO, AP.GetCPISymbol(MO.getIndex()), AP); in lowerLoongArchMachineOperandToMCOperand() 157 MCOp = lowerSymbolOperand(MO, AP.getSymbolPreferLocal(*MO.getGlobal()), AP); in lowerLoongArchMachineOperandToMCOperand() 160 MCOp = lowerSymbolOperand(MO, MO.getMBB()->getSymbol(), AP); in lowerLoongArchMachineOperandToMCOperand() 164 MO, AP.GetExternalSymbolSymbol(MO.getSymbolName()), AP); in lowerLoongArchMachineOperandToMCOperand() 168 MO, AP.GetBlockAddressSymbol(MO.getBlockAddress()), AP); in lowerLoongArchMachineOperandToMCOperand() 171 MCOp = lowerSymbolOperand(MO, AP.GetJTISymbol(MO.getIndex()), AP); in lowerLoongArchMachineOperandToMCOperand() 178 MCInst &OutMI, AsmPrinter &AP) { in lowerLoongArchMachineInstrToMCInst() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcMCInstLower.cpp | 31 AsmPrinter &AP) { in LowerSymbolOperand() argument 44 Symbol = AP.getSymbol(MO.getGlobal()); in LowerSymbolOperand() 48 Symbol = AP.GetBlockAddressSymbol(MO.getBlockAddress()); in LowerSymbolOperand() 52 Symbol = AP.GetExternalSymbolSymbol(MO.getSymbolName()); in LowerSymbolOperand() 56 Symbol = AP.GetCPISymbol(MO.getIndex()); in LowerSymbolOperand() 61 AP.OutContext); in LowerSymbolOperand() 63 AP.OutContext); in LowerSymbolOperand() 69 AsmPrinter &AP) { in LowerOperand() argument 85 return LowerSymbolOperand(MI, MO, AP); in LowerOperand() 95 AsmPrinter &AP) in LowerSparcMachineInstrToMCInst() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCMCInstLower.cpp | 35 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 208 MCSymbolRefExpr::create(MO.getMBB()->getSymbol(), AP.OutContext)); in LowerPPCMachineOperandToMCOperand() 212 OutMO = GetSymbolRef(MO, GetSymbolFromOperand(MO, AP), AP); in LowerPPCMachineOperandToMCOperand() 215 OutMO = GetSymbolRef(MO, AP.GetJTISymbol(MO.getIndex()), AP); in LowerPPCMachineOperandToMCOperand() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | FaultMaps.cpp | 26 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 D | StackMaps.cpp | 166 StackMaps::StackMaps(AsmPrinter &AP) : AP(AP) { in StackMaps() argument 211 const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo(); in parseOperand() 217 auto &DL = AP.MF->getDataLayout(); in parseOperand() 303 AP.MF ? AP.MF->getSubtarget().getRegisterInfo() : nullptr; in print() 385 const TargetRegisterInfo *TRI = AP.MF->getSubtarget().getRegisterInfo(); in parseRegisterLiveOutMask() 497 MCContext &OutContext = AP.OutStreamer->getContext(); in recordStackMapOpers() 519 MCSymbolRefExpr::create(AP in recordStackMapOpers() [all...] |
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | README-WPS | 31 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 D | README-DPP | 6 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/llvm/lib/Support/ |
H A D | PrettyStackTrace.cpp | 238 va_list AP; in PrettyStackTraceFormat() local 239 va_start(AP, Format); in PrettyStackTraceFormat() 240 const int SizeOrError = vsnprintf(nullptr, 0, Format, AP); in PrettyStackTraceFormat() 241 va_end(AP); in PrettyStackTraceFormat() 248 va_start(AP, Format); in PrettyStackTraceFormat() 249 vsnprintf(Str.data(), Size, Format, AP); in PrettyStackTraceFormat() 250 va_end(AP); in PrettyStackTraceFormat()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | GCMetadataPrinter.h | 58 virtual void beginAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) {} in beginAssembly() argument 62 virtual void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) {} in finishAssembly() argument 67 virtual bool emitStackMaps(StackMaps &SM, AsmPrinter &AP) { return false; } in emitStackMaps() argument
|
/freebsd/sys/contrib/device-tree/Bindings/rtc/ |
H A D | rtc-meson-vrtc.txt | 12 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/AMDGPU/ |
H A D | R600MCInstLower.cpp | 27 const AsmPrinter &AP); 35 const AsmPrinter &AP) in R600MCInstLower() argument 36 : AMDGPUMCInstLower(Ctx, ST, AP) {} in R600MCInstLower()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.h | 104 NVPTXAsmPrinter &AP; variable 108 AggBuffer(unsigned size, NVPTXAsmPrinter &AP) in AggBuffer() argument 109 : size(size), buffer(size), AP(AP) { in AggBuffer() 111 EmitGeneric = AP.EmitGeneric; in AggBuffer()
|
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/ |
H A D | marvell,sei.txt | 10 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 D | olpc,ap-sp.txt | 1 OLPC AP-SP serio interface 6 - interrupts : SP-AP interrupt
|
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/ |
H A D | rk3399pro.dtsi | 10 /* Default to enabled since AP talk to NPU part over pcie */ 15 /* Default to enabled since AP talk to NPU part over pcie */
|