Home
last modified time | relevance | path

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

1234

/freebsd-13.1/contrib/bearssl/T0/
H A DCPU.cs53 Frame rsp;
67 Frame f = new Frame(rsp, numLocals); in Enter()
168 class Frame { class in CPU
170 internal Frame upper;
175 internal Frame(Frame upper, int numLocals) in Frame() method in CPU.Frame
/freebsd-13.1/contrib/llvm-project/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;
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp1500 makeEndMinusStartExpr(Context, *Frame.Begin, *Frame.End, 0); in EmitCompactUnwind()
1573 if (Frame.Personality) in EmitCIE()
1575 if (Frame.Lsda) in EmitCIE()
1580 if (Frame.IsBKeyFrame) in EmitCIE()
1623 if (Frame.Lsda) in EmitCIE()
1635 EmitPersonality(Streamer, *Frame.Personality, Frame.PersonalityEncoding); in EmitCIE()
1638 if (Frame.Lsda) in EmitCIE()
1648 if (!Frame.IsSimple) { in EmitCIE()
1763 LsdaEncoding(Frame.LsdaEncoding), IsSignalFrame(Frame.IsSignalFrame), in CIEKey()
1764 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg), in CIEKey()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/
H A DFrame.h25 class Frame {
27 virtual ~Frame();
33 virtual Frame *getCaller() const = 0;
H A DFrame.cpp14 Frame::~Frame() {} in ~Frame()
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 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;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroElide.cpp81 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) { in operandReferences() argument
83 if (!AA.isNoAlias(Op, Frame)) in operandReferences()
95 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) { in removeTailCallAttribute() argument
96 Function &F = *Frame->getFunction(); in removeTailCallAttribute()
99 if (Call->isTailCall() && operandReferences(Call, Frame, AA) && in removeTailCallAttribute()
172 auto *Frame = new AllocaInst(FrameTy, DL.getAllocaAddrSpace(), "", InsertPt); in elideHeapAllocations() local
173 Frame->setAlignment(FrameAlign); in elideHeapAllocations()
175 new BitCastInst(Frame, Type::getInt8PtrTy(C), "vFrame", InsertPt); in elideHeapAllocations()
184 removeTailCallAttribute(Frame, AA); in elideHeapAllocations()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugFrameDataSubsection.cpp58 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) { in addFrameData() argument
59 Frames.push_back(Frame); in addFrameData()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp136 for (auto &Frame : EHFrames) in deregisterEHFrames() local
137 deregisterEHFramesInProcess(Frame.Addr, Frame.Size); in deregisterEHFrames()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFRegisterInfo.td43 W10 // Frame Ptr
50 R10 // Frame Ptr
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbdisply.c707 ACPI_GENERIC_STATE *Frame; in AcpiDbDisplayResults() local
730 Frame = WalkState->Results; in AcpiDbDisplayResults()
735 ObjDesc = Frame->Results.ObjDesc[Index]; in AcpiDbDisplayResults()
741 Frame = Frame->Results.Next; in AcpiDbDisplayResults()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp505 unsigned Frame = 0; in dumpStack() local
509 Out << "\t#" << Frame << ' '; in dumpStack()
510 ++Frame; in dumpStack()
543 unsigned Frame = 0; in printJson() local
549 Out << '#' << Frame << " Call\", \"calling\": \""; in printJson()
550 ++Frame; in printJson()
/freebsd-13.1/tools/sched/
H A Dschedgraph.py170 class Scaler(Frame):
200 class Status(Frame):
217 class ColorConf(Frame):
284 self.buttons = Frame(self)
324 class SourceConf(Frame):
370 self.iframe = Frame(self)
374 self.buttons = Frame(self)
535 self.buttons = Frame(self)
537 self.frame = Frame(self)
1290 class GraphMenu(Frame):
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430RegisterInfo.td76 // Frame pointer, sometimes allocable
84 // Frame pointer, sometimes allocable
/freebsd-13.1/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.Bean.ksh.out129 Frame 1
130 Frame 2
131 Frame 3
134 Frame 1
135 Frame 2
136 Frame 3
140 Frame 1
141 Frame 2
142 Frame 3
145 Frame 1
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1318 DILineInfo Frame; in getInliningInfoForAddress() local
1323 InliningInfo.addFrame(Frame); in getInliningInfoForAddress()
1331 DILineInfo Frame; in getInliningInfoForAddress() local
1334 Frame.FunctionName = Name; in getInliningInfoForAddress()
1336 Frame.StartLine = DeclLineResult; in getInliningInfoForAddress()
1339 Frame.StartAddress = LowPcAddr->Address; in getInliningInfoForAddress()
1349 Spec.FLIKind, Frame); in getInliningInfoForAddress()
1356 Frame.Line = CallLine; in getInliningInfoForAddress()
1357 Frame.Column = CallColumn; in getInliningInfoForAddress()
1358 Frame.Discriminator = CallDiscriminator; in getInliningInfoForAddress()
[all …]
/freebsd-13.1/contrib/file/magic/Magdir/
H A Dsniffer116 >20 belong&0x03FFFFFF 107 (Frame Relay
129 >20 belong&0x03FFFFFF 131 (Juniper Multi-Link Frame Relay
132 >20 belong&0x03FFFFFF 134 (Juniper FRF.16 Frame Relay
174 >20 belong&0x03FFFFFF 180 (Juniper Frame Relay
176 >20 belong&0x03FFFFFF 182 (FRF.16 Frame Relay
200 >20 belong&0x03FFFFFF 206 (Frame Relay with direction pseudo-header

1234