Home
last modified time | relevance | path

Searched refs:Full (Results 1 – 25 of 201) sorted by relevance

123456789

/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiHashing.h21 explicit TagRecordHash(codeview::ClassRecord CR, uint32_t Full, in TagRecordHash()
23 : FullRecordHash(Full), ForwardDeclHash(Forward), Class(std::move(CR)) { in TagRecordHash()
27 explicit TagRecordHash(codeview::EnumRecord ER, uint32_t Full, in TagRecordHash()
29 : FullRecordHash(Full), ForwardDeclHash(Forward), Enum(std::move(ER)) { in TagRecordHash()
33 explicit TagRecordHash(codeview::UnionRecord UR, uint32_t Full, in TagRecordHash()
35 : FullRecordHash(Full), ForwardDeclHash(Forward), Union(std::move(UR)) { in TagRecordHash()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVLocation.cpp23 void LVOperation::print(raw_ostream &OS, bool Full) const {} in print()
532 void LVLocation::printRaw(raw_ostream &OS, bool Full) const { in printRaw()
537 printRawExtra(OS, Full); in printRaw()
540 void LVLocation::printInterval(raw_ostream &OS, bool Full) const { in printInterval()
545 void LVLocation::print(raw_ostream &OS, bool Full) const { in print()
547 LVObject::print(OS, Full); in print()
548 printExtra(OS, Full); in print()
552 void LVLocation::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
553 printInterval(OS, Full); in printExtra()
615 void LVLocationSymbol::printRawExtra(raw_ostream &OS, bool Full) const { in printRawExtra()
[all …]
H A DLVObject.cpp111 bool Full) const { in doPrint()
112 print(OS, Full); in doPrint()
116 void LVObject::printAttributes(raw_ostream &OS, bool Full, StringRef Name, in printAttributes() argument
123 Object.printAttributes(OS, Full); in printAttributes()
139 void LVObject::printAttributes(raw_ostream &OS, bool Full) const { in printAttributes()
160 void LVObject::print(raw_ostream &OS, bool Full) const { in print()
161 printFileIndex(OS, Full); in print()
162 printAttributes(OS, Full); in print()
H A DLVScope.cpp596 bool Full) const { in doPrint()
634 print(*StreamSplit, Full); in doPrint()
647 Element->doPrint(Split, Match, Print, *StreamSplit, Full)) in doPrint()
657 Line->doPrint(Split, Match, Print, *StreamSplit, Full)) in doPrint()
663 printWarnings(*StreamSplit, Full); in doPrint()
997 void LVScope::printActiveRanges(raw_ostream &OS, bool Full) const { in printActiveRanges()
1001 Location->print(OS, Full); in printActiveRanges()
1005 void LVScope::printEncodedArgs(raw_ostream &OS, bool Full) const { in printEncodedArgs()
1007 printAttributes(OS, Full, "{Encoded} ", const_cast<LVScope *>(this), in printEncodedArgs()
1011 void LVScope::print(raw_ostream &OS, bool Full) const { in print()
[all …]
H A DLVSymbol.cpp387 void LVSymbol::printLocations(raw_ostream &OS, bool Full) const { in printLocations()
390 Location->printRaw(OS, Full); in printLocations()
393 void LVSymbol::print(raw_ostream &OS, bool Full) const { in print()
396 LVElement::print(OS, Full); in print()
397 printExtra(OS, Full); in print()
401 void LVSymbol::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
440 if (Full && options().getPrintFormatting()) { in printExtra()
442 printLinkageName(OS, Full, const_cast<LVSymbol *>(this)); in printExtra()
444 Reference->printReference(OS, Full, const_cast<LVSymbol *>(this)); in printExtra()
447 LVLocation::print(Locations, OS, Full); in printExtra()
H A DLVType.cpp291 void LVType::print(raw_ostream &OS, bool Full) const { in print()
295 LVElement::print(OS, Full); in print()
296 printExtra(OS, Full); in print()
300 void LVType::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
355 void LVTypeDefinition::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
368 void LVTypeEnumerator::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
380 void LVTypeImport::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
465 void LVTypeParam::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
521 void LVTypeSubrange::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
H A DLVLine.cpp140 void LVLine::print(raw_ostream &OS, bool Full) const { in print()
143 LVElement::print(OS, Full); in print()
144 printExtra(OS, Full); in print()
199 void LVLineDebug::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
218 void LVLineAssembler::printExtra(raw_ostream &OS, bool Full) const { in printExtra()
H A DLVElement.cpp484 void LVElement::printFileIndex(raw_ostream &OS, bool Full) const { in printFileIndex()
504 void LVElement::printReference(raw_ostream &OS, bool Full, in printReference() argument
507 printAttributes(OS, Full, "{Reference} ", Parent, in printReference()
512 void LVElement::printLinkageName(raw_ostream &OS, bool Full, in printLinkageName() argument
515 printAttributes(OS, Full, "{Linkage} ", Parent, getLinkageName(), in printLinkageName()
520 void LVElement::printLinkageName(raw_ostream &OS, bool Full, LVElement *Parent, in printLinkageName() argument
527 printAttributes(OS, Full, "{Linkage} ", Parent, Text, in printLinkageName()
H A DLVRange.cpp145 void LVRange::print(raw_ostream &OS, bool Full) const { in print()
149 Scope->printAttributes(OS, Full); in print()
157 printExtra(OS, Full); in print()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVLocation.h55 void print(raw_ostream &OS, bool Full = true) const;
160 static void print(LVLocations *Locations, raw_ostream &OS, bool Full = true);
161 void printInterval(raw_ostream &OS, bool Full = true) const;
162 void printRaw(raw_ostream &OS, bool Full = true) const;
163 virtual void printRawExtra(raw_ostream &OS, bool Full = true) const {}
165 void print(raw_ostream &OS, bool Full = true) const override;
166 void printExtra(raw_ostream &OS, bool Full = true) const override;
190 void printRawExtra(raw_ostream &OS, bool Full = true) const override;
191 void printExtra(raw_ostream &OS, bool Full = true) const override;
H A DLVScope.h136 void printEncodedArgs(raw_ostream &OS, bool Full) const;
138 void printActiveRanges(raw_ostream &OS, bool Full = true) const;
250 bool Full = true) const override;
315 void print(raw_ostream &OS, bool Full = true) const override;
316 void printExtra(raw_ostream &OS, bool Full = true) const override;
317 virtual void printWarnings(raw_ostream &OS, bool Full = true) const {}
360 void printExtra(raw_ostream &OS, bool Full = true) const override;
377 void printExtra(raw_ostream &OS, bool Full = true) const override;
393 void printExtra(raw_ostream &OS, bool Full = true) const override;
581 void printLocalNames(raw_ostream &OS, bool Full = true) const;
[all …]
H A DLVType.h139 void print(raw_ostream &OS, bool Full = true) const override;
140 void printExtra(raw_ostream &OS, bool Full = true) const override;
167 void printExtra(raw_ostream &OS, bool Full = true) const override;
196 void printExtra(raw_ostream &OS, bool Full = true) const override;
210 void printExtra(raw_ostream &OS, bool Full = true) const override;
239 void printExtra(raw_ostream &OS, bool Full = true) const override;
284 void printExtra(raw_ostream &OS, bool Full = true) const override;
H A DLVLine.h105 void print(raw_ostream &OS, bool Full = true) const override;
106 void printExtra(raw_ostream &OS, bool Full = true) const override {}
139 void printExtra(raw_ostream &OS, bool Full = true) const override;
158 void printExtra(raw_ostream &OS, bool Full = true) const override;
H A DLVObject.h208 virtual void printFileIndex(raw_ostream &OS, bool Full = true) const {}
318 bool Full = true) const;
319 void printAttributes(raw_ostream &OS, bool Full = true) const;
320 void printAttributes(raw_ostream &OS, bool Full, StringRef Name,
328 virtual void print(raw_ostream &OS, bool Full = true) const;
331 virtual void printExtra(raw_ostream &OS, bool Full = true) const {}
H A DLVSymbol.h152 void printLocations(raw_ostream &OS, bool Full = true) const;
184 void print(raw_ostream &OS, bool Full = true) const override;
185 void printExtra(raw_ostream &OS, bool Full = true) const override;
H A DLVElement.h130 void printFileIndex(raw_ostream &OS, bool Full = true) const override;
309 void printReference(raw_ostream &OS, bool Full, LVElement *Parent) const;
312 void printLinkageName(raw_ostream &OS, bool Full, LVElement *Parent,
314 void printLinkageName(raw_ostream &OS, bool Full, LVElement *Parent) const;
H A DLVRange.h87 void print(raw_ostream &OS, bool Full = true) const override;
88 void printExtra(raw_ostream &OS, bool Full = true) const override {}
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/
H A DNSDictionary.h59 class Full : public Matcher {
61 Full(ConstString n);
62 ~Full() override = default;
70 MatcherUP GetFullMatch(ConstString n) { return std::make_unique<Full>(n); } in GetFullMatch()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DCallingConvLower.cpp89 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) in AnalyzeFormalArguments()
102 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) in CheckReturn()
116 if (Fn(i, VT, VT, CCValAssign::Full, ArgFlags, *this)) in AnalyzeReturn()
129 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) { in AnalyzeCallOperands()
147 if (Fn(i, ArgVT, ArgVT, CCValAssign::Full, ArgFlags, *this)) { in AnalyzeCallOperands()
164 if (Fn(i, VT, VT, CCValAssign::Full, Flags, *this)) { in AnalyzeCallResult()
176 if (Fn(0, VT, VT, CCValAssign::Full, ISD::ArgFlagsTy(), *this)) { in AnalyzeCallResult()
213 if (Fn(0, VT, VT, CCValAssign::Full, Flags, *this)) { in getRemainingRegParmsForType()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_arm64.cpp97 m_sve_state = SVEState::Full; in ConfigureRegisterContext()
118 } else if (m_sve_state == SVEState::Full) { in CalculateSVEOffset()
163 if (m_sve_state == SVEState::Full) in ReadRegister()
169 if (m_sve_state == SVEState::Full) in ReadRegister()
210 case SVEState::Full: in ReadRegister()
/openbsd-src/gnu/llvm/llvm/utils/gn/build/
H A Dbuildflags.gni33 # Debug info symbol level. 0: No symbols; 1: Line numbers; 2: Full symbols.
36 # Debug info symbol level. 0: No symbols; 1: Line numbers; 2: Full symbols.
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_x86_32.h127 Full = Control | Integer | Segments, enumerator
128 All = Full | FloatingPoint | DebugRegisters | ExtendedRegisters,
/openbsd-src/usr.sbin/amd/amq/
H A Damq.c65 enum show_opt { Full, Stats, Calc, Short, ShowDone }; enumerator
90 case Full: { in show_mti()
175 case Full: { in show_mi()
414 show_mi(ml, Full, &mwid, &dwid, &twid); in main()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux_arm64.cpp214 if (m_sve_state == SVEState::Full) in ReadRegister()
220 if (m_sve_state == SVEState::Full) in ReadRegister()
348 if (m_sve_state == SVEState::Full) in WriteRegister()
354 if (m_sve_state == SVEState::Full) in WriteRegister()
932 m_sve_state = SVEState::Full; in ConfigureRegisterContext()
959 } else if (m_sve_state == SVEState::Full) { in CalculateSVEOffset()
971 if (m_sve_state == SVEState::FPSIMD || m_sve_state == SVEState::Full) in GetExpeditedRegisters()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGLoopInfo.cpp89 else if (Attrs.UnrollEnable == LoopAttributes::Full) in createPartialUnrollMetadata()
387 else if (Attrs.UnrollEnable == LoopAttributes::Full) in createFullUnrollMetadata()
536 case LoopAttributes::Full: in finish()
537 BeforeJam.UnrollEnable = LoopAttributes::Full; in finish()
725 case LoopHintAttr::Full: in push()
728 setUnrollState(LoopAttributes::Full); in push()
731 setUnrollAndJamState(LoopAttributes::Full); in push()

123456789