| /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;
|
| /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/Symbolize/ |
| DIPrinter.cpp | 346 json::Array Frame; 357 Frame.push_back(std::move(FrameObject)); 360 Json["Frame"] = std::move(Frame);
|
| Symbolize.cpp | 107 auto *Frame = InlinedContext.getMutableFrame(i); 108 Frame->FunctionName = DemangleName(Frame->FunctionName, Info);
|
| /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...] |
| CoroSplit.cpp | 8 // This pass builds the coroutine frame and outlines resume and destroy parts 332 // %index.addr = getelementptr inbounds %f.Frame, %f.Frame* %FramePtr, i32 0, 360 // %index.addr = getelementptr %f.frame... (index field number) 428 // coroutine frame, since it is undefined behavior to resume a coroutine 682 // following the allocation of the frame object which defines GEPs for 683 // all the allocas that have been moved into the frame, and it ends by 748 /// Derive the value of the new frame pointer. 753 // In switch-lowering, the argument is the frame pointer. 759 // with the active suspend. The frame is located as a tail to the asyn [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/sys/external/bsd/acpica/dist/debugger/ |
| dbdisply.c | 599 ACPI_GENERIC_STATE *Frame; 600 UINT32 Index; /* Index onto current frame */ 622 Frame = WalkState->Results; 627 ObjDesc = Frame->Results.ObjDesc[Index]; 633 Frame = Frame->Results.Next;
|
| /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/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/llvm/include/llvm/DebugInfo/PDB/Native/ |
| RawTypes.h | 78 support::ulittle16_t Frame;
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| DWARFContext.cpp | 829 // size within debug frame sections. While DWARF is supposed to be independent 1318 DILineInfo Frame; 1322 CU->getCompilationDir(), Spec.FLIKind, Frame)) 1323 InliningInfo.addFrame(Frame); 1331 DILineInfo Frame; 1334 Frame.FunctionName = Name; 1336 Frame.StartLine = DeclLineResult; 1337 Frame.StartFileName = FunctionDIE.getDeclFile(Spec.FLIKind); 1339 Frame.StartAddress = LowPcAddr->Address; 1342 // For the topmost frame, initialize the line table of thi [all...] |
| /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/historical/nawk/dist/ |
| run.c | 220 struct Frame { /* stack frame for awk function calls */ 229 struct Frame *frame = NULL; /* base of stack frames; dynamically allocated */ variable in typeref:struct:Frame 231 struct Frame *frp = NULL; /* frame pointer. bottom level unused */ 247 if (frame == NULL) { 248 frp = frame = (struct Frame *) calloc(nframe += 100, sizeof(*frame)); [all...] |
| /src/sys/arch/i386/stand/pxeboot/ |
| pxe.h | 331 uint16_t BufferLength; /* Length of Frame */ 333 frame */ 335 in Frame */ 336 SEGOFF16_t Frame; /* receive buffer */
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| ExprConstant.cpp | 36 #include "Interp/Frame.h" 513 /// The call index of the frame that holds the argument values. 519 /// A stack frame in the constexpr call stack. 520 class CallStackFrame : public interp::Frame { 524 /// Parent - The caller of this stack frame. 546 /// Temporaries - Temporary lvalues materialized within this stack frame. 619 /// Allocate storage for an object of type T in this stack frame. 621 /// the temporary within the stack frame, and must not be reused without 627 /// Allocate storage for a parameter of a function call made in this frame. 632 Frame *getCaller() const override { return Caller; [all...] |