Searched refs:Frame (Results 1 - 19 of 19) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCStreamer.cpp219 MCDwarfFrameInfo Frame; local
220 EmitCFIStartProcImpl(Frame);
222 FrameInfos.push_back(Frame);
225 void MCStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { argument
228 void MCStreamer::RecordProcStart(MCDwarfFrameInfo &Frame) { argument
229 Frame.Function = LastSymbol;
234 Frame.Begin = LastSymbol;
236 Frame.Begin = getContext().CreateTempSymbol();
237 EmitLabel(Frame.Begin);
247 void MCStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { argument
250 RecordProcEnd(MCDwarfFrameInfo &Frame) argument
385 setCurrentW64UnwindInfo(MCWin64EHUnwindInfo *Frame) argument
400 MCWin64EHUnwindInfo *Frame = new MCWin64EHUnwindInfo; local
418 MCWin64EHUnwindInfo *Frame = new MCWin64EHUnwindInfo; local
[all...]
H A DMCNullStreamer.cpp108 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { argument
109 RecordProcEnd(Frame);
H A DMCDwarf.cpp1145 const MCDwarfFrameInfo &Frame) {
1172 uint32_t Encoding = Frame.CompactUnwindEncoding;
1177 if (!DwarfEHFrameOnly && Frame.Lsda)
1184 Streamer.EmitSymbolValue(Frame.Function, Size);
1187 const MCExpr *Range = MakeStartMinusEndExpr(Streamer, *Frame.Begin,
1188 *Frame.End, 0);
1201 if (!DwarfEHFrameOnly && Frame.Personality)
1202 Streamer.EmitSymbolValue(Frame.Personality, Size);
1207 Size = getSizeForEncoding(Streamer, Frame.LsdaEncoding);
1209 if (!DwarfEHFrameOnly && Frame
1144 EmitCompactUnwind(MCStreamer &Streamer, const MCDwarfFrameInfo &Frame) argument
1488 const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i); local
1512 const MCDwarfFrameInfo &Frame = FrameArray[i]; local
[all...]
H A DMCObjectStreamer.cpp118 void MCObjectStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { argument
119 RecordProcStart(Frame);
122 void MCObjectStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { argument
123 RecordProcEnd(Frame);
H A DMCAsmStreamer.cpp64 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
65 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
914 void MCAsmStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) { argument
916 RecordProcStart(Frame);
924 void MCAsmStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) { argument
926 RecordProcEnd(Frame);
930 // Put a dummy non-null value in Frame.End to mark that this frame has been
932 Frame.End = (MCSymbol *) 1;
/freebsd-10.0-release/contrib/llvm/include/llvm/DebugInfo/
H A DDIContext.h75 void addFrame(const DILineInfo &Frame) {
76 Frames.push_back(Frame);
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCObjectStreamer.h39 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
40 virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
H A DMCStreamer.h84 void setCurrentW64UnwindInfo(MCWin64EHUnwindInfo *Frame);
103 void RecordProcStart(MCDwarfFrameInfo &Frame);
104 virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
105 void RecordProcEnd(MCDwarfFrameInfo &Frame);
/freebsd-10.0-release/sys/contrib/dev/acpica/components/debugger/
H A Ddbdisply.c568 ACPI_GENERIC_STATE *Frame; local
592 Frame = WalkState->Results;
597 ObjDesc = Frame->Results.ObjDesc[Index];
602 Frame = Frame->Results.Next;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp307 ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable) argument
308 : Frame(Frame), OldThis(Frame.This) {
310 Frame.This = NewThis;
313 Frame.This = OldThis;
316 CallStackFrame &Frame; member in class:__anon2974::ThisOverrideRAII
441 // We will eventually hit BottomFrame, which has Index 1, so Frame can't
443 CallStackFrame *Frame = CurrentCall; local
444 while (Frame
614 describeCall(CallStackFrame *Frame, raw_ostream &Out) argument
1465 evaluateVarDeclInit(EvalInfo &Info, const Expr *E, const VarDecl *VD, CallStackFrame *Frame, APValue *&Result) argument
[all...]
/freebsd-10.0-release/tools/sched/
H A Dschedgraph.py166 class Scaler(Frame):
168 Frame.__init__(self, master)
196 class Status(Frame):
198 Frame.__init__(self, master)
213 class ColorConf(Frame):
215 Frame.__init__(self, master)
280 self.buttons = Frame(self)
316 class SourceConf(Frame):
318 Frame.__init__(self, master)
362 self.iframe = Frame(sel
[all...]
/freebsd-10.0-release/contrib/llvm/lib/DebugInfo/
H A DDWARFContext.cpp488 DILineInfo Frame(StringRef(FileName), StringRef(FunctionName),
490 InliningInfo.addFrame(Frame);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp395 unsigned Frame = 0; local
399 llvm::errs() << '#' << Frame++ << ' ';
/freebsd-10.0-release/sys/boot/i386/libi386/
H A Dpxe.h332 uint16_t BufferLength; /* Length of Frame */
334 uint16_t FrameHeaderLength; /* Length of the media header in Frame */
335 SEGOFF16_t Frame; /* receive buffer */ member in struct:__anon6105
/freebsd-10.0-release/contrib/one-true-awk/
H A Drun.c212 struct Frame { /* stack frame for awk function calls */ struct
221 struct Frame *frame = NULL; /* base of stack frames; dynamically allocated */
223 struct Frame *fp = NULL; /* frame pointer. bottom level unused */
240 fp = frame = (struct Frame *) calloc(nframe += 100, sizeof(struct Frame));
274 frame = (struct Frame *)
275 realloc((char *) frame, (nframe += 100) * sizeof(struct Frame));
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp151 ReturnVisitor(const StackFrameContext *Frame, bool Suppressed) argument
152 : StackFrame(Frame), Mode(Initial), EnableNullFPSuppression(Suppressed) {}
/freebsd-10.0-release/sys/boot/i386/btx/btx/
H A Dbtx.S521 movl $12,%ecx # Frame is 12 dwords
/freebsd-10.0-release/sys/boot/pc98/btx/btx/
H A Dbtx.S547 movl $12,%ecx # Frame is 12 dwords
/freebsd-10.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp11040 "Invalid Frame Register!");
11064 "Invalid Frame Register!");
11065 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT); local
11068 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,

Completed in 199 milliseconds