Home
last modified time | relevance | path

Searched full:uid (Results 1 – 25 of 211) sorted by relevance

123456789

/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DCTFTypes.h37 lldb::user_id_t uid; member
40 CTFType(Kind kind, lldb::user_id_t uid, llvm::StringRef name) in CTFType()
41 : kind(kind), uid(uid), name(name) {} in CTFType()
45 CTFInteger(lldb::user_id_t uid, llvm::StringRef name, uint32_t bits, in CTFInteger()
47 : CTFType(eInteger, uid, name), bits(bits), encoding(encoding) {} in CTFInteger()
57 CTFModifier(Kind kind, lldb::user_id_t uid, uint32_t type) in CTFModifier()
58 : CTFType(kind, uid, ""), type(type) {} in CTFModifier()
70 CTFPointer(lldb::user_id_t uid, uint32_t type) in CTFPointer()
71 : CTFModifier(ePointer, uid, type) {} in CTFPointer()
77 CTFConst(lldb::user_id_t uid, uint32_t type) in CTFConst()
[all …]
H A DSymbolFileCTF.cpp370 return MakeType(ctf_integer.uid, ConstString(ctf_integer.name), in CreateInteger()
407 return MakeType(ctf_modifier.uid, ConstString(), 0, nullptr, LLDB_INVALID_UID, in CreateModifier()
427 return MakeType(ctf_typedef.uid, ConstString(ctf_typedef.name), 0, nullptr, in CreateTypedef()
454 return MakeType(ctf_array.uid, ConstString(), size, nullptr, LLDB_INVALID_UID, in CreateArray()
474 return MakeType(ctf_enum.uid, ConstString(), 0, nullptr, LLDB_INVALID_UID, in CreateEnum()
499 return MakeType(ctf_function.uid, ConstString(ctf_function.name), 0, nullptr, in CreateFunction()
512 return MakeType(ctf_record.uid, ConstString(ctf_record.name), ctf_record.size, in CreateRecord()
537 ctf_type->uid, field.type); in CompleteType()
557 m_ctf_types.erase(ctf_type->uid); in CompleteType()
568 return MakeType(ctf_forward.uid, ConstStrin in CreateForward()
610 ParseType(lldb::offset_t & offset,lldb::user_id_t uid) ParseType() argument
742 for (lldb::user_id_t uid = 1; uid < type_uid; ++uid) ParseTypes() local
[all...]
/llvm-project/lldb/include/lldb/Utility/
H A DUserID.h33 UserID(lldb::user_id_t uid = LLDB_INVALID_UID) : m_uid(uid) {} in m_uid()
51 /// \param[in] 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);
/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.h47 DeclStatus(lldb::user_id_t uid, bool resolved) in DeclStatus()
48 : uid(uid), resolved(resolved) {} in DeclStatus()
49 lldb::user_id_t uid = 0; member
61 GetOrCreateDeclForUid(PdbSymUid uid);
62 clang::DeclContext *GetOrCreateDeclContextForUid(PdbSymUid uid);
63 clang::DeclContext *GetParentDeclContext(PdbSymUid uid);
93 clang::Decl *TryGetDecl(PdbSymUid uid) const;
115 clang::VarDecl *CreateVariableDecl(PdbSymUid uid,
H A DPdbAstBuilder.cpp254 PdbSymUid(m_decl_to_status[scope_decl].uid).asCompilandSym(); in GetOrCreateSymbolForId()
278 PdbAstBuilder::GetOrCreateDeclForUid(PdbSymUid uid) { in GetOrCreateDeclForUid() argument
279 if (clang::Decl *result = TryGetDecl(uid)) in GetOrCreateDeclForUid()
283 switch (uid.kind()) { in GetOrCreateDeclForUid()
285 result = GetOrCreateSymbolForId(uid.asCompilandSym()); in GetOrCreateDeclForUid()
288 clang::QualType qt = GetOrCreateType(uid.asTypeSym()); in GetOrCreateDeclForUid()
303 m_uid_to_decl[toOpaqueUid(uid)] = result; in GetOrCreateDeclForUid()
307 clang::DeclContext *PdbAstBuilder::GetOrCreateDeclContextForUid(PdbSymUid uid) { in GetOrCreateDeclContextForUid() argument
308 if (uid.kind() == PdbSymUidKind::CompilandSym) { in GetOrCreateDeclContextForUid()
309 if (uid in GetOrCreateDeclContextForUid()
359 GetParentDeclContext(PdbSymUid uid) GetParentDeclContext() argument
671 CreateVariableDecl(PdbSymUid uid,CVSymbol sym,clang::DeclContext & scope) CreateVariableDecl() argument
812 lldb::user_id_t uid = toOpaqueUid(type); GetOrCreateType() local
[all...]
/llvm-project/clang/test/SemaObjC/
H A Ddefault-synthesize-2.m43 id uid; // expected-note {{instance variable is declared here}} field
45 @property (readwrite, assign) id uid; // expected-note {{property declared here}} property
48 …ning {{autosynthesized property 'uid' will use synthesized instance variable '_uid', not existing …
51 self.uid = 0; // Use of the “setter”
52 uid = 0; // Use of the wrong instance variable
H A Didiomatic-parentheses.m7 unsigned uid; field
14 @property unsigned uid; property
18 @synthesize uid;
28 …if (self.uid = 100) { // expected-warning {{using the result of an assignment as a condition witho…
/llvm-project/llvm/test/CodeGen/Generic/
H A Dinline-asm-special-strings.ll5 tail call void asm sideeffect "foo ${:uid} ${:uid}", ""() nounwind
7 tail call void asm sideeffect "bar $(${:uid} x$| ${:uid} x$)", ""() nounwind
/llvm-project/llvm/utils/TableGen/
H A DX86DisassemblerTables.h111 /// stream and indent level for the UID tables generated by
225 /// @param uid - The unique ID to set matching entries to.
228 InstrUID uid, uint8_t opcode);
243 /// decode tables to point to a specific uid.
252 /// @param uid - The unique ID of the instruction.
259 uint8_t opcode, const ModRMFilter &filter, InstrUID uid,
266 /// @param uid - The unique ID of the instruction.
268 InstructionSpecifier &specForUID(InstrUID uid) { in specForUID() argument
269 if (uid >= InstructionSpecifiers.size()) in specForUID()
270 InstructionSpecifiers.resize(uid + 1); in specForUID()
[all …]
/llvm-project/flang/docs/
H A DOptionComparison.md40 <td><a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=210">qlanglvl</a>, <a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=257">qsaa</a>
58 <td><a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=297">qxlf77</a>,
60 <a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=299">qxlf90</a>,
62 <a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=301">qxlf2003</a>,
64 <a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=305">qxfl2008</a>,
66 <a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=245">qport</a>
129 <td><a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=179">qfree</a>,
131 <a href="https://www-01.ibm.com/support/docview.wss?uid=swg27024803&aid=1#page=169">qfixed</a>
155 <td><a href="https://www-01.ibm.com/support/docview.wss?uid
[all...]
/llvm-project/llvm/test/tools/obj2yaml/Archives/
H A Dregular.yaml30 # MULTIPLE-NEXT: UID: '2'
37 # MULTIPLE-NEXT: UID: '5'
44 # MULTIPLE-NEXT: UID: ''
56 UID: '2'
64 UID: '5'
74 UID: ''
83 UID: '0'
/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTMetadata.cpp15 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/lldb/source/Host/posix/
H A DHostInfoPosix.cpp92 std::optional<std::string> DoGetUserName(id_t uid) override; in DoGetUserName() argument
102 static std::optional<PasswdEntry> GetPassword(id_t uid) { in DoGetGroupName()
107 if (::getpwuid_r(uid, &user_info, user_buffer, user_buffer_size, in DoGetGroupName()
115 std::optional<std::string> PosixUserIDResolver::DoGetUserName(id_t uid) { in DoGetGroupName()
116 if (std::optional<PasswdEntry> password = GetPassword(uid)) in DoGetGroupName()
70 GetPassword(id_t uid) GetPassword() argument
/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_thread.cpp116 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()
282 uptr uid;
286 Tid ThreadConsumeTid(ThreadState *thr, uptr pc, uptr uid) { in ThreadConsumeTid()
287 return ctx->thread_registry.ConsumeThreadUserId(uid);
325 void ThreadNotJoined(ThreadState *thr, uptr pc, Tid tid, uptr uid) { in ThreadNotJoined()
327 ctx->thread_registry.SetThreadUserId(tid, uid);
280 uptr uid; global() member
284 ThreadConsumeTid(ThreadState * thr,uptr pc,uptr uid) ThreadConsumeTid() argument
323 ThreadNotJoined(ThreadState * thr,uptr pc,Tid tid,uptr uid) ThreadNotJoined() argument
/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp243 auto uid = pdb_compiland.getSymIndexId(); in GetCompileUnitIndex()
248 if (compiland_up->getSymIndexId() == uid) { in GetCompileUnitIndex()
257 SymbolFilePDB::GetPDBCompilandByUID(uint32_t uid) { in GetPDBCompilandByUID()
258 return m_session_up->getConcreteSymbolById<PDBSymbolCompiland>(uid); in GetPDBCompilandByUID()
412 auto uid = pdb_symbol->getSymIndexId(); in ParseFunctionBlocksForPDBSymbol()
413 if (parent_block->FindBlockByID(uid)) in ParseFunctionBlocksForPDBSymbol()
437 auto uid = func.GetID(); in ParseFunctionBlocksForPDBSymbol()
438 auto pdb_func_up = m_session_up->getConcreteSymbolById<PDBSymbolFunc>(uid); in ParseFunctionBlocksForPDBSymbol()
596 "Unable to get dynamic array info for UID: {0}");
613 lldb_private::CompilerDecl SymbolFilePDB::GetDeclForUID(lldb::user_id_t uid) { in CompleteType()
242 auto uid = pdb_compiland.getSymIndexId(); GetCompileUnitIndex() local
256 GetPDBCompilandByUID(uint32_t uid) GetPDBCompilandByUID() argument
417 auto uid = pdb_symbol->getSymIndexId(); ParseFunctionBlocksForPDBSymbol() local
451 auto uid = func.GetID(); ParseBlocksRecursive() local
627 GetDeclForUID(lldb::user_id_t uid) GetDeclForUID() argument
657 GetDeclContextForUID(lldb::user_id_t uid) GetDeclContextForUID() argument
688 GetDeclContextContainingUID(lldb::user_id_t uid) GetDeclContextContainingUID() argument
1213 ResolveFunction(uint32_t uid,bool include_inlines,lldb_private::SymbolContextList & sc_list) ResolveFunction() argument
1237 auto uid = pdb_func_up->getSymIndexId(); CacheFunctionNames() local
[all...]
/llvm-project/lldb/test/Shell/Commands/
H A Dcommand-thread-siginfo.test11 # CHECK: uid = [[UID:[0-9]+]]
18 # CHECK-DAG: si_uid = [[UID]]
/llvm-project/llvm/test/CodeGen/X86/
H A Dms-inline-asm.ll128 ; 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/lldb/source/Symbol/
H A DTypeMap.cpp51 // TypeMap::FindType(lldb::user_id_t uid)
53 // iterator pos = m_types.find(uid);
118 lldb::user_id_t uid = type_sp->GetID(); in Remove() local
119 for (iterator pos = m_types.find(uid), end = m_types.end(); in Remove()
120 pos != end && pos->first == uid; ++pos) { in Remove()
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDIERef.h41 explicit DIERef(lldb::user_id_t uid) { in DIERef()
42 m_die_offset = uid & k_die_offset_mask; in DIERef()
43 m_file_index_valid = (uid & k_file_index_valid_bit) != 0; in DIERef()
45 ? (uid >> k_die_offset_bit_size) & k_file_index_mask in DIERef()
48 (uid & k_section_bit) != 0 ? Section::DebugTypes : Section::DebugInfo; in DIERef()
40 DIERef(lldb::user_id_t uid) DIERef() argument
/llvm-project/lldb/source/API/
H A DSBValueList.cpp51 lldb::SBValue FindValueByUID(lldb::user_id_t uid) { in FindValueByUID()
53 if (val.IsValid() && val.GetID() == uid) in FindValueByUID()
180 SBValue SBValueList::FindValueObjectByUID(lldb::user_id_t uid) { in FindValueObjectByUID()
181 LLDB_INSTRUMENT_VA(this, uid); in FindValueObjectByUID()
185 sb_value = m_opaque_up->FindValueByUID(uid); in FindValueObjectByUID()
50 FindValueByUID(lldb::user_id_t uid) FindValueByUID() argument
179 FindValueObjectByUID(lldb::user_id_t uid) FindValueObjectByUID() argument
H A DSBAttachInfo.cpp179 void SBAttachInfo::SetUserID(uint32_t uid) { in SetUserID() argument
180 LLDB_INSTRUMENT_VA(this, uid); in SetUserID()
182 m_opaque_sp->SetUserID(uid); in SetUserID()
215 void SBAttachInfo::SetEffectiveUserID(uint32_t uid) { in SetEffectiveUserID() argument
216 LLDB_INSTRUMENT_VA(this, uid); in SetEffectiveUserID()
218 m_opaque_sp->SetEffectiveUserID(uid); in SetEffectiveUserID()
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/objc/
H A Dproperty-declaration.rst28 …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
/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1219 LLDB_LOGF(log, "StructuredDataDarwinLog::%s called (process uid %u)", in ModulesDidLoad()
1229 "enabled (process uid %u)", in ModulesDidLoad()
1239 "StructuredDataDarwinLog::%s process uid %u's " in ModulesDidLoad()
1256 "(process uid %u)", in ModulesDidLoad()
1280 "yet (process uid %u)", in ModulesDidLoad()
1290 "set for logging module %s (process uid %u)", in ModulesDidLoad()
1489 LLDB_LOGF(log, "StructuredDataDarwinLog::%s() call is for process uid %d", in InitCompletionHookCallback()
1494 LLDB_LOG(log, "warning: no plugin for feature {0} in process uid {1}", in InitCompletionHookCallback()
1508 "called (process uid %u)", in InitCompletionHookCallback()
1516 "uid in InitCompletionHookCallback()
[all...]
/llvm-project/llvm/test/tools/yaml2obj/Archives/
H A Dregular.yaml75 UID: 'qwerty'
86 UID: '2'
100 # RUN: FileCheck %s --check-prefix=ERROR -DFIELD="UID" -DVAL=6
116 UID: '[[UID=""]]'
/llvm-project/clang/test/Index/
H A Dcomment-misc-tags.m18 @see //un_ref/doc/uid/XX0000011 I/O Kit Fundamentals
19 @seealso //k_ref/doc/uid/XX30000905-CH204 Programming
43 // CHECK-NEXT: (CXComment_Text Text=[ //un_ref/doc/uid/XX0000011 I/O Kit Fundamentals] HasTrai…
47 // CHECK-NEXT: (CXComment_Text Text=[ //k_ref/doc/uid/XX30000905-CH204 Programming])

123456789