| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | UserID.h | 33 UserID(lldb::user_id_t uid = LLDB_INVALID_UID) : m_uid(uid) {} in m_uid() 53 void SetID(lldb::user_id_t uid) { m_uid = uid; } in SetID() 65 IDMatches(lldb::user_id_t uid) : m_uid(uid) {} in IDMatches() 89 Stream &operator<<(Stream &strm, const UserID &uid);
|
| H A D | UserIDResolver.h | 28 llvm::Optional<llvm::StringRef> GetUserName(id_t uid) { in GetUserName() argument 29 return Get(uid, m_uid_cache, &UserIDResolver::DoGetUserName); in GetUserName() 40 virtual llvm::Optional<std::string> DoGetUserName(id_t uid) = 0;
|
| H A D | ProcessInfo.h | 57 void SetUserID(uint32_t uid) { m_uid = uid; } in SetUserID() argument 131 void SetEffectiveUserID(uint32_t uid) { m_euid = uid; } in SetEffectiveUserID() argument
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_sync.h | 56 u64 uid; // Globally unique id. member 69 void Init(ThreadState *thr, uptr pc, uptr addr, u64 uid, bool save_stack); 74 return GetLsb((u64)addr | (uid << 48), 60); in GetId() 76 bool CheckId(u64 uid) const { in CheckId() 77 CHECK_EQ(uid, GetLsb(uid, 14)); in CheckId() 78 return GetLsb(this->uid, 14) == uid; in CheckId() 80 static uptr SplitId(u64 id, u64 *uid) { in SplitId() 81 *uid = id >> 48; in SplitId()
|
| H A D | tsan_rtl_thread.cpp | 119 Tid ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) { in ThreadCreate() argument 122 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent_tid, &args); in ThreadCreate() 123 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", parent_tid, tid, uid); in ThreadCreate() 269 uptr uid; member 273 Tid ThreadConsumeTid(ThreadState *thr, uptr pc, uptr uid) { in ThreadConsumeTid() argument 274 return ctx->thread_registry.ConsumeThreadUserId(uid); in ThreadConsumeTid() 303 void ThreadNotJoined(ThreadState *thr, uptr pc, Tid tid, uptr uid) { in ThreadNotJoined() argument 306 ctx->thread_registry.SetThreadUserId(tid, uid); in ThreadNotJoined()
|
| H A D | tsan_sync.cpp | 23 void SyncVar::Init(ThreadState *thr, uptr pc, uptr addr, u64 uid, in Init() argument 26 this->uid = uid; in Init() 37 uid = 0; in Reset() 221 const u64 uid = atomic_fetch_add(&uid_gen_, 1, memory_order_relaxed); in GetSync() local 224 mys->Init(thr, pc, addr, uid, save_stack); in GetSync()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | X86DisassemblerTables.h | 227 InstrUID uid, 260 InstrUID uid, 272 InstructionSpecifier& specForUID(InstrUID uid) { in specForUID() argument 273 if (uid >= InstructionSpecifiers.size()) in specForUID() 274 InstructionSpecifiers.resize(uid + 1); in specForUID() 276 return InstructionSpecifiers[uid]; in specForUID()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbAstBuilder.h | 45 DeclStatus(lldb::user_id_t uid, bool resolved) in DeclStatus() 46 : uid(uid), resolved(resolved) {} in DeclStatus() 47 lldb::user_id_t uid = 0; member 59 GetOrCreateDeclForUid(PdbSymUid uid); 60 clang::DeclContext *GetOrCreateDeclContextForUid(PdbSymUid uid); 61 clang::DeclContext *GetParentDeclContext(PdbSymUid uid); 91 clang::Decl *TryGetDecl(PdbSymUid uid) const; 113 clang::VarDecl *CreateVariableDecl(PdbSymUid uid,
|
| H A D | PdbAstBuilder.cpp | 534 switch (uid.kind()) { in GetOrCreateDeclForUid() 560 if (uid.asCompilandSym().offset == 0) in GetOrCreateDeclContextForUid() 656 switch (uid.kind()) { in GetParentDeclContext() 953 status.uid = toOpaqueUid(block_id); in GetOrCreateBlockDecl() 972 status.uid = toOpaqueUid(uid); in CreateVariableDecl() 1023 status.uid = toOpaqueUid(id); in GetOrCreateTypedefDecl() 1088 lldb::user_id_t uid = toOpaqueUid(type); in GetOrCreateType() local 1089 auto iter = m_uid_to_type.find(uid); in GetOrCreateType() 1118 status.uid = uid; in GetOrCreateType() 1216 status.uid = inlinesite_uid; in GetOrCreateInlinedFunctionDecl() [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Generic/ |
| H A D | inline-asm-special-strings.ll | 5 tail call void asm sideeffect "foo ${:uid} ${:uid}", ""() nounwind 7 tail call void asm sideeffect "bar $(${:uid} x$| ${:uid} x$)", ""() nounwind
|
| /llvm-project-15.0.7/lldb/source/Host/posix/ |
| H A D | HostInfoPosix.cpp | 59 llvm::Optional<std::string> DoGetUserName(id_t uid) override; 69 static llvm::Optional<PasswdEntry> GetPassword(id_t uid) { in GetPassword() argument 75 if (auto *user_info_ptr = ::getpwuid(uid)) in GetPassword() 82 if (::getpwuid_r(uid, &user_info, user_buffer, user_buffer_size, in GetPassword() 91 llvm::Optional<std::string> PosixUserIDResolver::DoGetUserName(id_t uid) { in DoGetUserName() argument 92 if (llvm::Optional<PasswdEntry> password = GetPassword(uid)) in DoGetUserName()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTMetadata.cpp | 15 lldb::user_id_t uid = GetUserID(); in Dump() local 17 if (uid != LLDB_INVALID_UID) { in Dump() 18 s->Printf("uid=0x%" PRIx64, uid); in Dump()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBAttachInfo.cpp | 177 void SBAttachInfo::SetUserID(uint32_t uid) { in SetUserID() argument 178 LLDB_INSTRUMENT_VA(this, uid); in SetUserID() 180 m_opaque_sp->SetUserID(uid); in SetUserID() 213 void SBAttachInfo::SetEffectiveUserID(uint32_t uid) { in SetEffectiveUserID() argument 214 LLDB_INSTRUMENT_VA(this, uid); in SetEffectiveUserID() 216 m_opaque_sp->SetEffectiveUserID(uid); in SetEffectiveUserID()
|
| H A D | SBValueList.cpp | 48 lldb::SBValue FindValueByUID(lldb::user_id_t uid) { in FindValueByUID() argument 50 if (val.IsValid() && val.GetID() == uid) in FindValueByUID() 172 SBValue SBValueList::FindValueObjectByUID(lldb::user_id_t uid) { in FindValueObjectByUID() argument 173 LLDB_INSTRUMENT_VA(this, uid); in FindValueObjectByUID() 177 sb_value = m_opaque_up->FindValueByUID(uid); in FindValueObjectByUID()
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | idiomatic-parentheses.m | 8 unsigned uid; field 15 @property unsigned uid; property 19 @synthesize uid; 30 …if (self.uid = 100) { // expected-warning {{using the result of an assignment as a condition witho…
|
| H A D | default-synthesize-2.m | 44 id uid; // expected-note {{instance variable is declared here}} field 46 @property (readwrite, assign) id uid; // expected-note {{property declared here}} property 50 …ning {{autosynthesized property 'uid' will use synthesized instance variable '_uid', not existing … 53 self.uid = 0; // Use of the “setter” 54 uid = 0; // Use of the wrong instance variable
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 237 auto uid = pdb_compiland.getSymIndexId(); in GetCompileUnitIndex() local 242 if (compiland_up->getSymIndexId() == uid) { in GetCompileUnitIndex() 251 SymbolFilePDB::GetPDBCompilandByUID(uint32_t uid) { in GetPDBCompilandByUID() argument 411 auto uid = pdb_symbol->getSymIndexId(); in ParseFunctionBlocksForPDBSymbol() local 412 if (parent_block->FindBlockByID(uid)) in ParseFunctionBlocksForPDBSymbol() 445 auto uid = func.GetID(); in ParseBlocksRecursive() local 639 auto symbol = m_session_up->getSymbolById(uid); in GetDeclForUID() 669 auto symbol = m_session_up->getSymbolById(uid); in GetDeclContextForUID() 675 return GetDeclContextContainingUID(uid); in GetDeclContextForUID() 699 auto symbol = m_session_up->getSymbolById(uid); in GetDeclContextContainingUID() [all …]
|
| H A D | SymbolFilePDB.h | 92 lldb_private::CompilerDecl GetDeclForUID(lldb::user_id_t uid) override; 95 GetDeclContextForUID(lldb::user_id_t uid) override; 98 GetDeclContextContainingUID(lldb::user_id_t uid) override; 227 GetPDBCompilandByUID(uint32_t uid); 236 bool ResolveFunction(uint32_t uid, bool include_inlines,
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_rtl_thread.cpp | 116 Tid ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) { in ThreadCreate() argument 130 Tid tid = ctx->thread_registry.CreateThread(uid, detached, parent, &arg); in ThreadCreate() 131 DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", parent, tid, uid); in ThreadCreate() 280 uptr uid; member 284 Tid ThreadConsumeTid(ThreadState *thr, uptr pc, uptr uid) { in ThreadConsumeTid() argument 285 return ctx->thread_registry.ConsumeThreadUserId(uid); in ThreadConsumeTid() 323 void ThreadNotJoined(ThreadState *thr, uptr pc, Tid tid, uptr uid) { in ThreadNotJoined() argument 325 ctx->thread_registry.SetThreadUserId(tid, uid); in ThreadNotJoined()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | UserID.cpp | 17 Stream &lldb_private::operator<<(Stream &strm, const UserID &uid) { in operator <<() argument 18 strm.Printf("{0x%8.8" PRIx64 "}", uid.GetID()); in operator <<()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | ms-inline-asm.ll | 128 ; Make sure ${:uid} works. Clang uses it for MS inline asm labels. 131 ; int uid() { 143 define i32 @uid() { 146 …"xor eax, eax\0A\09.L__MSASMLABEL_.${:uid}__wloop:\0A\09inc eax\0A\09cmp eax, $$42\0A\09jne .L__MS… 149 ; CHECK-LABEL: uid:
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFTypeUnit.h | 28 DWARFTypeUnit(SymbolFileDWARF &dwarf, lldb::user_id_t uid, in DWARFTypeUnit() argument 32 : DWARFUnit(dwarf, uid, header, abbrevs, section, is_dwo) {} in DWARFTypeUnit()
|
| H A D | DWARFCompileUnit.h | 28 DWARFCompileUnit(SymbolFileDWARF &dwarf, lldb::user_id_t uid, in DWARFCompileUnit() argument 32 : DWARFUnit(dwarf, uid, header, abbrevs, section, is_dwo) {} in DWARFCompileUnit()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompileUnit.h | 78 const char *pathname, lldb::user_id_t uid, 117 const FileSpec &file_spec, lldb::user_id_t uid, 322 lldb::FunctionSP FindFunctionByUID(lldb::user_id_t uid);
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/objc/ |
| H A D | property-declaration.rst | 28 …coa/Conceptual/CodingGuidelines/Articles/NamingBasics.html#//apple_ref/doc/uid/20001281-1002931-BB… 31 …oa/Conceptual/CodingGuidelines/Articles/APIAbbreviations.html#//apple_ref/doc/uid/20001285-BCIHCGAE 33 …/Conceptual/CodingGuidelines/Articles/NamingIvarsAndTypes.html#//apple_ref/doc/uid/20001284-1001757
|