| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | StackID.h | 17 class StackID { 20 StackID() = default; 22 explicit StackID(lldb::addr_t pc, lldb::addr_t cfa, in StackID() function 26 StackID(const StackID &rhs) in StackID() function 29 ~StackID() = default; 54 const StackID &operator=(const StackID &rhs) { 91 bool operator==(const StackID &lhs, const StackID &rhs); 92 bool operator!=(const StackID &lhs, const StackID &rhs); 95 bool operator<(const StackID &lhs, const StackID &rhs);
|
| H A D | ThreadPlanStepThrough.h | 34 ThreadPlanStepThrough(Thread &thread, StackID &return_stack_id, 43 Thread::QueueThreadPlanForStepThrough(StackID &return_stack_id, 53 StackID m_return_stack_id;
|
| H A D | ThreadPlanStepInstruction.h | 49 StackID m_stack_id; 50 StackID m_parent_frame_id;
|
| H A D | Thread.h | 86 ThreadEventData(const lldb::ThreadSP thread_sp, const StackID &stack_id); 104 static StackID GetStackIDFromEvent(const Event *event_ptr); 110 StackID GetStackID() const { return m_stack_id; } in GetStackID() 114 StackID m_stack_id; 424 virtual lldb::StackFrameSP GetFrameWithStackID(const StackID &stack_id) { in GetFrameWithStackID() 895 QueueThreadPlanForStepThrough(StackID &return_stack_id, 1291 void BroadcastSelectedFrameChange(StackID &new_frame_id);
|
| H A D | ThreadPlanStepRange.h | 68 StackID m_stack_id; // Use the stack ID so we can tell step out from step in. 69 StackID m_parent_stack_id; // Use the parent stack ID so we can identify tail
|
| H A D | ThreadPlanStepOut.h | 57 StackID m_step_out_to_id; 58 StackID m_immediate_step_from_id;
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | StackSlotColoring.cpp | 228 auto StackID = MFI->getStackID(FI); in InitializeSlots() local 229 if (StackID != 0) { in InitializeSlots() 230 AllColors.resize(StackID + 1); in InitializeSlots() 231 UsedColors.resize(StackID + 1); in InitializeSlots() 232 AllColors[StackID].resize(LastFI); in InitializeSlots() 236 AllColors[StackID].set(FI); in InitializeSlots() 268 uint8_t StackID = MFI->getStackID(FI); in ColorSlot() local 293 Color = NextColors[StackID]; in ColorSlot() 294 UsedColors[StackID].set(Color); in ColorSlot() 295 NextColors[StackID] = AllColors[StackID].find_next(NextColors[StackID]); in ColorSlot() [all …]
|
| H A D | MachineFrameInfo.cpp | 54 uint8_t StackID) { in CreateStackObject() argument 58 !IsSpillSlot, StackID)); in CreateStackObject() 61 if (StackID == 0) in CreateStackObject() 224 if (SO.StackID != 0) in print() 225 OS << "id=" << static_cast<unsigned>(SO.StackID) << ' '; in print()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StackID.cpp | 17 void StackID::Dump(Stream *s) { in Dump() 33 bool lldb_private::operator==(const StackID &lhs, const StackID &rhs) { in operator ==() 47 bool lldb_private::operator!=(const StackID &lhs, const StackID &rhs) { in operator !=() 60 bool lldb_private::operator<(const StackID &lhs, const StackID &rhs) { in operator <()
|
| H A D | ThreadPlanStepInstruction.cpp | 101 StackID cur_frame_id = thread.GetStackFrameAtIndex(0)->GetStackID(); in IsPlanStale() 141 StackID cur_frame_zero_id = cur_frame_sp->GetStackID(); in ShouldStop()
|
| H A D | ThreadPlanStepThrough.cpp | 28 StackID &m_stack_id, in ThreadPlanStepThrough() 253 StackID cur_frame_zero_id = thread.GetStackFrameAtIndex(0)->GetStackID(); in HitOurBackstopBreakpoint()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_ignoreset.h | 23 void Add(StackID stack_id); 26 StackID At(uptr i) const; 31 StackID stacks_[kMaxSize];
|
| H A D | tsan_mutexset.h | 27 StackID stack_id; 47 void AddAddr(uptr addr, StackID stack_id, bool write); 88 void MutexSet::AddAddr(uptr addr, StackID stack_id, bool write) {} in AddAddr()
|
| H A D | tsan_ignoreset.cpp | 22 void IgnoreSet::Add(StackID stack_id) { in Add() 32 StackID IgnoreSet::At(uptr i) const { in At()
|
| H A D | tsan_trace.h | 168 sizeof(StackID) * kByteBits - kStackIDLoBits; 180 u64 stack_hi : sizeof(StackID) * kByteBits - kStackIDLoBits;
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_ignoreset.h | 23 void Add(StackID stack_id); 26 StackID At(uptr i) const; 31 StackID stacks_[kMaxSize];
|
| H A D | tsan_mutexset.h | 27 StackID stack_id; 42 void AddAddr(uptr addr, StackID stack_id, bool write); 81 void MutexSet::AddAddr(uptr addr, StackID stack_id, bool write) {} in AddAddr()
|
| H A D | tsan_ignoreset.cpp | 22 void IgnoreSet::Add(StackID stack_id) { in Add() 32 StackID IgnoreSet::At(uptr i) const { in At()
|
| H A D | tsan_rtl_mutex.cpp | 27 FastState last_lock, StackID creation_stack_id); 40 StackID Unwind() override { return CurrentStackId(thr, pc); } in Unwind() 51 uptr addr, StackID creation_stack_id) { in ReportMutexMisuse() 69 StackID stack_id, bool write) { in RecordMutexLock() 101 StackID creation_stack_id; in MutexDestroy() 170 StackID creation_stack_id = kInvalidStackID; in MutexPostLock() 220 StackID creation_stack_id; in MutexUnlock() 287 StackID creation_stack_id = kInvalidStackID; in MutexPostReadLock() 329 StackID creation_stack_id; in MutexReadUnlock() 370 StackID creation_stack_id; in MutexReadOrWriteUnlock() [all …]
|
| H A D | tsan_rtl.h | 224 StackID last_sleep_stack_id; 267 StackID creation_stack_id; 413 int AddMutex(uptr addr, StackID creation_stack_id); 415 void AddSleep(StackID stack_id); 511 StackID CurrentStackId(ThreadState *thr, uptr pc); 512 ReportStack *SymbolizeStackId(StackID stack_id); 759 StackID stk);
|
| H A D | tsan_trace.h | 117 sizeof(StackID) * kByteBits - kStackIDLoBits; 129 u64 stack_hi : sizeof(StackID) * kByteBits - kStackIDLoBits;
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachineMemOperand.h | 48 uint8_t StackID; member 52 : V(v), Offset(offset), StackID(ID) { in V() 58 : V(v), Offset(offset), StackID(ID) { in V() 64 StackID(0) {} 70 : V(v), Offset(offset), StackID(ID) { in V() 83 return MachinePointerInfo(V.get<const Value*>(), Offset + O, StackID); in getWithOffset() 85 StackID); in getWithOffset()
|
| H A D | MachineFrameInfo.h | 159 uint8_t StackID; member 185 bool IsAliased, uint8_t StackID = 0) 187 isImmutable(IsImmutable), isSpillSlot(IsSpillSlot), StackID(StackID), in SPOffset() 724 return Objects[ObjectIdx+NumFixedObjects].StackID; in getStackID() 731 Objects[ObjectIdx+NumFixedObjects].StackID = ID; in setStackID()
|
| H A D | MIRYamlMapping.h | 249 TargetStackID::Value StackID; 261 StackID == Other.StackID && 289 YamlIO.mapOptional("stack-id", Object.StackID, TargetStackID::Default); 315 TargetStackID::Value StackID; 327 StackID == Other.StackID && 365 YamlIO.mapOptional("stack-id", Object.StackID, TargetStackID::Default);
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | stack-id-pei-alloc.mir | 3 # Ensure that objects with StackID > 0 are not allocated on the default stack 29 # (StackID 0), so objects associated with a different StackID should
|