| /openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| H A D | MemProf.h | 142 struct Frame { struct 157 Frame(const Frame &Other) { in Frame() function 165 Frame(uint64_t Hash, uint32_t Off, uint32_t Col, bool Inline) in Frame() function 168 bool operator==(const Frame &Other) const { 175 Frame &operator=(const Frame &Other) { 184 bool operator!=(const Frame &Other) const { return !operator==(Other); } 204 static Frame deserialize(const unsigned char *Ptr) { in deserialize() argument 211 return Frame(/*Function=*/F, /*LineOffset=*/L, /*Column=*/C, in deserialize() 217 return sizeof(Frame::Function) + sizeof(Frame::LineOffset) + in serializedSize() argument 218 sizeof(Frame::Column) + sizeof(Frame::IsInlineFrame); in serializedSize() [all …]
|
| H A D | RawMemProfReader.h | 92 const llvm::DenseMap<FrameId, Frame> &getFrameMapping() const { in getFrameMapping() 120 const Frame &idToFrame(const FrameId Id) const { in idToFrame() 140 llvm::DenseMap<FrameId, Frame> IdToFrame;
|
| H A D | InstrProfWriter.h | 52 llvm::MapVector<memprof::FrameId, memprof::Frame> MemProfFrameData; 83 bool addMemProfFrame(const memprof::FrameId, const memprof::Frame &F,
|
| /openbsd-src/gnu/llvm/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;
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 1486 void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) { in EmitCompactUnwind() argument 1512 uint32_t Encoding = Frame.CompactUnwindEncoding; in EmitCompactUnwind() 1517 if (!DwarfEHFrameOnly && Frame.Lsda) in EmitCompactUnwind() 1523 Streamer.emitSymbolValue(Frame.Begin, Size); in EmitCompactUnwind() 1527 makeEndMinusStartExpr(Context, *Frame.Begin, *Frame.End, 0); in EmitCompactUnwind() 1536 if (!DwarfEHFrameOnly && Frame.Personality) in EmitCompactUnwind() 1537 Streamer.emitSymbolValue(Frame.Personality, Size); in EmitCompactUnwind() 1542 Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding); in EmitCompactUnwind() 1543 if (!DwarfEHFrameOnly && Frame.Lsda) in EmitCompactUnwind() 1544 Streamer.emitSymbolValue(Frame.Lsda, Size); in EmitCompactUnwind() [all …]
|
| /openbsd-src/sys/dev/tc/ |
| H A D | tcdevs | 45 device PMAG-AA mfb Monochrome Frame Buffer 46 device PMAG-BA cfb Color Frame Buffer 54 device PMAGB-BA sfb Smart Frame Buffer (HX8) 59 device PMAGD-AA sfbp Smart Frame Buffer Plus, 8bpp (ZLX-E1) 60 device PMAGD-BA sfbp Smart Frame Buffer Plus, 32bpp (ZLX-E2) 61 device PMAGD-CA sfbp Smart Frame Buffer Plus, 32bpp (ZLX-E3) 67 device PMAG-DV xcfb Maxine Color Frame Buffer 68 device PMAG-JA ??? 24-plane True Color Frame Buffer (TX) 69 device PMAGD sfbp Smart Frame Buffer Plus, unknown bpp 85 #device PMAG-JB tx 24-plane True Color Frame Buffer (TX) [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/AST/Interp/ |
| H A D | Frame.h | 25 class Frame { 27 virtual ~Frame(); 33 virtual Frame *getCaller() const = 0;
|
| H A D | Frame.cpp | 14 Frame::~Frame() {} in ~Frame()
|
| 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 | 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 { 57 Frame *getCaller() const override;
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroElide.cpp | 80 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) { in operandReferences() argument 82 if (!AA.isNoAlias(Op, Frame)) in operandReferences() 94 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) { in removeTailCallAttribute() argument 95 Function &F = *Frame->getFunction(); in removeTailCallAttribute() 98 if (Call->isTailCall() && operandReferences(Call, Frame, AA) && in removeTailCallAttribute() 163 auto *Frame = new AllocaInst(FrameTy, DL.getAllocaAddrSpace(), "", InsertPt); in elideHeapAllocations() local 164 Frame->setAlignment(FrameAlign); in elideHeapAllocations() 166 new BitCastInst(Frame, Type::getInt8PtrTy(C), "vFrame", InsertPt); in elideHeapAllocations() 175 removeTailCallAttribute(Frame, AA); in elideHeapAllocations()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86WinCOFFStreamer.cpp | 30 void emitWindowsUnwindTables(WinEH::FrameInfo *Frame) override; 45 void X86WinCOFFStreamer::emitWindowsUnwindTables(WinEH::FrameInfo *Frame) { in emitWindowsUnwindTables() argument 46 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false); in emitWindowsUnwindTables()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | m68k-stub.c | 173 } 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()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugFrameDataSubsection.cpp | 60 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) { in addFrameData() argument 61 Frames.push_back(Frame); in addFrameData()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/ |
| H A D | PDBContext.cpp | 114 while (auto Frame = Frames->getNext()) { in getInliningInfoForAddress() local 116 auto LineNumbers = Frame->findInlineeLinesByVA(Address.Address, Length); in getInliningInfoForAddress() 124 LineInfo.FunctionName = Frame->getName(); in getInliningInfoForAddress()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/BPF/ |
| H A D | BPFRegisterInfo.td | 43 W10 // Frame Ptr 50 R10 // Frame Ptr
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 504 unsigned Frame = 0; in dumpStack() local 508 Out << "\t#" << Frame << ' '; in dumpStack() 509 ++Frame; in dumpStack() 542 unsigned Frame = 0; in printJson() local 548 Out << '#' << Frame << " Call\", \"calling\": \""; in printJson() 549 ++Frame; in printJson()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMWinCOFFStreamer.cpp | 32 void emitWindowsUnwindTables(WinEH::FrameInfo *Frame) override; 47 void ARMWinCOFFStreamer::emitWindowsUnwindTables(WinEH::FrameInfo *Frame) { in emitWindowsUnwindTables() argument 48 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false); in emitWindowsUnwindTables()
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | test_result.py | 263 class Frame(object): class 268 self.assertFalse(result._is_relevant_tb_level(Frame)) 270 Frame.tb_frame.f_globals['__unittest'] = True 271 self.assertTrue(result._is_relevant_tb_level(Frame))
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64WinCOFFStreamer.cpp | 32 void emitWindowsUnwindTables(WinEH::FrameInfo *Frame) override; 45 void AArch64WinCOFFStreamer::emitWindowsUnwindTables(WinEH::FrameInfo *Frame) { in emitWindowsUnwindTables() argument 46 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false); in emitWindowsUnwindTables()
|