Home
last modified time | relevance | path

Searched refs:Indent (Results 1 – 25 of 215) sorted by relevance

123456789

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DDAGISelMatcher.cpp22 void Matcher::print(raw_ostream &OS, indent Indent) const { in print()
23 printImpl(OS, Indent); in print()
25 return Next->print(OS, Indent); in print()
114 void ScopeMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
115 OS << Indent << "Scope\n"; in printImpl()
118 OS << Indent + 1 << "NULL POINTER\n"; in printImpl()
120 C->print(OS, Indent + 2); in printImpl()
124 void RecordMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
125 OS << Indent << "Record\n"; in printImpl()
128 void RecordChildMatcher::printImpl(raw_ostream &OS, indent Indent) const { in printImpl()
[all …]
H A DPredicateExpander.cpp182 ++Indent; in expandPredicateSequence()
187 OS << '\n' << Indent; in expandPredicateSequence()
193 --Indent; in expandPredicateSequence()
194 OS << '\n' << Indent << ')'; in expandPredicateSequence()
261 OS << Indent << "case " << Opcode->getValueAsString("Namespace") in expandOpcodeSwitchCase()
265 ++Indent; in expandOpcodeSwitchCase()
266 OS << Indent; in expandOpcodeSwitchCase()
268 --Indent; in expandOpcodeSwitchCase()
283 SS << Indent << "default:\n"; in expandOpcodeSwitchStatement()
285 ++Indent; in expandOpcodeSwitchStatement()
[all …]
H A DDAGISelMatcher.h188 void print(raw_ostream &OS, indent Indent = indent(0)) const;
193 virtual void printImpl(raw_ostream &OS, indent Indent) const = 0;
237 void printImpl(raw_ostream &OS, indent Indent) const override;
261 void printImpl(raw_ostream &OS, indent Indent) const override;
292 void printImpl(raw_ostream &OS, indent Indent) const override;
306 void printImpl(raw_ostream &OS, indent Indent) const override;
321 void printImpl(raw_ostream &OS, indent Indent) const override;
338 void printImpl(raw_ostream &OS, indent Indent) const override;
358 void printImpl(raw_ostream &OS, indent Indent) const override;
373 void printImpl(raw_ostream &OS, indent Indent) const override;
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp49 void emitAction(const Record *Action, indent Indent, raw_ostream &O);
150 void CallingConvEmitter::emitAction(const Record *Action, indent Indent, in emitAction() argument
154 O << Indent << "static const MCPhysReg " << RLName << "[] = {\n"; in emitAction()
155 O << Indent << " "; in emitAction()
159 O << "\n" << Indent << "};\n"; in emitAction()
174 O << formatv("{0}if (MCRegister Reg = State.AllocateReg({1})) {{\n", Indent, in emitAction()
176 O << Indent << " State.addLoc(CCValAssign::getReg(ValNo, ValVT, " in emitAction()
184 O << Indent << "int64_t Offset" << ++Counter << " = "; in emitAction()
186 O << Indent << " (void)"; in emitAction()
194 O << "\n" << Indent << formatv(Fmt, "getTypeAllocSize") << ", "; in emitAction()
[all …]
H A DGICombinerEmitter.cpp
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DStringMatcher.cpp51 std::string Indent(IndentCount * 2 + 4, ' '); in EmitStringMatcherForChar() local
63 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n"; in EmitStringMatcherForChar()
68 OS << Indent << Split.first << "\n"; in EmitStringMatcherForChar()
90 OS << Indent << "if (" << StrVariableName << "[" << CharNo << "] != '" in EmitStringMatcherForChar()
92 OS << Indent << " break;\n"; in EmitStringMatcherForChar()
96 OS << Indent << "if (memcmp(" << StrVariableName << ".data()+" << CharNo in EmitStringMatcherForChar()
99 OS << Indent << " break;\n"; in EmitStringMatcherForChar()
108 OS << Indent << "switch (" << StrVariableName << "[" << CharNo << "]) {\n"; in EmitStringMatcherForChar()
109 OS << Indent << "default: break;\n"; in EmitStringMatcherForChar()
113 OS << Indent << "case '" << Letter << "':\t // " << Matches.size() in EmitStringMatcherForChar()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp37 void NativeTypeUDT::dump(raw_ostream &OS, int Indent, in dump() argument
41 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
43 dumpSymbolField(OS, "name", getName(), Indent); in dump()
44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
48 dumpSymbolIdField(OS, "unmodifiedTypeId", getUnmodifiedTypeId(), Indent, in dump()
53 Indent); in dump()
54 dumpSymbolField(OS, "length", getLength(), Indent); in dump()
55 dumpSymbolField(OS, "udtKind", getUdtKind(), Indent); in dump()
56 dumpSymbolField(OS, "constructor", hasConstructor(), Indent); in dump()
57 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump()
[all …]
H A DNativeTypePointer.cpp35 void NativeTypePointer::dump(raw_ostream &OS, int Indent, in dump() argument
38 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
41 dumpSymbolIdField(OS, "classParentId", getClassParentId(), Indent, Session, in dump()
45 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
48 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
50 dumpSymbolField(OS, "length", getLength(), Indent); in dump()
51 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump()
52 dumpSymbolField(OS, "isPointerToDataMember", isPointerToDataMember(), Indent); in dump()
54 Indent); in dump()
55 dumpSymbolField(OS, "RValueReference", isRValueReference(), Indent); in dump()
[all …]
H A DNativeTypeArray.cpp26 void NativeTypeArray::dump(raw_ostream &OS, int Indent, in dump() argument
29 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
31 dumpSymbolField(OS, "arrayIndexTypeId", getArrayIndexTypeId(), Indent); in dump()
32 dumpSymbolIdField(OS, "elementTypeId", getTypeId(), Indent, Session, in dump()
35 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
38 dumpSymbolField(OS, "length", getLength(), Indent); in dump()
39 dumpSymbolField(OS, "count", getCount(), Indent); in dump()
40 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump()
41 dumpSymbolField(OS, "unalignedType", isUnalignedType(), Indent); in dump()
42 dumpSymbolField(OS, "volatileType", isVolatileType(), Indent); in dump()
H A DNativeSymbolEnumerator.cpp27 void NativeSymbolEnumerator::dump(raw_ostream &OS, int Indent, in dump() argument
30 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
31 dumpSymbolIdField(OS, "classParentId", getClassParentId(), Indent, Session, in dump()
34 dumpSymbolIdField(OS, "lexicalParentId", getLexicalParentId(), Indent, in dump()
37 dumpSymbolField(OS, "name", getName(), Indent); in dump()
38 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
40 dumpSymbolField(OS, "dataKind", getDataKind(), Indent); in dump()
41 dumpSymbolField(OS, "locationType", getLocationType(), Indent); in dump()
42 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump()
43 dumpSymbolField(OS, "unalignedType", isUnalignedType(), Indent); in dump()
[all …]
H A DNativeTypeFunctionSig.cpp34 void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields, in dump() argument
36 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
38 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
109 void NativeTypeFunctionSig::dump(raw_ostream &OS, int Indent, in dump() argument
113 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
115 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
119 dumpSymbolField(OS, "callingConvention", getCallingConvention(), Indent); in dump()
120 dumpSymbolField(OS, "count", getCount(), Indent); in dump()
121 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
124 dumpSymbolField(OS, "thisAdjust", getThisAdjust(), Indent); in dump()
[all …]
H A DNativeTypeEnum.cpp131 void NativeTypeEnum::dump(raw_ostream &OS, int Indent, in dump() argument
134 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
137 Indent); in dump()
138 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
141 dumpSymbolField(OS, "name", getName(), Indent); in dump()
142 dumpSymbolIdField(OS, "typeId", getTypeId(), Indent, Session, in dump()
145 dumpSymbolIdField(OS, "unmodifiedTypeId", getUnmodifiedTypeId(), Indent, in dump()
148 dumpSymbolField(OS, "length", getLength(), Indent); in dump()
149 dumpSymbolField(OS, "constructor", hasConstructor(), Indent); in dump()
150 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump()
[all …]
H A DNativeTypeVTShape.cpp17 void NativeTypeVTShape::dump(raw_ostream &OS, int Indent, in dump() argument
20 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
22 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
25 dumpSymbolField(OS, "count", getCount(), Indent); in dump()
26 dumpSymbolField(OS, "constType", isConstType(), Indent); in dump()
27 dumpSymbolField(OS, "unalignedType", isUnalignedType(), Indent); in dump()
28 dumpSymbolField(OS, "volatileType", isVolatileType(), Indent); in dump()
H A DNativeCompilandSymbol.cpp24 void NativeCompilandSymbol::dump(raw_ostream &OS, int Indent, in dump() argument
27 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
29 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session, in dump()
32 dumpSymbolField(OS, "libraryName", getLibraryName(), Indent); in dump()
33 dumpSymbolField(OS, "name", getName(), Indent); in dump()
35 Indent); in dump()
H A DNativePublicSymbol.cpp24 void NativePublicSymbol::dump(raw_ostream &OS, int Indent, in dump() argument
27 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields); in dump()
28 dumpSymbolField(OS, "name", getName(), Indent); in dump()
29 dumpSymbolField(OS, "offset", getAddressOffset(), Indent); in dump()
30 dumpSymbolField(OS, "section", getAddressSection(), Indent); in dump()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DPlistDiagnostics.cpp181 Indent(o, indent) << "<key>ranges</key>\n"; in EmitRanges()
182 Indent(o, indent) << "<array>\n"; in EmitRanges()
193 Indent(o, indent) << "</array>\n"; in EmitRanges()
200 Indent(o, indent) << "<key>extended_message</key>\n"; in EmitMessage()
201 Indent(o, indent); in EmitMessage()
206 Indent(o, indent) << "<key>message</key>\n"; in EmitMessage()
207 Indent(o, indent); in EmitMessage()
219 Indent(o, indent) << "<key>fixits</key>\n"; in EmitFixits()
220 Indent(o, indent) << "<array>\n"; in EmitFixits()
226 Indent(o, indent) << " <dict>\n"; in EmitFixits()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp88 Indent(); in PrintStmt()
94 Indent() << "<<<NULL STATEMENT>>>" << NL; in PrintStmt()
142 raw_ostream &Indent(int Delta = 0) { in Indent() function in __anon7ba585bd0111::StmtPrinter
155 Indent() << "<<unknown stmt type>>" << NL; in VisitStmt()
185 Indent() << "}"; in PrintRawCompoundStmt()
195 Indent() << "#pragma STDC FENV_ACCESS " << (FEnvAccess ? "ON" : "OFF") in PrintFPPragmas()
202 Indent() << "#pragma clang fp exceptions("; in PrintFPPragmas()
221 Indent() << "#pragma STDC FENV_ROUND "; in PrintFPPragmas()
258 Indent() << ";" << NL; in VisitNullStmt()
262 Indent(); in VisitDeclStmt()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.cpp68 OS << Indent << "{\n" in print()
69 << Indent << " Triple = \"" << JTMB.TT.str() << "\"\n" in print()
70 << Indent << " CPU = \"" << JTMB.CPU << "\"\n" in print()
71 << Indent << " Features = \"" << JTMB.Features.getString() << "\"\n" in print()
72 << Indent << " Options = <not-printable>\n" in print()
73 << Indent << " Relocation Model = "; in print()
100 << Indent << " Code Model = "; in print()
124 << Indent << " Optimization Level = "; in print()
140 OS << "\n" << Indent << "}\n"; in print()
/freebsd/contrib/llvm-project/llvm/tools/llvm-tapi-diff/
H A DDiffEngine.cpp
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DPlistSupport.h53 inline raw_ostream &Indent(raw_ostream &o, const unsigned indent) { in Indent() function
109 Indent(o, indent) << "<dict>\n"; in EmitLocation()
110 Indent(o, indent) << " <key>line</key>"; in EmitLocation()
112 Indent(o, indent) << " <key>col</key>"; in EmitLocation()
114 Indent(o, indent) << " <key>file</key>"; in EmitLocation()
116 Indent(o, indent) << "</dict>\n"; in EmitLocation()
124 Indent(o, indent) << "<array>\n"; in EmitRange()
131 Indent(o, indent) << "</array>\n"; in EmitRange()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp463 void Module::print(raw_ostream &OS, unsigned Indent, bool Dump) const { in print() argument
464 OS.indent(Indent); in print()
473 OS.indent(Indent + 2); in print()
483 OS.indent(Indent + 2); in print()
496 OS.indent(Indent + 2); in print()
501 OS.indent(Indent + 2); in print()
508 OS.indent(Indent + 2); in print()
532 OS.indent(Indent + 2); in print()
541 OS.indent(Indent + 2); in print()
558 OS.indent(Indent + 2); in print()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp394 P.Indent(); in visitSymbolBegin()
400 AutoIndent Indent(P, 7); in visitSymbolEnd() local
430 AutoIndent Indent(P, 7); in visitKnownRecord() local
439 AutoIndent Indent(P, 7); in visitKnownRecord() local
451 AutoIndent Indent(P, 7); in visitKnownRecord() local
463 AutoIndent Indent(P, 7); in visitKnownRecord() local
477 AutoIndent Indent(P, 7); in visitKnownRecord() local
491 AutoIndent Indent(P, 7); in visitKnownRecord() local
504 AutoIndent Indent(P, 7); in visitKnownRecord() local
512 AutoIndent Indent(P, 7); in visitKnownRecord() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp60 unsigned AddressSize, unsigned Indent, in dumpRanges() argument
67 OS.indent(Indent); in dumpRanges()
73 DWARFUnit *U, unsigned Indent, in dumpLocationList() argument
89 &Offset, OS, U->getBaseAddress(), Ctx.getDWARFObj(), U, DumpOpts, Indent); in dumpLocationList()
93 DWARFUnit *U, unsigned Indent, in dumpLocationExpr() argument
111 const DWARFAttribute &AttrValue, unsigned Indent, in dumpAttribute() argument
117 OS.indent(Indent + 2); in dumpAttribute()
179 dumpLocationList(OS, FormValue, U, sizeof(BaseIndent) + Indent + 4, in dumpAttribute()
184 dumpLocationExpr(OS, FormValue, U, sizeof(BaseIndent) + Indent + 4, in dumpAttribute()
223 sizeof(BaseIndent) + Indent + 4, DumpOpts); in dumpAttribute()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/Analysis/
H A DSPIRVConvergenceRegionAnalysis.cpp146 const std::string Indent(IndentSize, '\t'); in dump() local
147 dbgs() << Indent << this << ": {\n"; in dump()
148 dbgs() << Indent << " Parent: " << Parent << "\n"; in dump()
151 dbgs() << Indent in dump()
157 dbgs() << Indent << " Entry: " << Entry->getName() << "\n"; in dump()
159 dbgs() << Indent << " Entry: " << Entry << "\n"; in dump()
161 dbgs() << Indent << " Exits: { "; in dump()
170 dbgs() << Indent << " Blocks: { "; in dump()
179 dbgs() << Indent << " Children: {\n"; in dump()
182 dbgs() << Indent << " }\n"; in dump()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.h198 ParenState(const FormatToken *Tok, unsigned Indent, unsigned LastSpace, in ParenState()
200 : Tok(Tok), Indent(Indent), LastSpace(LastSpace), in ParenState()
201 NestedBlockIndent(Indent), IsAligned(false), in ParenState()
222 unsigned Indent; member
359 if (Indent != Other.Indent)
360 return Indent < Other.Indent;

123456789