Home
last modified time | relevance | path

Searched refs:StackTop (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp153 unsigned StackTop = 0; // The current top of the FP stack. member
174 for (unsigned i = 0; i != StackTop; ++i) { in dumpStack()
191 return Slot < StackTop && Stack[Slot] == RegNo; in isLive()
196 if (STi >= StackTop) in getStackEntry()
198 return Stack[StackTop-1-STi]; in getStackEntry()
204 return StackTop - 1 - getSlot(RegNo) + X86::ST0; in getSTReg()
210 if (StackTop >= 8) in pushReg()
212 Stack[StackTop] = Reg; in pushReg()
213 RegMap[Reg] = StackTop++; in pushReg()
218 if (StackTop == 0) in popReg()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_basic_logging.cpp212 StackEntry StackTop; in InMemoryRawLog() local
215 internal_memcpy(&StackTop, StackEntryPtr, sizeof(StackEntry)); in InMemoryRawLog()
216 if (StackTop.FuncId == FuncId && StackTop.CPU == CPU && in InMemoryRawLog()
217 StackTop.TSC < TSC) { in InMemoryRawLog()
218 auto Delta = TSC - StackTop.TSC; in InMemoryRawLog()
221 TLD.BufferOffset -= StackTop.Type == XRayEntryType::ENTRY ? 1 : 2; in InMemoryRawLog()
/freebsd/sys/contrib/dev/acpica/compiler/
H A Ddtsubtable.c264 Subtable->StackTop = AslGbl_SubtableStack; in DtPushSubtable()
292 AslGbl_SubtableStack = Subtable->StackTop; in DtPopSubtable()
H A Ddtcompiler.h233 struct dt_subtable *StackTop; member