Home
last modified time | relevance | path

Searched refs:SetType (Results 1 – 25 of 42) sorted by relevance

12

/llvm-project/llvm/include/llvm/ADT/
H A DPostOrderIterator.h44 // - By providing a custom SetType class, unwanted graph nodes can be excluded
58 template<class SetType, bool External>
60 SetType Visited;
74 template<class SetType>
75 class po_iterator_storage<SetType, true> {
76 SetType &Visited;
79 po_iterator_storage(SetType &VSet) : Visited(VSet) {} in po_iterator_storage()
95 class SetType = SmallPtrSet<typename GraphTraits<GraphT>::NodeRef, 8>,
97 class po_iterator : public po_iterator_storage<SetType, ExtStorage> {
125 po_iterator(NodeRef BB, SetType in po_iterator()
[all...]
H A DDepthFirstIterator.h50 template<class SetType, bool External> // Non-external set
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 =
86 class df_iterator : public df_iterator_storage<SetType, ExtStorage> {
116 inline df_iterator(NodeRef Node, SetType &S) in df_iterator()
117 : df_iterator_storage<SetType, ExtStorag in df_iterator()
[all...]
H A DBreadthFirstIterator.h33 template <class SetType> class bf_iterator_storage {
35 SetType Visited;
44 class SetType =
47 class bf_iterator : public bf_iterator_storage<SetType> {
/llvm-project/lldb/source/Symbol/
H A DType.cpp935 SetType(type_sp); in TypeImpl()
940 SetType(compiler_type); in SetType() function in TypeImpl
945 SetType(type_sp, dynamic); in SetType()
951 SetType(static_type, dynamic_type); in SetType() function in TypeImpl
954 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType()
965 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType()
970 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in CheckModule()
972 SetType(type_sp);
976 void TypeImpl::SetType(const CompilerType &compiler_type,
956 void TypeImpl::SetType(const lldb::TypeSP &type_sp, SetType() function in TypeImpl
962 void TypeImpl::SetType(const CompilerType &compiler_type, SetType() function in TypeImpl
/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.cpp156 SetType &S = I.second; in constrain()
178 SetType &S = getOrCreate(I.first); in assign_if()
263 bool TypeSetByHwMode::intersect(SetType &Out, const SetType &In) { in intersect()
299 auto Leftovers = [&](const SetType &A, const SetType &B) { in intersect()
300 SetType Diff = A; in intersect()
306 SetType OutLeftovers = Leftovers(Out, In); in intersect()
318 SetType InLeftovers = Leftovers(In, Out); in intersect()
388 TypeSetByHwMode::SetType in forceArbitrary()
[all...]
H A DCodeGenDAGPatterns.h188 using SetType = MachineValueTypeSet; member
198 SetType &getOrCreate(unsigned Mode) { return Map[Mode]; }
240 bool intersect(SetType &Out, const SetType &In);
320 void expandOverloads(TypeSetByHwMode::SetType &Out,
321 const TypeSetByHwMode::SetType &Legal) const;
/llvm-project/lldb/include/lldb/Symbol/
H A DType.h638 void SetType(const lldb::TypeSP &type_sp);
640 void SetType(const CompilerType &compiler_type);
642 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
644 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic);
H A DSymbol.h170 void SetType(lldb::SymbolType type) { m_type = (lldb::SymbolType)type; } in SetType() function
H A DObjectFile.h585 virtual void SetType(Type type) { m_type = type; } in SetType() function
/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h95 void SetType(RegisterValue::Type type) { m_type = type; } in SetType() function
97 RegisterValue::Type SetType(const RegisterInfo &reg_info);
H A DEvent.h208 void SetType(uint32_t new_type) { m_type = new_type; } in BroadcasterIs()
197 void SetType(uint32_t new_type) { m_type = new_type; } SetType() function
H A DStructuredData.h91 void SetType(lldb::StructuredDataType t) { m_type = t; } in SetType() function
390 SetType(lldb::eStructuredDataTypeInvalid); in Dictionary()
/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointResource.h39 void SetType(bool read, bool write);
H A DBreakpointSite.h204 void SetType(BreakpointSite::Type type) { m_type = type; }
199 void SetType(BreakpointSite::Type type) { m_type = type; } SetType() function
/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp286 symbol.SetType(eSymbolTypeAbsolute); in ParseSymtab()
290 symbol.SetType(SymbolType(COFFSymRef)); in ParseSymtab()
/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp811 symbol.SetType(symbol_type); in AppendFromCOFFSymbolTable()
823 exported->SetType(symbol_type); in AppendFromCOFFSymbolTable()
829 symbol.SetType(lldb::eSymbolTypeAdditional); in AppendFromCOFFSymbolTable()
836 symbol.SetType(exported->GetType()); in AppendFromCOFFSymbolTable()
841 symbol.SetType(lldb::eSymbolTypeAbsolute); in AppendFromCOFFSymbolTable()
924 symbol.SetType(lldb::eSymbolTypeData); in AppendFromExportTable()
928 symbol.SetType(lldb::eSymbolTypeCode); in AppendFromExportTable()
/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/
H A DSymbolVendorWasm.cpp102 sym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/llvm-project/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp102 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp134 dsym_objfile_sp->SetType(ObjectFile::eTypeDebugInfo); in CreateInstance()
/llvm-project/lldb/source/Breakpoint/
H A DWatchpointResource.cpp39 void WatchpointResource::SetType(bool read, bool write) { in SetType() function in WatchpointResource
/llvm-project/lldb/source/API/
H A DSBFunction.cpp212 sb_type.ref().SetType(function_type->shared_from_this()); in GetType()
/llvm-project/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux.cpp81 value_to_write.SetType(*full_reg_info); in WriteRegisterRaw()
/llvm-project/lldb/tools/debugserver/source/
H A DJSONGenerator.h70 void SetType(Type t) { m_type = t; } in SetType() function
/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp332 module_sp->GetObjectFile()->SetType(ObjectFile::eTypeJIT); in ReadJITDescriptorImpl()
/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h134 void SetType(const lldb::TypeSP &type_sp) { m_type_wp = type_sp; } in SetType() function

12