| /netbsd-src/sys/dev/tc/ |
| H A D | tcdevs | 50 device PMAG-AA mfb Monochrome Frame Buffer 51 device PMAG-BA cfb Color Frame Buffer 55 device PMAG-DV xcfb Maxine Color Frame Buffer 59 device PMAG-JA tfb 24-plane True Color Frame Buffer (TX) 60 device PMAG-JB tfb 24-plane True Color Frame Buffer (TX) 61 device PMAGB-BA sfb Smart Frame Buffer 64 device PMAGB-JA ??? 24-plane True Color Frame Buffer (TX) 65 device PMAGB-JB ??? 24-plane True Color Frame Buffer (TX) 70 device PMAGD sfbp Smart Frame Buffer Plus, unknown bpp 71 device PMAGD-AA sfbp Smart Frame Buffer Plus, 8bpp [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 1494 void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) { in EmitCompactUnwind() argument 1520 uint32_t Encoding = Frame.CompactUnwindEncoding; in EmitCompactUnwind() 1525 if (!DwarfEHFrameOnly && Frame.Lsda) in EmitCompactUnwind() 1531 Streamer.emitSymbolValue(Frame.Begin, Size); in EmitCompactUnwind() 1535 makeEndMinusStartExpr(Context, *Frame.Begin, *Frame.End, 0); in EmitCompactUnwind() 1544 if (!DwarfEHFrameOnly && Frame.Personality) in EmitCompactUnwind() 1545 Streamer.emitSymbolValue(Frame.Personality, Size); in EmitCompactUnwind() 1550 Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding); in EmitCompactUnwind() 1551 if (!DwarfEHFrameOnly && Frame.Lsda) in EmitCompactUnwind() 1552 Streamer.emitSymbolValue(Frame.Lsda, Size); in EmitCompactUnwind() [all …]
|
| H A D | MCStreamer.cpp | 439 MCDwarfFrameInfo Frame; in emitCFIStartProc() local 440 Frame.IsSimple = IsSimple; in emitCFIStartProc() 441 emitCFIStartProcImpl(Frame); in emitCFIStartProc() 448 Frame.CurrentCfaRegister = Inst.getRegister(); in emitCFIStartProc() 453 DwarfFrameInfos.push_back(Frame); in emitCFIStartProc() 456 void MCStreamer::emitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { in emitCFIStartProcImpl() argument 466 void MCStreamer::emitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { in emitCFIEndProcImpl() argument 469 Frame.End = (MCSymbol *)1; in emitCFIEndProcImpl() 975 void MCStreamer::EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) { in EmitWindowsUnwindTables() argument
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| H A D | MipsELFStreamer.cpp | 56 void MipsELFStreamer::emitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { in emitCFIStartProcImpl() argument 57 Frame.Begin = getContext().createTempSymbol(); in emitCFIStartProcImpl() 58 MCELFStreamer::emitLabel(Frame.Begin); in emitCFIStartProcImpl() 67 void MipsELFStreamer::emitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { in emitCFIEndProcImpl() argument 68 Frame.End = getContext().createTempSymbol(); in emitCFIEndProcImpl() 69 MCELFStreamer::emitLabel(Frame.End); in emitCFIEndProcImpl()
|
| H A D | MipsELFStreamer.h | 64 void emitCFIStartProcImpl(MCDwarfFrameInfo &Frame) override; 65 void emitCFIEndProcImpl(MCDwarfFrameInfo &Frame) override;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| H A D | Frame.h | 25 class Frame { 27 virtual ~Frame(); 33 virtual Frame *getCaller() const = 0;
|
| H A D | InterpState.h | 42 Frame *getSplitFrame() { return Parent.getCurrentFrame(); } in getSplitFrame() 43 Frame *getCurrentFrame() override; 45 const Frame *getBottomFrame() const override { in getBottomFrame()
|
| H A D | State.h | 51 class Frame; variable 63 virtual Frame *getCurrentFrame() = 0; 64 virtual const Frame *getBottomFrame() const = 0;
|
| H A D | Frame.cpp | 14 Frame::~Frame() {} in ~Frame()
|
| H A D | State.cpp | 128 Frame *Top = getCurrentFrame(); in addCallStack() 129 const Frame *Bottom = getBottomFrame(); in addCallStack() 130 for (Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) { in addCallStack()
|
| H A D | InterpFrame.h | 29 class InterpFrame final : public Frame { 51 Frame *getCaller() const override;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroElide.cpp | 72 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) { in operandReferences() argument 74 if (!AA.isNoAlias(Op, Frame)) in operandReferences() 86 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) { in removeTailCallAttribute() argument 87 Function &F = *Frame->getFunction(); in removeTailCallAttribute() 90 if (Call->isTailCall() && operandReferences(Call, Frame, AA) && in removeTailCallAttribute() 148 auto *Frame = new AllocaInst(FrameTy, DL.getAllocaAddrSpace(), "", InsertPt); in elideHeapAllocations() local 149 Frame->setAlignment(FrameAlign); in elideHeapAllocations() 151 new BitCastInst(Frame, Type::getInt8PtrTy(C), "vFrame", InsertPt); in elideHeapAllocations() 160 removeTailCallAttribute(Frame, AA); in elideHeapAllocations()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86WinCOFFStreamer.cpp | 29 void EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) override; 44 void X86WinCOFFStreamer::EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) { in EmitWindowsUnwindTables() argument 45 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false); in EmitWindowsUnwindTables()
|
| /netbsd-src/external/gpl3/binutils/dist/libsframe/doc/ |
| H A D | sframe-spec.info | 14 * SFrame: (sframe-spec). The Simple Frame format. 24 stands for Simple Frame format. SFrame format keeps track of the 27 − Canonical Frame Address (CFA). 28 − Frame Pointer (FP). 116 Descriptor Entry (SFrame FDE) sub-section, and the SFrame Frame Row 124 * SFrame Frame Row Entries:: 229 length is given for the last sub-section, the SFrame Frame Row Entry 307 *Note SFrame Frame Row Entries::. 339 File: sframe-spec.info, Node: SFrame Function Descriptor Entries, Next: SFrame Frame Row Entries,… 508 File: sframe-spec.info, Node: SFrame Frame Row Entries, Prev: SFrame Function Descriptor Entries,… [all …]
|
| H A D | sframe-spec.texi | 18 * SFrame: (sframe-spec). The Simple Frame format. 37 Simple Frame format. SFrame format keeps track of the minimal necessary 42 Canonical Frame Address (CFA). 44 Frame Pointer (FP). 130 FDE) sub-section, and the SFrame Frame Row Entry (SFrame FRE) sub-section. 136 * SFrame Frame Row Entries:: 250 last sub-section, the SFrame Frame Row Entry (SFrame FRE) sub-section. 337 elements. @xref{SFrame Frame Row Entries}. 557 @node SFrame Frame Row Entries 561 The SFrame Frame Row Entry sub-section contains the core of the stack trace [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Diagnostics.cpp | 169 static void printContextFrameToStream(const Diagnostics::ContextFrame &Frame, in printContextFrameToStream() argument 171 maybeAddLineAndColumn(Frame.Range, OS); in printContextFrameToStream() 172 formatErrorString(contextTypeToFormatString(Frame.Type), Frame.Args, OS); in printContextFrameToStream()
|
| /netbsd-src/sys/dev/ic/ |
| H A D | sl811hsvar.h | 21 typedef unsigned int Frame; typedef 32 Frame frame; /* current frame */
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugFrameDataSubsection.cpp | 58 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) { in addFrameData() argument 59 Frames.push_back(Frame); in addFrameData()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBContext.cpp | 105 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress() local 107 auto LineNumbers = Frame->findInlineeLinesByVA(Address.Address, Length); in getInliningInfoForAddress() 115 LineInfo.FunctionName = Frame->getName(); in getInliningInfoForAddress()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RTDyldMemoryManager.cpp | 136 for (auto &Frame : EHFrames) in deregisterEHFrames() local 137 deregisterEHFramesInProcess(Frame.Addr, Frame.Size); in deregisterEHFrames()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/ |
| H A D | Hello.java | 17 Frame frame = new Frame("Hello example"); in main()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 452 unsigned Frame = 0; in dumpStack() local 456 Out << "\t#" << Frame << ' '; in dumpStack() 457 ++Frame; in dumpStack() 490 unsigned Frame = 0; in printJson() local 496 Out << '#' << Frame << " Call\", \"calling\": \""; in printJson() 497 ++Frame; in printJson()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64WinCOFFStreamer.cpp | 31 void EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) override; 44 void AArch64WinCOFFStreamer::EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) { in EmitWindowsUnwindTables() argument 45 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false); in EmitWindowsUnwindTables()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFRegisterInfo.td | 43 W10 // Frame Ptr 50 R10 // Frame Ptr
|
| /netbsd-src/sys/external/bsd/acpica/dist/debugger/ |
| H A D | dbdisply.c | 599 ACPI_GENERIC_STATE *Frame; in AcpiDbDisplayResults() local 622 Frame = WalkState->Results; in AcpiDbDisplayResults() 627 ObjDesc = Frame->Results.ObjDesc[Index]; in AcpiDbDisplayResults() 633 Frame = Frame->Results.Next; in AcpiDbDisplayResults()
|