| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | PostOrderIterator.h | 60 SetType Visited; 74 template<class SetType> 76 SetType &Visited; 128 po_iterator(SetType &S) in po_iterator() 200 template<class T, class SetType> 201 po_ext_iterator<T, SetType> po_ext_begin(T G, SetType &S) { in po_ext_begin() 205 template<class T, class SetType> 206 po_ext_iterator<T, SetType> po_ext_end(T G, SetType &S) { in po_ext_end() 211 iterator_range<po_ext_iterator<T, SetType>> post_order_ext(const T &G, SetType &S) { in post_order_ext() 248 ipo_ext_iterator<T, SetType> ipo_ext_begin(const T &G, SetType &S) { in ipo_ext_begin() [all …]
|
| H A D | DepthFirstIterator.h | 53 SetType Visited; 56 template<class SetType> 57 class df_iterator_storage<SetType, true> { 59 df_iterator_storage(SetType &VSet) : Visited(VSet) {} in df_iterator_storage() 62 SetType &Visited; 83 class SetType = 113 inline df_iterator(NodeRef Node, SetType &S) in df_iterator() 114 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator() 119 inline df_iterator(SetType &S) in df_iterator() 120 : df_iterator_storage<SetType, ExtStorage>(S) { in df_iterator() [all …]
|
| H A D | BreadthFirstIterator.h | 34 template <class SetType> class bf_iterator_storage { 36 SetType Visited; 45 class SetType = 48 class bf_iterator : public bf_iterator_storage<SetType> {
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | Type.cpp | 808 SetType(type_sp); in TypeImpl() 813 SetType(compiler_type); in TypeImpl() 818 SetType(type_sp, dynamic); in TypeImpl() 824 SetType(static_type, dynamic_type); in TypeImpl() 827 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() function in TypeImpl 838 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() function in TypeImpl 843 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() function in TypeImpl 845 SetType(type_sp); in SetType() 849 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() function in TypeImpl
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 258 void SetType(const lldb::TypeSP &type_sp); 260 void SetType(const CompilerType &compiler_type); 262 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 264 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic);
|
| H A D | Symbol.h | 145 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; } in SetType() function
|
| H A D | ObjectFile.h | 578 virtual void SetType(Type type) { m_type = type; } in SetType() function
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 164 SetType &S = I.second; in constrain() 187 SetType &S = getOrCreate(I.first); in assign_if() 274 bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) { in intersect() 306 auto subtract = [](const SetType &A, const SetType &B) { in intersect() 307 SetType Diff = A; in intersect() 313 SetType OutOnly = subtract(Out, In); in intersect() 335 SetType InOnly = subtract(In, Out); in intersect() 396 TypeSetByHwMode::SetType &S = I.second; in forceArbitrary() 749 TypeSetByHwMode::SetType &VS = V.get(M); in EnforceSameNumElts() 750 TypeSetByHwMode::SetType &WS = W.get(M); in EnforceSameNumElts() [all …]
|
| H A D | CodeGenDAGPatterns.h | 193 using SetType = MachineValueTypeSet; member 205 SetType &getOrCreate(unsigned Mode) { in getOrCreate() 256 bool intersect(SetType &Out, const SetType &In); 336 void expandOverloads(TypeSetByHwMode::SetType &Out, 337 const TypeSetByHwMode::SetType &Legal);
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | RegisterValue.h | 85 void SetType(RegisterValue::Type type) { m_type = type; } in SetType() function 87 RegisterValue::Type SetType(const RegisterInfo *reg_info);
|
| H A D | Event.h | 210 void SetType(uint32_t new_type) { m_type = new_type; } in SetType() function
|
| H A D | StructuredData.h | 83 void SetType(lldb::StructuredDataType t) { m_type = t; } in SetType() function 358 SetType(lldb::eStructuredDataTypeInvalid); in Dictionary()
|
| /llvm-project-15.0.7/lldb/include/lldb/Breakpoint/ |
| H A D | BreakpointSite.h | 194 void SetType(BreakpointSite::Type type) { m_type = type; } in SetType() function
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/PECOFF/ |
| H A D | SymbolVendorPECOFF.cpp | 103 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/wasm/ |
| H A D | SymbolVendorWasm.cpp | 102 sym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 105 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | DebugInfoTest.cpp | 246 DIDerivedType *SetType = DIB.createSetType(Scope, "set1", F, 1, 64, 64, Type); in TEST() local 247 EXPECT_TRUE(isa_and_nonnull<DIDerivedType>(SetType)); in TEST()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeRegisterContextLinux.cpp | 74 value_to_write.SetType(full_reg_info); in WriteRegisterRaw()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBFunction.cpp | 199 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | resolve-names.cpp | 2357 symbol.SetType(*type); in ApplyImplicitRules() 2412 symbol.SetType(*type); in ImplicitlyTypeForwardRef() 4197 SetType(name, *type); in DeclareUnknownEntity() 4269 SetType(name, *type); in DeclareObjectEntity() 4582 comp.SetType(type); in Post() 4596 SetType(name, *type); in Post() 5626 SetType(name, *declTypeSpec); in DeclareStatementEntity() 5646 SetType(name, in SetType() 5656 symbol.SetType(type); in SetType() 5865 symbol.SetType(*type); in ResolveIndexName() [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| H A D | ObjCLanguageRuntime.h | 126 void SetType(const lldb::TypeSP &type_sp) { m_type_wp = type_sp; } in SetType() function
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | JSONGenerator.h | 70 void SetType(Type t) { m_type = t; } in SetType() function
|
| /llvm-project-15.0.7/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 334 module_sp->GetObjectFile()->SetType(ObjectFile::eTypeJIT); in ReadJITDescriptorImpl()
|
| /llvm-project-15.0.7/flang/include/flang/Evaluate/ |
| H A D | characteristics.h | 288 void SetType(DynamicType t) { std::get<TypeAndShape>(u).set_type(t); } in SetType() function
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 3562 sym[pos->second].SetType(eSymbolTypeResolver); in ParseSymtab() 3650 sym[sym_idx].SetType(type); in ParseSymtab() 4406 sym[pos->second].SetType(eSymbolTypeResolver); in ParseSymtab() 4474 sym[sym_idx].SetType(type); in ParseSymtab() 4566 sym[sym_idx].SetType(type); in ParseSymtab() 4629 sym[sym_idx].SetType(eSymbolTypeCode); in ParseSymtab() 4711 stub_symbol->SetType(eSymbolTypeTrampoline); in ParseSymtab() 4713 stub_symbol->SetType(eSymbolTypeResolver); in ParseSymtab() 4728 sym[sym_idx].SetType(eSymbolTypeTrampoline); in ParseSymtab() 4730 sym[sym_idx].SetType(eSymbolTypeResolver); in ParseSymtab() [all …]
|