Home
last modified time | relevance | path

Searched refs:StackFrame (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DSignals.inc228 STACKFRAME64 StackFrame = StackFrameOrig;
239 while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
242 if (StackFrame.AddrFrame.Offset == 0)
244 StackTrace[Depth++] = (void *)(uintptr_t)StackFrame.AddrPC.Offset;
297 HANDLE hThread, STACKFRAME64 &StackFrame,
306 if (printStackTraceWithLLVMSymbolizer(OS, hProcess, hThread, StackFrame,
312 if (!fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
318 if (StackFrame.AddrFrame.Offset == 0)
323 DWORD64 PC = StackFrame.AddrPC.Offset;
333 StackFrame.Params[0], StackFrame.Params[1], StackFrame.Params[2],
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h215 enum ContextKind { StackFrame, Block }; enumerator
313 : LocationContext(StackFrame, ADC, ParentLC, ID), CallSite(S), in StackFrameContext()
335 ProfileCommon(ID, StackFrame, ADC, ParentLC, S); in Profile()
342 return LC->getKind() == StackFrame; in classof()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp455 case StackFrame: in dumpStack()
495 case StackFrame: in printJson()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Ddbghelp.d33 …tion(DWORD MachineType, HANDLE hProcess, HANDLE hThread, STACKFRAME64 *StackFrame, PVOID ContextRe…
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp2125 ExecutionContext &StackFrame = ECStack.back(); in callFunction() local
2126 StackFrame.CurFunction = F; in callFunction()
2137 StackFrame.CurBB = &F->front(); in callFunction()
2138 StackFrame.CurInst = StackFrame.CurBB->begin(); in callFunction()
2149 SetValue(&*AI, ArgVals[i], StackFrame); in callFunction()
2152 StackFrame.VarArgs.assign(ArgVals.begin()+i, ArgVals.end()); in callFunction()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp504 const StackFrameContext *StackFrame = getCalleeStackFrame(0); in getConstructionContext() local
505 if (!StackFrame) in getConstructionContext()
508 const CFGElement Element = StackFrame->getCallSiteCFGElement(); in getConstructionContext()