| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpBuiltin.cpp | 21 assert(Frame->getFunction()->getNumParams() > Index); in getParam() 23 return Frame->getParam<T>(Offset); in getParam() 187 const Pointer &A = getParam<Pointer>(Frame, 0); in interp__builtin_strcmp() 188 const Pointer &B = getParam<Pointer>(Frame, 1); in interp__builtin_strcmp() 258 const Pointer &Arg = getParam<Pointer>(Frame, 0); in interp__builtin_nan() 639 InterpFrame *Frame = S.Current; in InterpretBuiltin() local 654 if (!interp__builtin_strcmp(S, OpPC, Frame)) in InterpretBuiltin() 658 if (!interp__builtin_strlen(S, OpPC, Frame)) in InterpretBuiltin() 688 if (!interp__builtin_inf(S, OpPC, Frame, F)) in InterpretBuiltin() 704 if (!interp__builtin_fmin(S, OpPC, Frame, F)) in InterpretBuiltin() [all …]
|
| 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 | 46 Frame *getSplitFrame() { return Parent.getCurrentFrame(); } in getSplitFrame() 47 Frame *getCurrentFrame() override; 51 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 | 129 const Frame *Top = getCurrentFrame(); in addCallStack() 130 const Frame *Bottom = getBottomFrame(); in addCallStack() 131 for (const Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) { in addCallStack()
|
| H A D | InterpFrame.h | 28 class InterpFrame final : public Frame { 56 Frame *getCaller() const override;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | MemProf.h | 141 struct Frame { struct 156 Frame(const Frame &Other) { in Frame() function 174 Frame &operator=(const Frame &Other) { 220 return sizeof(Frame::Function) + sizeof(Frame::LineOffset) + in serializedSize() argument 221 sizeof(Frame::Column) + sizeof(Frame::IsInlineFrame); in serializedSize() 298 llvm::SmallVector<Frame> CallStack; 317 for (const Frame &F : CallStack) { in printYAML() 555 using data_type = Frame; 556 using data_type_ref = Frame &; 589 using data_type = const Frame; [all …]
|
| H A D | RawMemProfReader.h | 50 const llvm::DenseMap<FrameId, Frame> &getFrameMapping() const { in getFrameMapping() 62 std::function<const Frame(const FrameId)> Callback = nullptr) { 86 llvm::DenseMap<FrameId, Frame> FrameIdMap, in MemProfReader() 93 const Frame &idToFrame(const FrameId Id) const { in idToFrame() 99 llvm::DenseMap<FrameId, Frame> IdToFrame; 143 std::function<const Frame(const FrameId)> Callback) override;
|
| /freebsd-14.2/contrib/bearssl/T0/ |
| H A D | CPU.cs | 53 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-14.2/contrib/llvm-project/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;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 1529 makeEndMinusStartExpr(Context, *Frame.Begin, *Frame.End, 0); in EmitCompactUnwind() 1602 if (Frame.Personality) in EmitCIE() 1604 if (Frame.Lsda) in EmitCIE() 1609 if (Frame.IsBKeyFrame) in EmitCIE() 1654 if (Frame.Lsda) in EmitCIE() 1666 EmitPersonality(Streamer, *Frame.Personality, Frame.PersonalityEncoding); in EmitCIE() 1669 if (Frame.Lsda) in EmitCIE() 1679 if (!Frame.IsSimple) { in EmitCIE() 1795 LsdaEncoding(Frame.LsdaEncoding), IsSignalFrame(Frame.IsSignalFrame), in CIEKey() 1796 IsSimple(Frame.IsSimple), RAReg(Frame.RAReg), in CIEKey() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
| H A D | CoroElide.cpp | 82 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) { in operandReferences() argument 84 if (!AA.isNoAlias(Op, Frame)) in operandReferences() 96 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) { in removeTailCallAttribute() argument 97 Function &F = *Frame->getFunction(); in removeTailCallAttribute() 100 if (Call->isTailCall() && operandReferences(Call, Frame, AA) && in removeTailCallAttribute() 165 auto *Frame = new AllocaInst(FrameTy, DL.getAllocaAddrSpace(), "", InsertPt); in elideHeapAllocations() local 166 Frame->setAlignment(FrameAlign); in elideHeapAllocations() 168 new BitCastInst(Frame, PointerType::getUnqual(C), "vFrame", InsertPt); in elideHeapAllocations() 177 removeTailCallAttribute(Frame, AA); in elideHeapAllocations()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFRegisterInfo.td | 43 W10 // Frame Ptr 50 R10 // Frame Ptr
|
| /freebsd-14.2/sys/dev/dpaa2/ |
| H A D | dpaa2_swp_if.m | 44 * @brief Enqueue multiple frames to a frame queue using one Frame Queue ID. 47 * fqid: Frame Queue ID. 48 * fd: Frame descriptor to enqueue.
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | MemProfiler.cpp | 638 static uint64_t computeStackId(const memprof::Frame &Frame) { in computeStackId() argument 639 return computeStackId(Frame.Function, Frame.LineOffset, Frame.Column); in computeStackId() 658 stackFrameIncludesInlinedCallStack(ArrayRef<Frame> ProfileCallStack, in stackFrameIncludesInlinedCallStack() 733 std::map<uint64_t, std::set<std::pair<const SmallVector<Frame> *, unsigned>>> in readMemprof() 789 std::map<uint64_t, std::set<std::pair<const SmallVector<Frame> *, in readMemprof()
|
| /freebsd-14.2/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbdisply.c | 707 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-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|