HomeSort by: relevance | last modified time | path
    Searched refs:Frame (Results 1 - 25 of 64) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Frame.cpp 1 //===--- Frame.cpp - Call frame for the VM and AST Walker -------*- C++ -*-===//
9 #include "Frame.h"
14 Frame::~Frame() {}
Frame.h 1 //===--- Frame.h - Call frame for the VM and AST Walker ---------*- C++ -*-===//
25 class Frame {
27 virtual ~Frame();
32 /// Returns a pointer to the caller frame.
33 virtual Frame *getCaller() const = 0;
InterpState.h 41 // Stack frame accessors.
42 Frame *getSplitFrame() { return Parent.getCurrentFrame(); }
43 Frame *getCurrentFrame() override;
45 const Frame *getBottomFrame() const override {
103 /// The current frame.
State.h 51 class Frame;
63 virtual Frame *getCurrentFrame() = 0;
64 virtual const Frame *getBottomFrame() const = 0;
State.cpp 10 #include "Frame.h"
128 Frame *Top = getCurrentFrame();
129 const Frame *Bottom = getBottomFrame();
130 for (Frame *F = Top; F != Bottom; F = F->getCaller(), ++CallIdx) {
InterpFrame.h 1 //===--- InterpFrame.h - Call Frame implementation for the VM ---*- C++ -*-===//
16 #include "Frame.h"
28 /// Frame storing local variables.
29 class InterpFrame final : public Frame {
31 /// The frame of the previous function.
34 /// Creates a new frame for a method call.
38 /// Destroys the frame, killing all live pointers to stack slots.
47 /// Describes the frame with arguments for diagnostic purposes.
50 /// Returns the parent frame object.
51 Frame *getCaller() const override
    [all...]
InterpState.cpp 43 Frame *InterpState::getCurrentFrame() {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 56 void MipsELFStreamer::emitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
57 Frame.Begin = getContext().createTempSymbol();
58 MCELFStreamer::emitLabel(Frame.Begin);
67 void MipsELFStreamer::emitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
68 Frame.End = getContext().createTempSymbol();
69 MCELFStreamer::emitLabel(Frame.End);
MipsELFStreamer.h 64 void emitCFIStartProcImpl(MCDwarfFrameInfo &Frame) override;
65 void emitCFIEndProcImpl(MCDwarfFrameInfo &Frame) override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86WinCOFFStreamer.cpp 29 void EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) override;
44 void X86WinCOFFStreamer::EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) {
45 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false);
  /src/sys/dev/ic/
sl811hsvar.h 21 typedef unsigned int Frame;
29 struct gcq_head timed; /* intr transfer multi-frame wait */
32 Frame frame; /* current frame */ member in struct:slhci_transfers
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugFrameDataSubsection.cpp 23 "Invalid frame data record format!");
58 void DebugFrameDataSubsection::addFrameData(const FrameData &Frame) {
59 Frames.push_back(Frame);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCDwarf.cpp 1325 void EmitCompactUnwind(const MCDwarfFrameInfo &frame);
1328 void EmitFDE(const MCSymbol &cieStart, const MCDwarfFrameInfo &frame,
1472 /// Emit frame instructions to describe the layout of the frame.
1494 void FrameEmitterImpl::EmitCompactUnwind(const MCDwarfFrameInfo &Frame) {
1520 uint32_t Encoding = Frame.CompactUnwindEncoding;
1525 if (!DwarfEHFrameOnly && Frame.Lsda)
1531 Streamer.emitSymbolValue(Frame.Begin, Size);
1535 makeEndMinusStartExpr(Context, *Frame.Begin, *Frame.End, 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 99 Frame,
111 } else if (InputString.consume_front("FRAME ")) {
112 Cmd = Command::Frame;
166 } else if (Cmd == Command::Frame) {
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/
Hello.java 17 Frame frame = new Frame("Hello example"); local
18 frame.addWindowListener(
45 frame.setLayout(new BorderLayout());
46 frame.add(labels, BorderLayout.CENTER);
47 frame.add(buttons, BorderLayout.SOUTH);
48 frame.pack();
49 frame.setVisible(true);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroElide.cpp 1 //===- CoroElide.cpp - Coroutine Frame Allocation Elision Pass ------------===//
71 // See if any operand of the call instruction references the coroutine frame.
72 static bool operandReferences(CallInst *CI, AllocaInst *Frame, AAResults &AA) {
74 if (!AA.isNoAlias(Op, Frame))
79 // Look for any tail calls referencing the coroutine frame and remove tail
80 // attribute from them, since now coroutine frame resides on the stack and tail
84 // and by that point the frame should have been destroyed and hence not
86 static void removeTailCallAttribute(AllocaInst *Frame, AAResults &AA) {
87 Function &F = *Frame->getFunction();
90 if (Call->isTailCall() && operandReferences(Call, Frame, AA) &
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 105 while (auto Frame = Frames->getNext()) {
107 auto LineNumbers = Frame->findInlineeLinesByVA(Address.Address, Length);
115 LineInfo.FunctionName = Frame->getName();
  /src/external/gpl3/gdb/dist/gdb/stubs/
m68k-stub.c 155 /* We keep a whole frame cache here. "Why?", I hear you cry, "doesn't
166 int exceptionPC; /* pc value when this frame created */
168 short frameSize; /* size of cpu frame in words */
173 int morejunk[0]; /* exception frame, fp save... */
174 } Frame;
178 static Frame *lastFrame;
244 movel _lastFrame,a0 /* get last frame info */
254 movel _lastFrame,a0 /* get last frame info */
255 movel a0@+,_lastFrame /* link in previous frame */
257 movew a0@+,d0 /* get # of words in cpu frame */
822 Frame *frame; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/stubs/
m68k-stub.c 155 /* We keep a whole frame cache here. "Why?", I hear you cry, "doesn't
166 int exceptionPC; /* pc value when this frame created */
168 short frameSize; /* size of cpu frame in words */
173 int morejunk[0]; /* exception frame, fp save... */
174 } Frame;
178 static Frame *lastFrame;
244 movel _lastFrame,a0 /* get last frame info */
254 movel _lastFrame,a0 /* get last frame info */
255 movel a0@+,_lastFrame /* link in previous frame */
257 movew a0@+,d0 /* get # of words in cpu frame */
822 Frame *frame; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 169 static void printContextFrameToStream(const Diagnostics::ContextFrame &Frame,
171 maybeAddLineAndColumn(Frame.Range, OS);
172 formatErrorString(contextTypeToFormatString(Frame.Type), Frame.Args, OS);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugFrameDataSubsection.h 53 void addFrameData(const FrameData &Frame);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RTDyldMemoryManager.cpp 86 // This implementation handles frame registration for local targets.
136 for (auto &Frame : EHFrames)
137 deregisterEHFramesInProcess(Frame.Addr, Frame.Size);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64WinCOFFStreamer.cpp 31 void EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) override;
44 void AArch64WinCOFFStreamer::EmitWindowsUnwindTables(WinEH::FrameInfo *Frame) {
45 EHStreamer.EmitUnwindInfo(*this, Frame, /* HandlerData = */ false);
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
AnalysisDeclContext.cpp 452 unsigned Frame = 0;
456 Out << "\t#" << Frame << ' ';
457 ++Frame;
490 unsigned Frame = 0;
496 Out << '#' << Frame << " Call\", \"calling\": \"";
497 ++Frame;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/
DIContext.h 109 void addFrame(const DILineInfo &Frame) {
110 Frames.push_back(Frame);

Completed in 35 milliseconds

1 2 3