Home
last modified time | relevance | path

Searched refs:Frame (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/netbsd/sys/dev/tc/
H A Dtcdevs50 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/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCDwarf.cpp1535 makeEndMinusStartExpr(Context, *Frame.Begin, *Frame.End, 0); in EmitCompactUnwind()
1608 if (Frame.Personality) in EmitCIE()
1610 if (Frame.Lsda) in EmitCIE()
1615 if (Frame.IsBKeyFrame) in EmitCIE()
1658 if (Frame.Lsda) in EmitCIE()
1670 EmitPersonality(Streamer, *Frame.Personality, Frame.PersonalityEncoding); in EmitCIE()
1673 if (Frame.Lsda) in EmitCIE()
1683 if (!Frame.IsSimple) { in EmitCIE()
1798 LsdaEncoding(Frame.LsdaEncoding), IsSignalFrame(Frame.IsSignalFrame), in CIEKey()
1799 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg), in CIEKey()
[all …]
H A DMCStreamer.cpp439 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/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp56 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 DMipsELFStreamer.h64 void emitCFIStartProcImpl(MCDwarfFrameInfo &Frame) override;
65 void emitCFIEndProcImpl(MCDwarfFrameInfo &Frame) override;
/netbsd/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DFrame.h25 class Frame {
27 virtual ~Frame();
33 virtual Frame *getCaller() const = 0;
H A DInterpState.h42 Frame *getSplitFrame() { return Parent.getCurrentFrame(); } in getSplitFrame()
43 Frame *getCurrentFrame() override;
45 const Frame *getBottomFrame() const override { in getBottomFrame()
H A DState.h51 class Frame; variable
63 virtual Frame *getCurrentFrame() = 0;
64 virtual const Frame *getBottomFrame() const = 0;
H A DFrame.cpp14 Frame::~Frame() {} in ~Frame()
H A DState.cpp128 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 DInterpFrame.h29 class InterpFrame final : public Frame {
51 Frame *getCaller() const override;
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp72 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/external/gpl3/gdb/dist/gdb/stubs/
H A Dm68k-stub.c173 } Frame; typedef
177 static Frame *lastFrame;
481 _returnFromException (Frame * frame) in _returnFromException()
822 Frame *frame; in handle_exception()
999 frame = (Frame *) 0; in handle_exception()
1043 lastFrame = ((Frame *) & gdbFrameStack[FRAMESIZE - 1]) - 1; in initializeRemcomErrorFrame()
/netbsd/external/gpl3/gdb.old/dist/gdb/stubs/
H A Dm68k-stub.c173 } Frame; typedef
177 static Frame *lastFrame;
481 _returnFromException (Frame * frame) in _returnFromException()
822 Frame *frame; in handle_exception()
999 frame = (Frame *) 0; in handle_exception()
1043 lastFrame = ((Frame *) & gdbFrameStack[FRAMESIZE - 1]) - 1; in initializeRemcomErrorFrame()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86WinCOFFStreamer.cpp29 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/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp169 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/sys/dev/ic/
H A Dsl811hsvar.h21 typedef unsigned int Frame; typedef
32 Frame frame; /* current frame */
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp58 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) { in addFrameData() argument
59 Frames.push_back(Frame); in addFrameData()
/netbsd/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp105 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/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp136 for (auto &Frame : EHFrames) in deregisterEHFrames() local
137 deregisterEHFramesInProcess(Frame.Addr, Frame.Size); in deregisterEHFrames()
/netbsd/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/
H A DHello.java17 Frame frame = new Frame("Hello example"); in main()
/netbsd/external/apache2/llvm/dist/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp452 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/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64WinCOFFStreamer.cpp31 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/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFRegisterInfo.td43 W10 // Frame Ptr
50 R10 // Frame Ptr
/netbsd/sys/external/bsd/acpica/dist/debugger/
H A Ddbdisply.c599 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()

12345678910>>...12