Home
last modified time | relevance | path

Searched full:os (Results 1 – 25 of 3944) sorted by relevance

12345678910>>...158

/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp23 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, in operator <<() argument
26 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Bool, OS) in operator <<()
27 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Single, OS) in operator <<()
28 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Double, OS) in operator <<()
29 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int8, OS) in operator <<()
30 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int16, OS) in operator <<()
31 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int32, OS) in operator <<()
32 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, Int64, OS) in operator <<()
33 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt8, OS) in operator <<()
34 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_VariantType, UInt16, OS) in operator <<()
[all …]
/llvm-project/llvm/utils/TableGen/Common/
H A DPredicateExpander.cpp19 void PredicateExpander::expandTrue(raw_ostream &OS) { OS << "true"; } in expandTrue() argument
20 void PredicateExpander::expandFalse(raw_ostream &OS) { OS << "false"; } in expandFalse() argument
22 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, int OpIndex, in expandCheckImmOperand() argument
26 OS << FunctionMapper << "("; in expandCheckImmOperand()
27 OS << "MI" << (isByRef() ? "." : "->") << "getOperand(" << OpIndex in expandCheckImmOperand()
30 OS << ")"; in expandCheckImmOperand()
31 OS << (shouldNegate() ? " != " : " == ") << ImmVal; in expandCheckImmOperand()
34 void PredicateExpander::expandCheckImmOperand(raw_ostream &OS, in argument
49 expandCheckImmOperandSimple(raw_ostream & OS,int OpIndex,StringRef FunctionMapper) expandCheckImmOperandSimple() argument
62 expandCheckImmOperandLT(raw_ostream & OS,int OpIndex,int ImmVal,StringRef FunctionMapper) expandCheckImmOperandLT() argument
74 expandCheckImmOperandGT(raw_ostream & OS,int OpIndex,int ImmVal,StringRef FunctionMapper) expandCheckImmOperandGT() argument
86 expandCheckRegOperand(raw_ostream & OS,int OpIndex,const Record * Reg,StringRef FunctionMapper) expandCheckRegOperand() argument
104 expandCheckRegOperandSimple(raw_ostream & OS,int OpIndex,StringRef FunctionMapper) expandCheckRegOperandSimple() argument
117 expandCheckInvalidRegOperand(raw_ostream & OS,int OpIndex) expandCheckInvalidRegOperand() argument
123 expandCheckSameRegOperand(raw_ostream & OS,int First,int Second) expandCheckSameRegOperand() argument
130 expandCheckNumOperands(raw_ostream & OS,int NumOps) expandCheckNumOperands() argument
135 expandCheckOpcode(raw_ostream & OS,const Record * Inst) expandCheckOpcode() argument
141 expandCheckOpcode(raw_ostream & OS,const RecVec & Opcodes) expandCheckOpcode() argument
171 expandCheckPseudo(raw_ostream & OS,const RecVec & Opcodes) expandCheckPseudo() argument
179 expandPredicateSequence(raw_ostream & OS,const RecVec & Sequence,bool IsCheckAll) expandPredicateSequence() argument
208 expandTIIFunctionCall(raw_ostream & OS,StringRef MethodName) expandTIIFunctionCall() argument
215 expandCheckIsRegOperand(raw_ostream & OS,int OpIndex) expandCheckIsRegOperand() argument
220 expandCheckIsVRegOperand(raw_ostream & OS,int OpIndex) expandCheckIsVRegOperand() argument
225 expandCheckIsImmOperand(raw_ostream & OS,int OpIndex) expandCheckIsImmOperand() argument
231 expandCheckFunctionPredicateWithTII(raw_ostream & OS,StringRef MCInstFn,StringRef MachineInstrFn,StringRef TIIPtr) expandCheckFunctionPredicateWithTII() argument
242 expandCheckFunctionPredicate(raw_ostream & OS,StringRef MCInstFn,StringRef MachineInstrFn) expandCheckFunctionPredicate() argument
249 expandCheckNonPortable(raw_ostream & OS,StringRef Code) expandCheckNonPortable() argument
257 expandReturnStatement(raw_ostream & OS,const Record * Rec) expandReturnStatement() argument
268 expandOpcodeSwitchCase(raw_ostream & OS,const Record * Rec) expandOpcodeSwitchCase() argument
283 expandOpcodeSwitchStatement(raw_ostream & OS,const RecVec & Cases,const Record * Default) expandOpcodeSwitchStatement() argument
310 expandStatement(raw_ostream & OS,const Record * Rec) expandStatement() argument
326 expandPredicate(raw_ostream & OS,const Record * Rec) expandPredicate() argument
435 expandHeader(raw_ostream & OS,const STIPredicateFunction & Fn) expandHeader() argument
462 expandPrologue(raw_ostream & OS,const STIPredicateFunction & Fn) expandPrologue() argument
489 expandOpcodeGroup(raw_ostream & OS,const OpcodeGroup & Group,bool ShouldUpdateOpcodeMask) expandOpcodeGroup() argument
529 expandBody(raw_ostream & OS,const STIPredicateFunction & Fn) expandBody() argument
562 expandEpilogue(raw_ostream & OS,const STIPredicateFunction & Fn) expandEpilogue() argument
576 expandSTIPredicate(raw_ostream & OS,const STIPredicateFunction & Fn) expandSTIPredicate() argument
[all...]
/llvm-project/llvm/test/tools/llvm-readobj/ELF/
H A Dsection-flags-os-proc.test1 ## Here we test how OS and processor specific flags are dumped.
4 # RUN: llvm-readobj -S %t.o | FileCheck --check-prefix=OS-PROC-LLVM %s
5 # RUN: llvm-readelf -S %t.o | FileCheck --check-prefix=OS-PROC-GNU %s
7 # OS-PROC-LLVM: Name: .os.flags.low
8 # OS-PROC-LLVM-NEXT: Type: SHT_PROGBITS
9 # OS-PROC-LLVM-NEXT: Flags [ (0x100000)
10 # OS-PROC-LLVM-NEXT: ]
11 # OS-PROC-LLVM: Name: .os.flags.high
12 # OS-PROC-LLVM-NEXT: Type: SHT_PROGBITS
13 # OS-PROC-LLVM-NEXT: Flags [ (0xFE00000)
[all …]
/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp33 static void dumpPreviousDeclImpl(raw_ostream &OS, ...) {} in dumpPreviousDeclImpl() argument
36 static void dumpPreviousDeclImpl(raw_ostream &OS, const Mergeable<T> *D) { in dumpPreviousDeclImpl() argument
39 OS << " first " << First; in dumpPreviousDeclImpl()
43 static void dumpPreviousDeclImpl(raw_ostream &OS, const Redeclarable<T> *D) { in dumpPreviousDeclImpl() argument
46 OS << " prev " << Prev; in dumpPreviousDeclImpl()
51 static void dumpPreviousDecl(raw_ostream &OS, const Decl *D) { in dumpPreviousDecl() argument
55 return dumpPreviousDeclImpl(OS, cast<DERIVED##Decl>(D)); in dumpPreviousDecl()
62 TextNodeDumper::TextNodeDumper(raw_ostream &OS, const ASTContext &Context, in TextNodeDumper() argument
64 : TextTreeStructure(OS, ShowColors), OS(O in TextNodeDumper()
69 TextNodeDumper(raw_ostream & OS,bool ShowColors) TextNodeDumper() argument
1239 dumpBasePath(raw_ostream & OS,const CastExpr * Node) dumpBasePath() argument
[all...]
H A DTypePrinter.cpp122 void print(const Type *ty, Qualifiers qs, raw_ostream &OS,
124 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder);
127 void spaceBeforePlaceHolder(raw_ostream &OS);
128 void printTypeSpec(NamedDecl *D, raw_ostream &OS);
129 void printTemplateId(const TemplateSpecializationType *T, raw_ostream &OS,
132 void printBefore(QualType T, raw_ostream &OS);
133 void printAfter(QualType T, raw_ostream &OS);
134 void AppendScope(DeclContext *DC, raw_ostream &OS,
136 void printTag(TagDecl *T, raw_ostream &OS);
137 void printFunctionAfter(const FunctionType::ExtInfo &Info, raw_ostream &OS);
152 AppendTypeQualList(raw_ostream & OS,unsigned TypeQuals,bool HasRestrictKeyword) AppendTypeQualList() argument
174 spaceBeforePlaceHolder(raw_ostream & OS) spaceBeforePlaceHolder() argument
186 print(QualType t,raw_ostream & OS,StringRef PlaceHolder) print() argument
191 print(const Type * T,Qualifiers Quals,raw_ostream & OS,StringRef PlaceHolder) print() argument
311 printBefore(QualType T,raw_ostream & OS) printBefore() argument
325 printBefore(const Type * T,Qualifiers Quals,raw_ostream & OS) printBefore() argument
371 printAfter(QualType t,raw_ostream & OS) printAfter() argument
378 printAfter(const Type * T,Qualifiers Quals,raw_ostream & OS) printAfter() argument
388 printBuiltinBefore(const BuiltinType * T,raw_ostream & OS) printBuiltinBefore() argument
393 printBuiltinAfter(const BuiltinType * T,raw_ostream & OS) printBuiltinAfter() argument
395 printComplexBefore(const ComplexType * T,raw_ostream & OS) printComplexBefore() argument
400 printComplexAfter(const ComplexType * T,raw_ostream & OS) printComplexAfter() argument
404 printPointerBefore(const PointerType * T,raw_ostream & OS) printPointerBefore() argument
415 printPointerAfter(const PointerType * T,raw_ostream & OS) printPointerAfter() argument
426 printBlockPointerBefore(const BlockPointerType * T,raw_ostream & OS) printBlockPointerBefore() argument
433 printBlockPointerAfter(const BlockPointerType * T,raw_ostream & OS) printBlockPointerAfter() argument
447 printLValueReferenceBefore(const LValueReferenceType * T,raw_ostream & OS) printLValueReferenceBefore() argument
460 printLValueReferenceAfter(const LValueReferenceType * T,raw_ostream & OS) printLValueReferenceAfter() argument
472 printRValueReferenceBefore(const RValueReferenceType * T,raw_ostream & OS) printRValueReferenceBefore() argument
485 printRValueReferenceAfter(const RValueReferenceType * T,raw_ostream & OS) printRValueReferenceAfter() argument
497 printMemberPointerBefore(const MemberPointerType * T,raw_ostream & OS) printMemberPointerBefore() argument
514 printMemberPointerAfter(const MemberPointerType * T,raw_ostream & OS) printMemberPointerAfter() argument
525 printConstantArrayBefore(const ConstantArrayType * T,raw_ostream & OS) printConstantArrayBefore() argument
531 printConstantArrayAfter(const ConstantArrayType * T,raw_ostream & OS) printConstantArrayAfter() argument
547 printIncompleteArrayBefore(const IncompleteArrayType * T,raw_ostream & OS) printIncompleteArrayBefore() argument
553 printIncompleteArrayAfter(const IncompleteArrayType * T,raw_ostream & OS) printIncompleteArrayAfter() argument
559 printVariableArrayBefore(const VariableArrayType * T,raw_ostream & OS) printVariableArrayBefore() argument
565 printVariableArrayAfter(const VariableArrayType * T,raw_ostream & OS) printVariableArrayAfter() argument
584 printAdjustedBefore(const AdjustedType * T,raw_ostream & OS) printAdjustedBefore() argument
590 printAdjustedAfter(const AdjustedType * T,raw_ostream & OS) printAdjustedAfter() argument
594 printDecayedBefore(const DecayedType * T,raw_ostream & OS) printDecayedBefore() argument
600 printArrayParameterAfter(const ArrayParameterType * T,raw_ostream & OS) printArrayParameterAfter() argument
605 printArrayParameterBefore(const ArrayParameterType * T,raw_ostream & OS) printArrayParameterBefore() argument
609 printDecayedAfter(const DecayedType * T,raw_ostream & OS) printDecayedAfter() argument
615 printDependentSizedArrayBefore(const DependentSizedArrayType * T,raw_ostream & OS) printDependentSizedArrayBefore() argument
622 printDependentSizedArrayAfter(const DependentSizedArrayType * T,raw_ostream & OS) printDependentSizedArrayAfter() argument
631 printDependentAddressSpaceBefore(const DependentAddressSpaceType * T,raw_ostream & OS) printDependentAddressSpaceBefore() argument
636 printDependentAddressSpaceAfter(const DependentAddressSpaceType * T,raw_ostream & OS) printDependentAddressSpaceAfter() argument
646 printDependentSizedExtVectorBefore(const DependentSizedExtVectorType * T,raw_ostream & OS) printDependentSizedExtVectorBefore() argument
654 printDependentSizedExtVectorAfter(const DependentSizedExtVectorType * T,raw_ostream & OS) printDependentSizedExtVectorAfter() argument
669 printVectorBefore(const VectorType * T,raw_ostream & OS) printVectorBefore() argument
739 printVectorAfter(const VectorType * T,raw_ostream & OS) printVectorAfter() argument
744 printDependentVectorBefore(const DependentVectorType * T,raw_ostream & OS) printDependentVectorBefore() argument
821 printDependentVectorAfter(const DependentVectorType * T,raw_ostream & OS) printDependentVectorAfter() argument
826 printExtVectorBefore(const ExtVectorType * T,raw_ostream & OS) printExtVectorBefore() argument
832 printExtVectorAfter(const ExtVectorType * T,raw_ostream & OS) printExtVectorAfter() argument
847 printConstantMatrixBefore(const ConstantMatrixType * T,raw_ostream & OS) printConstantMatrixBefore() argument
855 printConstantMatrixAfter(const ConstantMatrixType * T,raw_ostream & OS) printConstantMatrixAfter() argument
860 printDependentSizedMatrixBefore(const DependentSizedMatrixType * T,raw_ostream & OS) printDependentSizedMatrixBefore() argument
874 printDependentSizedMatrixAfter(const DependentSizedMatrixType * T,raw_ostream & OS) printDependentSizedMatrixAfter() argument
879 printExceptionSpecification(raw_ostream & OS,const PrintingPolicy & Policy) const printExceptionSpecification() argument
910 printFunctionProtoBefore(const FunctionProtoType * T,raw_ostream & OS) printFunctionProtoBefore() argument
941 printFunctionProtoAfter(const FunctionProtoType * T,raw_ostream & OS) printFunctionProtoAfter() argument
1038 printFunctionAfter(const FunctionType::ExtInfo & Info,raw_ostream & OS) printFunctionAfter() argument
1136 printFunctionNoProtoBefore(const FunctionNoProtoType * T,raw_ostream & OS) printFunctionNoProtoBefore() argument
1145 printFunctionNoProtoAfter(const FunctionNoProtoType * T,raw_ostream & OS) printFunctionNoProtoAfter() argument
1156 printTypeSpec(NamedDecl * D,raw_ostream & OS) printTypeSpec() argument
1170 printUnresolvedUsingBefore(const UnresolvedUsingType * T,raw_ostream & OS) printUnresolvedUsingBefore() argument
1175 printUnresolvedUsingAfter(const UnresolvedUsingType * T,raw_ostream & OS) printUnresolvedUsingAfter() argument
1177 printUsingBefore(const UsingType * T,raw_ostream & OS) printUsingBefore() argument
1190 printUsingAfter(const UsingType * T,raw_ostream & OS) printUsingAfter() argument
1192 printTypedefBefore(const TypedefType * T,raw_ostream & OS) printTypedefBefore() argument
1197 printMacroQualifiedBefore(const MacroQualifiedType * T,raw_ostream & OS) printMacroQualifiedBefore() argument
1207 printMacroQualifiedAfter(const MacroQualifiedType * T,raw_ostream & OS) printMacroQualifiedAfter() argument
1211 printTypedefAfter(const TypedefType * T,raw_ostream & OS) printTypedefAfter() argument
1214 printTypeOfExprBefore(const TypeOfExprType * T,raw_ostream & OS) printTypeOfExprBefore() argument
1223 printTypeOfExprAfter(const TypeOfExprType * T,raw_ostream & OS) printTypeOfExprAfter() argument
1225 printTypeOfBefore(const TypeOfType * T,raw_ostream & OS) printTypeOfBefore() argument
1233 printTypeOfAfter(const TypeOfType * T,raw_ostream & OS) printTypeOfAfter() argument
1235 printDecltypeBefore(const DecltypeType * T,raw_ostream & OS) printDecltypeBefore() argument
1244 printPackIndexingBefore(const PackIndexingType * T,raw_ostream & OS) printPackIndexingBefore() argument
1256 printPackIndexingAfter(const PackIndexingType * T,raw_ostream & OS) printPackIndexingAfter() argument
1258 printDecltypeAfter(const DecltypeType * T,raw_ostream & OS) printDecltypeAfter() argument
1261 printUnaryTransformBefore(const UnaryTransformType * T,raw_ostream & OS) printUnaryTransformBefore() argument
1276 printUnaryTransformAfter(const UnaryTransformType * T,raw_ostream & OS) printUnaryTransformAfter() argument
1278 printAutoBefore(const AutoType * T,raw_ostream & OS) printAutoBefore() argument
1303 printAutoAfter(const AutoType * T,raw_ostream & OS) printAutoAfter() argument
1310 printDeducedTemplateSpecializationBefore(const DeducedTemplateSpecializationType * T,raw_ostream & OS) printDeducedTemplateSpecializationBefore() argument
1322 printDeducedTemplateSpecializationAfter(const DeducedTemplateSpecializationType * T,raw_ostream & OS) printDeducedTemplateSpecializationAfter() argument
1328 printAtomicBefore(const AtomicType * T,raw_ostream & OS) printAtomicBefore() argument
1337 printAtomicAfter(const AtomicType * T,raw_ostream & OS) printAtomicAfter() argument
1339 printPipeBefore(const PipeType * T,raw_ostream & OS) printPipeBefore() argument
1351 printPipeAfter(const PipeType * T,raw_ostream & OS) printPipeAfter() argument
1353 printBitIntBefore(const BitIntType * T,raw_ostream & OS) printBitIntBefore() argument
1360 printBitIntAfter(const BitIntType * T,raw_ostream & OS) printBitIntAfter() argument
1363 printDependentBitIntBefore(const DependentBitIntType * T,raw_ostream & OS) printDependentBitIntBefore() argument
1373 printDependentBitIntAfter(const DependentBitIntType * T,raw_ostream & OS) printDependentBitIntAfter() argument
1376 AppendScope(DeclContext * DC,raw_ostream & OS,DeclarationName NameInScope) AppendScope() argument
1426 printTag(TagDecl * D,raw_ostream & OS) printTag() argument
1521 printRecordBefore(const RecordType * T,raw_ostream & OS) printRecordBefore() argument
1543 printRecordAfter(const RecordType * T,raw_ostream & OS) printRecordAfter() argument
1545 printEnumBefore(const EnumType * T,raw_ostream & OS) printEnumBefore() argument
1549 printEnumAfter(const EnumType * T,raw_ostream & OS) printEnumAfter() argument
1552 printTemplateTypeParmBefore(const TemplateTypeParmType * T,raw_ostream & OS) printTemplateTypeParmBefore() argument
1570 printTemplateTypeParmAfter(const TemplateTypeParmType * T,raw_ostream & OS) printTemplateTypeParmAfter() argument
1574 printSubstTemplateTypeParmBefore(const SubstTemplateTypeParmType * T,raw_ostream & OS) printSubstTemplateTypeParmBefore() argument
1581 printSubstTemplateTypeParmAfter(const SubstTemplateTypeParmType * T,raw_ostream & OS) printSubstTemplateTypeParmAfter() argument
1588 printSubstTemplateTypeParmPackBefore(const SubstTemplateTypeParmPackType * T,raw_ostream & OS) printSubstTemplateTypeParmPackBefore() argument
1609 printSubstTemplateTypeParmPackAfter(const SubstTemplateTypeParmPackType * T,raw_ostream & OS) printSubstTemplateTypeParmPackAfter() argument
1614 printTemplateId(const TemplateSpecializationType * T,raw_ostream & OS,bool FullyQualify) printTemplateId() argument
1636 printTemplateSpecializationBefore(const TemplateSpecializationType * T,raw_ostream & OS) printTemplateSpecializationBefore() argument
1642 printTemplateSpecializationAfter(const TemplateSpecializationType * T,raw_ostream & OS) printTemplateSpecializationAfter() argument
1645 printInjectedClassNameBefore(const InjectedClassNameType * T,raw_ostream & OS) printInjectedClassNameBefore() argument
1655 printInjectedClassNameAfter(const InjectedClassNameType * T,raw_ostream & OS) printInjectedClassNameAfter() argument
1658 printElaboratedBefore(const ElaboratedType * T,raw_ostream & OS) printElaboratedBefore() argument
1702 printElaboratedAfter(const ElaboratedType * T,raw_ostream & OS) printElaboratedAfter() argument
1715 printParenBefore(const ParenType * T,raw_ostream & OS) printParenBefore() argument
1723 printParenAfter(const ParenType * T,raw_ostream & OS) printParenAfter() argument
1732 printDependentNameBefore(const DependentNameType * T,raw_ostream & OS) printDependentNameBefore() argument
1744 printDependentNameAfter(const DependentNameType * T,raw_ostream & OS) printDependentNameAfter() argument
1747 printDependentTemplateSpecializationBefore(const DependentTemplateSpecializationType * T,raw_ostream & OS) printDependentTemplateSpecializationBefore() argument
1762 printDependentTemplateSpecializationAfter(const DependentTemplateSpecializationType * T,raw_ostream & OS) printDependentTemplateSpecializationAfter() argument
1765 printPackExpansionBefore(const PackExpansionType * T,raw_ostream & OS) printPackExpansionBefore() argument
1770 printPackExpansionAfter(const PackExpansionType * T,raw_ostream & OS) printPackExpansionAfter() argument
1776 printCountAttributedImpl(const CountAttributedType * T,raw_ostream & OS,const PrintingPolicy & Policy) printCountAttributedImpl() argument
1793 printCountAttributedBefore(const CountAttributedType * T,raw_ostream & OS) printCountAttributedBefore() argument
1800 printCountAttributedAfter(const CountAttributedType * T,raw_ostream & OS) printCountAttributedAfter() argument
1807 printAttributedBefore(const AttributedType * T,raw_ostream & OS) printAttributedBefore() argument
1854 printAttributedAfter(const AttributedType * T,raw_ostream & OS) printAttributedAfter() argument
2032 printBTFTagAttributedBefore(const BTFTagAttributedType * T,raw_ostream & OS) printBTFTagAttributedBefore() argument
2038 printBTFTagAttributedAfter(const BTFTagAttributedType * T,raw_ostream & OS) printBTFTagAttributedAfter() argument
2043 printObjCInterfaceBefore(const ObjCInterfaceType * T,raw_ostream & OS) printObjCInterfaceBefore() argument
2049 printObjCInterfaceAfter(const ObjCInterfaceType * T,raw_ostream & OS) printObjCInterfaceAfter() argument
2052 printObjCTypeParamBefore(const ObjCTypeParamType * T,raw_ostream & OS) printObjCTypeParamBefore() argument
2071 printObjCTypeParamAfter(const ObjCTypeParamType * T,raw_ostream & OS) printObjCTypeParamAfter() argument
2074 printObjCObjectBefore(const ObjCObjectType * T,raw_ostream & OS) printObjCObjectBefore() argument
2115 printObjCObjectAfter(const ObjCObjectType * T,raw_ostream & OS) printObjCObjectAfter() argument
2122 printObjCObjectPointerBefore(const ObjCObjectPointerType * T,raw_ostream & OS) printObjCObjectPointerBefore() argument
2135 printObjCObjectPointerAfter(const ObjCObjectPointerType * T,raw_ostream & OS) printObjCObjectPointerAfter() argument
2145 printArgument(const TemplateArgument & A,const PrintingPolicy & PP,llvm::raw_ostream & OS,bool IncludeType) printArgument() argument
2150 printArgument(const TemplateArgumentLoc & A,const PrintingPolicy & PP,llvm::raw_ostream & OS,bool IncludeType) printArgument() argument
2326 printTo(raw_ostream & OS,ArrayRef<TA> Args,const PrintingPolicy & Policy,const TemplateParameterList * TPL,bool IsPack,unsigned ParmIndex) printTo() argument
2392 printTemplateArgumentList(raw_ostream & OS,const TemplateArgumentListInfo & Args,const PrintingPolicy & Policy,const TemplateParameterList * TPL) printTemplateArgumentList() argument
2399 printTemplateArgumentList(raw_ostream & OS,ArrayRef<TemplateArgument> Args,const PrintingPolicy & Policy,const TemplateParameterList * TPL) printTemplateArgumentList() argument
2406 printTemplateArgumentList(raw_ostream & OS,ArrayRef<TemplateArgumentLoc> Args,const PrintingPolicy & Policy,const TemplateParameterList * TPL) printTemplateArgumentList() argument
2492 print(raw_ostream & OS,const PrintingPolicy & Policy,bool appendSpaceIfNonEmpty) const print() argument
2569 print(raw_ostream & OS,const PrintingPolicy & Policy,const Twine & PlaceHolder,unsigned Indentation) const print() argument
2576 print(const Type * ty,Qualifiers qs,raw_ostream & OS,const PrintingPolicy & policy,const Twine & PlaceHolder,unsigned Indentation) print() argument
2600 operator <<(raw_ostream & OS,QualType QT) operator <<() argument
[all...]
H A DStmtPrinter.cpp69 raw_ostream &OS; member in __anonffae03f00111::StmtPrinter
77 StmtPrinter(raw_ostream &os, PrinterHelper *helper, in StmtPrinter() argument
80 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy), in StmtPrinter()
91 OS << ";" << NL; in PrintStmt()
107 OS << "; "; in PrintInitStmt()
113 OS << " "; in PrintControlledStmt()
115 OS << NL; in PrintControlledStmt()
117 OS << NL; in PrintControlledStmt()
140 OS << "<nul in PrintExpr()
1303 printExprAsWritten(raw_ostream & OS,Expr * E,const ASTContext * Context) printExprAsWritten() argument
1376 PrintFloatingLiteral(raw_ostream & OS,FloatingLiteral * Node,bool PrintSuffix) PrintFloatingLiteral() argument
[all...]
/llvm-project/clang/utils/TableGen/
H A DClangOpcodesEmitter.cpp30 void run(raw_ostream &OS);
35 void EmitEnum(raw_ostream &OS, StringRef N, const Record *R);
38 void EmitInterp(raw_ostream &OS, StringRef N, const Record *R);
41 void EmitDisasm(raw_ostream &OS, StringRef N, const Record *R);
44 void EmitEmitter(raw_ostream &OS, StringRef N, const Record *R);
47 void EmitProto(raw_ostream &OS, StringRef N, const Record *R);
50 void EmitGroup(raw_ostream &OS, StringRef N, const Record *R);
53 void EmitEval(raw_ostream &OS, StringRef N, const Record *R);
55 void PrintTypes(raw_ostream &OS, ArrayRef<const Record *> Types);
86 void ClangOpcodesEmitter::run(raw_ostream &OS) { in run() argument
103 EmitEnum(raw_ostream & OS,StringRef N,const Record * R) EmitEnum() argument
112 EmitInterp(raw_ostream & OS,StringRef N,const Record * R) EmitInterp() argument
171 EmitDisasm(raw_ostream & OS,StringRef N,const Record * R) EmitDisasm() argument
190 EmitEmitter(raw_ostream & OS,StringRef N,const Record * R) EmitEmitter() argument
227 EmitProto(raw_ostream & OS,StringRef N,const Record * R) EmitProto() argument
265 EmitGroup(raw_ostream & OS,StringRef N,const Record * R) EmitGroup() argument
359 EmitEval(raw_ostream & OS,StringRef N,const Record * R) EmitEval() argument
394 PrintTypes(raw_ostream & OS,ArrayRef<const Record * > Types) PrintTypes() argument
407 EmitClangOpcodes(RecordKeeper & Records,raw_ostream & OS) EmitClangOpcodes() argument
[all...]
H A DClangAttrEmitter.cpp247 virtual void writeAccessors(raw_ostream &OS) const = 0;
248 virtual void writeAccessorDefinitions(raw_ostream &OS) const {}
249 virtual void writeASTVisitorTraversal(raw_ostream &OS) const {}
250 virtual void writeCloneArgs(raw_ostream &OS) const = 0;
251 virtual void writeTemplateInstantiationArgs(raw_ostream &OS) const = 0;
252 virtual void writeTemplateInstantiation(raw_ostream &OS) const {}
253 virtual void writeCtorBody(raw_ostream &OS) const {}
254 virtual void writeCtorInitializers(raw_ostream &OS) const = 0; in getIsOmitted()
255 virtual void writeCtorDefaultInitializers(raw_ostream &OS) const = 0;
256 virtual void writeCtorParameters(raw_ostream &OS) cons
1005 writeConversion(raw_ostream & OS,bool Header) const writeConversion() argument
1145 writeConversion(raw_ostream & OS,bool Header) const writeConversion() argument
1532 writeAvailabilityValue(raw_ostream & OS) writeAvailabilityValue() argument
1542 writeDeprecatedAttrValue(raw_ostream & OS,std::string & Variety) writeDeprecatedAttrValue() argument
1551 writeGetSpellingFunction(const Record & R,raw_ostream & OS) writeGetSpellingFunction() argument
1577 writePrettyPrintFunction(const Record & R,const std::vector<std::unique_ptr<Argument>> & Args,raw_ostream & OS) writePrettyPrintFunction() argument
1732 writeAttrAccessorDefinition(const Record & R,raw_ostream & OS) writeAttrAccessorDefinition() argument
1828 WriteSemanticSpellingSwitch(const std::string & VarName,const SemanticSpellingMap & Map,raw_ostream & OS) WriteSemanticSpellingSwitch() argument
1896 emitClangAttrLateParsedListImpl(RecordKeeper & Records,raw_ostream & OS,LateAttrParseKind LateParseMode) emitClangAttrLateParsedListImpl() argument
1917 emitClangAttrLateParsedList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrLateParsedList() argument
1924 emitClangAttrLateParsedExperimentalList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrLateParsedExperimentalList() argument
2158 emitMatchRuleList(raw_ostream & OS) emitMatchRuleList() argument
2254 generateStrictConformsTo(const Record & Attr,raw_ostream & OS) generateStrictConformsTo() argument
2283 generateParsingHelpers(raw_ostream & OS) generateParsingHelpers() argument
2391 emitClangAttrTypeArgList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrTypeArgList() argument
2414 emitClangAttrArgContextList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrArgContextList() argument
2476 emitClangAttrVariadicIdentifierArgList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrVariadicIdentifierArgList() argument
2503 emitClangAttrUnevaluatedStringLiteralList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrUnevaluatedStringLiteralList() argument
2563 emitClangAttrIdentifierArgList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrIdentifierArgList() argument
2583 emitClangAttrStrictIdentifierArgAtIndexList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrStrictIdentifierArgAtIndexList() argument
2616 emitClangAttrThisIsaIdentifierArgList(RecordKeeper & Records,raw_ostream & OS) emitClangAttrThisIsaIdentifierArgList() argument
2636 emitClangAttrAcceptsExprPack(RecordKeeper & Records,raw_ostream & OS) emitClangAttrAcceptsExprPack() argument
2657 emitFormInitializer(raw_ostream & OS,const FlattenedSpelling & Spelling,StringRef SpellingIndex) emitFormInitializer() argument
2669 emitAttributes(RecordKeeper & Records,raw_ostream & OS,bool Header) emitAttributes() argument
3171 EmitClangAttrClass(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrClass() argument
3183 EmitClangAttrImpl(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrImpl() argument
3220 emitAttrList(raw_ostream & OS,StringRef Class,const std::vector<Record * > & AttrList) emitAttrList() argument
3256 emitDefaultDefine(raw_ostream & OS,StringRef name,const char * superName) emitDefaultDefine() argument
3420 EmitClangAttrList(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrList() argument
3461 EmitClangAttrSubjectMatchRuleList(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrSubjectMatchRuleList() argument
3473 EmitClangAttrPCHRead(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrPCHRead() argument
3528 EmitClangAttrPCHWrite(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrPCHWrite() argument
3645 GenerateHasAttrSpellingStringSwitch(const std::vector<std::pair<const Record *,FlattenedSpelling>> & Attrs,raw_ostream & OS,const std::string & Variety,const std::string & Scope="") GenerateHasAttrSpellingStringSwitch() argument
3721 EmitClangRegularKeywordAttributeInfo(RecordKeeper & Records,raw_ostream & OS) EmitClangRegularKeywordAttributeInfo() argument
3744 EmitClangAttrHasAttrImpl(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrHasAttrImpl() argument
3831 EmitClangAttrSpellingListIndex(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrSpellingListIndex() argument
3863 EmitClangAttrASTVisitor(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrASTVisitor() argument
3936 EmitClangAttrTemplateInstantiateHelper(const std::vector<Record * > & Attrs,raw_ostream & OS,bool AppliesToDecl) EmitClangAttrTemplateInstantiateHelper() argument
3989 EmitClangAttrTemplateInstantiate(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrTemplateInstantiate() argument
4012 EmitClangAttrParsedAttrList(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrParsedAttrList() argument
4030 emitArgInfo(const Record & R,raw_ostream & OS) emitArgInfo() argument
4133 GenerateCustomAppertainsTo(const Record & Subject,raw_ostream & OS) GenerateCustomAppertainsTo() argument
4163 GenerateAppertainsTo(const Record & Attr,raw_ostream & OS) GenerateAppertainsTo() argument
4281 GenerateMutualExclusionsChecks(const Record & Attr,const RecordKeeper & Records,raw_ostream & OS,raw_ostream & MergeDeclOS,raw_ostream & MergeStmtOS) GenerateMutualExclusionsChecks() argument
4413 emitAttributeMatchRules(PragmaClangAttributeSupport & PragmaAttributeSupport,raw_ostream & OS) emitAttributeMatchRules() argument
4448 GenerateLangOptRequirements(const Record & R,raw_ostream & OS) GenerateLangOptRequirements() argument
4462 GenerateTargetRequirements(const Record & Attr,const ParsedAttrMap & Dupes,raw_ostream & OS) GenerateTargetRequirements() argument
4504 GenerateSpellingTargetRequirements(const Record & Attr,const std::vector<Record * > & TargetSpellings,raw_ostream & OS) GenerateSpellingTargetRequirements() argument
4547 GenerateSpellingIndexToSemanticSpelling(const Record & Attr,raw_ostream & OS) GenerateSpellingIndexToSemanticSpelling() argument
4572 GenerateHandleDeclAttribute(const Record & Attr,raw_ostream & OS) GenerateHandleDeclAttribute() argument
4595 GenerateIsParamExpr(const Record & Attr,raw_ostream & OS) GenerateIsParamExpr() argument
4606 GenerateHandleAttrWithDelayedArgs(RecordKeeper & Records,raw_ostream & OS) GenerateHandleAttrWithDelayedArgs() argument
4644 EmitClangAttrParsedAttrImpl(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrParsedAttrImpl() argument
4808 EmitClangAttrParsedAttrKinds(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrParsedAttrKinds() argument
4909 EmitClangAttrTextNodeDump(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrTextNodeDump() argument
4948 EmitClangAttrNodeTraverse(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrNodeTraverse() argument
4977 EmitClangAttrParserStringSwitches(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrParserStringSwitches() argument
4992 EmitClangAttrSubjectMatchRulesParserStringSwitches(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrSubjectMatchRulesParserStringSwitches() argument
4996 EmitClangAttrDocTable(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrDocTable() argument
5081 WriteCategoryHeader(const Record * DocCategory,raw_ostream & OS) WriteCategoryHeader() argument
5146 WriteDocumentation(RecordKeeper & Records,const DocumentationData & Doc,raw_ostream & OS) WriteDocumentation() argument
5200 EmitClangAttrDocs(RecordKeeper & Records,raw_ostream & OS) EmitClangAttrDocs() argument
5261 EmitTestPragmaAttributeSupportedAttributes(RecordKeeper & Records,raw_ostream & OS) EmitTestPragmaAttributeSupportedAttributes() argument
[all...]
H A DTableGenBackends.h27 void EmitClangDeclContext(const llvm::RecordKeeper &RK, llvm::raw_ostream &OS);
35 void EmitClangASTNodes(const llvm::RecordKeeper &RK, llvm::raw_ostream &OS,
39 llvm::raw_ostream &OS);
41 llvm::raw_ostream &OS);
43 llvm::raw_ostream &OS);
45 llvm::raw_ostream &OS);
47 llvm::raw_ostream &OS);
49 llvm::raw_ostream &OS);
51 const llvm::RecordKeeper &Records, llvm::raw_ostream &OS);
53 llvm::raw_ostream &OS);
[all...]
/llvm-project/llvm/tools/llvm-rc/
H A DResourceScriptStmt.cpp19 raw_ostream &operator<<(raw_ostream &OS, const IntOrString &Item) { in operator <<() argument
21 return OS << Item.Data.Int; in operator <<()
23 return OS << Item.Data.String; in operator <<()
26 raw_ostream &OptionalStmtList::log(raw_ostream &OS) const { in log()
28 OS << " Option: "; in log()
29 Stmt->log(OS); in log()
31 return OS; in log()
34 raw_ostream &LanguageResource::log(raw_ostream &OS) const { in log()
35 return OS << "Language: " << Lang << ", Sublanguage: " << SubLang << "\n"; in log()
46 raw_ostream &AcceleratorsResource::log(raw_ostream &OS) const { in log()
[all …]
/llvm-project/llvm/utils/TableGen/
H A DInstrInfoEmitter.cpp61 void run(raw_ostream &OS);
64 void emitEnums(raw_ostream &OS);
82 void emitTIIHelperMethods(raw_ostream &OS, StringRef TargetName,
87 void emitMCIIHelperMethods(raw_ostream &OS, StringRef TargetName);
90 void emitFeatureVerifier(raw_ostream &OS, const CodeGenTarget &Target);
94 const OperandInfoMapTy &OperandInfo, raw_ostream &OS);
96 raw_ostream &OS, const CodeGenTarget &Target,
104 raw_ostream &OS, const CodeGenTarget &Target,
108 raw_ostream &OS, StringRef Namespace,
111 raw_ostream &OS, StringRe
229 EmitOperandInfo(raw_ostream & OS,OperandInfoListTy & OperandInfoList) EmitOperandInfo() argument
283 emitOperandNameMappings(raw_ostream & OS,const CodeGenTarget & Target,ArrayRef<const CodeGenInstruction * > NumberedInstructions) emitOperandNameMappings() argument
355 emitOperandTypeMappings(raw_ostream & OS,const CodeGenTarget & Target,ArrayRef<const CodeGenInstruction * > NumberedInstructions) emitOperandTypeMappings() argument
498 emitLogicalOperandSizeMappings(raw_ostream & OS,StringRef Namespace,ArrayRef<const CodeGenInstruction * > NumberedInstructions) emitLogicalOperandSizeMappings() argument
585 emitLogicalOperandTypeMappings(raw_ostream & OS,StringRef Namespace,ArrayRef<const CodeGenInstruction * > NumberedInstructions) emitLogicalOperandTypeMappings() argument
673 emitMCIIHelperMethods(raw_ostream & OS,StringRef TargetName) emitMCIIHelperMethods() argument
731 emitFeatureVerifier(raw_ostream & OS,const CodeGenTarget & Target) emitFeatureVerifier() argument
890 emitTIIHelperMethods(raw_ostream & OS,StringRef TargetName,bool ExpandDefinition) emitTIIHelperMethods() argument
923 run(raw_ostream & OS) run() argument
1176 emitRecord(const CodeGenInstruction & Inst,unsigned Num,Record * InstrInfo,std::map<std::vector<Record * >,unsigned> & EmittedLists,const OperandInfoMapTy & OperandInfoMap,raw_ostream & OS) emitRecord() argument
1311 emitEnums(raw_ostream & OS) emitEnums() argument
1355 EmitInstrInfo(RecordKeeper & RK,raw_ostream & OS) EmitInstrInfo() argument
[all...]
H A DOptParserEmitter.cpp
H A DDirectiveEmitter.cpp
H A DDAGISelMatcherEmitter.cpp170 unsigned StartIdx, raw_ostream &OS);
172 unsigned SizeMatcherList(Matcher *N, raw_ostream &OS);
174 void EmitPredicateFunctions(raw_ostream &OS);
176 void EmitHistogram(const Matcher *N, raw_ostream &OS);
178 void EmitPatternMatchTable(raw_ostream &OS);
182 StringRef Decl, raw_ostream &OS);
184 unsigned SizeMatcher(Matcher *N, raw_ostream &OS);
187 unsigned CurrentIdx, raw_ostream &OS);
238 static unsigned EmitVBRValue(uint64_t Val, raw_ostream &OS) { in EmitVBRValue() argument
240 OS << Va in EmitVBRValue()
261 EmitSignedVBRValue(uint64_t Val,raw_ostream & OS) EmitSignedVBRValue() argument
292 SizeMatcherList(Matcher * N,raw_ostream & OS) SizeMatcherList() argument
304 SizeMatcher(Matcher * N,raw_ostream & OS) SizeMatcher() argument
360 BeginEmitFunction(raw_ostream & OS,StringRef RetType,StringRef Decl,bool AddOverride) BeginEmitFunction() argument
377 EndEmitFunction(raw_ostream & OS) EndEmitFunction() argument
381 EmitPatternMatchTable(raw_ostream & OS) EmitPatternMatchTable() argument
422 EmitMatcher(const Matcher * N,const unsigned Indent,unsigned CurrentIdx,raw_ostream & OS) EmitMatcher() argument
1040 EmitMatcherList(const Matcher * N,const unsigned Indent,unsigned CurrentIdx,raw_ostream & OS) EmitMatcherList() argument
1057 EmitNodePredicatesFunction(const std::vector<TreePattern * > & Preds,StringRef Decl,raw_ostream & OS) EmitNodePredicatesFunction() argument
1081 EmitPredicateFunctions(raw_ostream & OS) EmitPredicateFunctions() argument
1285 EmitHistogram(const Matcher * M,raw_ostream & OS) EmitHistogram() argument
1299 EmitMatcherTable(Matcher * TheMatcher,const CodeGenDAGPatterns & CGP,raw_ostream & OS) EmitMatcherTable() argument
[all...]
H A DIntrinsicEmitter.cpp
H A DMacroFusionPredicatorEmitter.cpp59 PredicateExpander &PE, raw_ostream &OS);
61 PredicateExpander &PE, raw_ostream &OS);
64 raw_ostream &OS);
66 PredicateExpander &PE, raw_ostream &OS);
68 PredicateExpander &PE, raw_ostream &OS);
70 PredicateExpander &PE, raw_ostream &OS);
75 void run(raw_ostream &OS);
80 ArrayRef<const Record *> Fusions, PredicateExpander &PE, raw_ostream &OS) { in emitMacroFusionDecl()
81 OS << "#ifdef GET_" << Target.getName() << "_MACRO_FUSION_PRED_DECL\n"; in emitMacroFusionDecl()
82 OS << "#unde in emitMacroFusionDecl()
79 emitMacroFusionDecl(ArrayRef<Record * > Fusions,PredicateExpander & PE,raw_ostream & OS) emitMacroFusionDecl() argument
96 emitMacroFusionImpl(ArrayRef<Record * > Fusions,PredicateExpander & PE,raw_ostream & OS) emitMacroFusionImpl() argument
127 emitPredicates(ArrayRef<Record * > Predicates,bool IsCommutable,PredicateExpander & PE,raw_ostream & OS) emitPredicates() argument
145 emitFirstPredicate(Record * Predicate,bool IsCommutable,PredicateExpander & PE,raw_ostream & OS) emitFirstPredicate() argument
178 emitSecondPredicate(Record * Predicate,bool IsCommutable,PredicateExpander & PE,raw_ostream & OS) emitSecondPredicate() argument
229 emitBothPredicate(Record * Predicate,bool IsCommutable,PredicateExpander & PE,raw_ostream & OS) emitBothPredicate() argument
272 run(raw_ostream & OS) run() argument
[all...]
H A DRegisterInfoEmitter.cpp71 void runEnums(raw_ostream &OS);
74 void runMCDesc(raw_ostream &OS);
77 void runTargetHeader(raw_ostream &OS);
80 void runTargetDesc(raw_ostream &OS);
83 void run(raw_ostream &OS);
85 void debugDump(raw_ostream &OS);
88 void EmitRegMapping(raw_ostream &OS, const std::deque<CodeGenRegister> &Regs,
90 void EmitRegMappingTables(raw_ostream &OS,
93 void EmitRegUnitPressure(raw_ostream &OS, StringRef ClassName);
94 void emitComposeSubRegIndices(raw_ostream &OS, StringRe
104 runEnums(raw_ostream & OS,CodeGenTarget & Target,CodeGenRegBank & Bank) runEnums() argument
205 printInt(raw_ostream & OS,int Val) printInt() argument
207 EmitRegUnitPressure(raw_ostream & OS,const CodeGenRegBank & RegBank,const std::string & ClassName) EmitRegUnitPressure() argument
381 EmitRegMappingTables(raw_ostream & OS,const std::deque<CodeGenRegister> & Regs,bool isCtor) EmitRegMappingTables() argument
508 EmitRegMapping(raw_ostream & OS,const std::deque<CodeGenRegister> & Regs,bool isCtor) EmitRegMapping() argument
588 printBitVectorAsHex(raw_ostream & OS,const BitVector & Bits,unsigned Width) printBitVectorAsHex() argument
611 print(raw_ostream & OS) print() argument
614 printSimpleValueType(raw_ostream & OS,MVT::SimpleValueType VT) printSimpleValueType() argument
618 printSubRegIndex(raw_ostream & OS,const CodeGenSubRegIndex * Idx) printSubRegIndex() argument
660 printDiff16(raw_ostream & OS,int16_t Val) printDiff16() argument
662 printMask(raw_ostream & OS,LaneBitmask Val) printMask() argument
686 emitComposeSubRegIndices(raw_ostream & OS,CodeGenRegBank & RegBank,const std::string & ClName) emitComposeSubRegIndices() argument
756 emitComposeSubRegIndexLaneMask(raw_ostream & OS,CodeGenRegBank & RegBank,const std::string & ClName) emitComposeSubRegIndexLaneMask() argument
865 runMCDesc(raw_ostream & OS,CodeGenTarget & Target,CodeGenRegBank & RegBank) runMCDesc() argument
1104 runTargetHeader(raw_ostream & OS,CodeGenTarget & Target,CodeGenRegBank & RegBank) runTargetHeader() argument
1189 runTargetDesc(raw_ostream & OS,CodeGenTarget & Target,CodeGenRegBank & RegBank) runTargetDesc() argument
1803 run(raw_ostream & OS) run() argument
1821 debugDump(raw_ostream & OS) debugDump() argument
[all...]
/llvm-project/llvm/lib/MC/MCParser/
H A DMCAsmLexer.cpp38 void AsmToken::dump(raw_ostream &OS) const { in dump()
41 OS << "error"; in dump()
44 OS << "identifier: " << getString(); in dump()
47 OS << "int: " << getString(); in dump()
50 OS << "real: " << getString(); in dump()
53 OS << "string: " << getString(); in dump()
56 case AsmToken::Amp: OS << "Amp"; break; in dump()
57 case AsmToken::AmpAmp: OS << "AmpAmp"; break; in dump()
58 case AsmToken::At: OS << "At"; break; in dump()
59 case AsmToken::BackSlash: OS << "BackSlash"; break; in dump()
[all …]
/llvm-project/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp30 bool writeWasm(raw_ostream &OS);
33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec,
36 void writeInitExpr(raw_ostream &OS, const WasmYAML::InitExpr &InitExpr);
38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section);
39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section);
41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section);
42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section);
43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
44 void writeSectionContent(raw_ostream &OS, WasmYAM
72 raw_ostream &OS; global() member in __anon8fa81b2e0111::SubSectionWriter
77 SubSectionWriter(raw_ostream & OS) SubSectionWriter() argument
91 writeUint64(raw_ostream & OS,uint64_t Value) writeUint64() argument
98 writeUint32(raw_ostream & OS,uint32_t Value) writeUint32() argument
105 writeUint8(raw_ostream & OS,uint8_t Value) writeUint8() argument
112 writeStringRef(const StringRef & Str,raw_ostream & OS) writeStringRef() argument
118 writeLimits(const WasmYAML::Limits & Lim,raw_ostream & OS) writeLimits() argument
131 writeInitExpr(raw_ostream & OS,const WasmYAML::InitExpr & InitExpr) writeInitExpr() argument
162 writeSectionContent(raw_ostream & OS,WasmYAML::DylinkSection & Section) writeSectionContent() argument
185 writeSectionContent(raw_ostream & OS,WasmYAML::LinkingSection & Section) writeSectionContent() argument
270 writeSectionContent(raw_ostream & OS,WasmYAML::NameSection & Section) writeSectionContent() argument
314 writeSectionContent(raw_ostream & OS,WasmYAML::ProducersSection & Section) writeSectionContent() argument
336 writeSectionContent(raw_ostream & OS,WasmYAML::TargetFeaturesSection & Section) writeSectionContent() argument
346 writeSectionContent(raw_ostream & OS,WasmYAML::CustomSection & Section) writeSectionContent() argument
364 writeSectionContent(raw_ostream & OS,WasmYAML::TypeSection & Section) writeSectionContent() argument
384 writeSectionContent(raw_ostream & OS,WasmYAML::ImportSection & Section) writeSectionContent() argument
421 writeSectionContent(raw_ostream & OS,WasmYAML::FunctionSection & Section) writeSectionContent() argument
428 writeSectionContent(raw_ostream & OS,WasmYAML::ExportSection & Section) writeSectionContent() argument
438 writeSectionContent(raw_ostream & OS,WasmYAML::StartSection & Section) writeSectionContent() argument
443 writeSectionContent(raw_ostream & OS,WasmYAML::TableSection & Section) writeSectionContent() argument
458 writeSectionContent(raw_ostream & OS,WasmYAML::MemorySection & Section) writeSectionContent() argument
465 writeSectionContent(raw_ostream & OS,WasmYAML::TagSection & Section) writeSectionContent() argument
474 writeSectionContent(raw_ostream & OS,WasmYAML::GlobalSection & Section) writeSectionContent() argument
490 writeSectionContent(raw_ostream & OS,WasmYAML::ElemSection & Section) writeSectionContent() argument
518 writeSectionContent(raw_ostream & OS,WasmYAML::CodeSection & Section) writeSectionContent() argument
546 writeSectionContent(raw_ostream & OS,WasmYAML::DataSection & Section) writeSectionContent() argument
560 writeSectionContent(raw_ostream & OS,WasmYAML::DataCountSection & Section) writeSectionContent() argument
565 writeRelocSection(raw_ostream & OS,WasmYAML::Section & Sec,uint32_t SectionIndex) writeRelocSection() argument
595 writeWasm(raw_ostream & OS) writeWasm() argument
[all...]
/llvm-project/llvm/lib/MC/
H A DMCSectionELF.cpp30 static void printName(raw_ostream &OS, StringRef Name) { in printName() argument
34 OS << Name; in printName()
37 OS << '"'; in printName()
40 OS << "\\\""; in printName()
42 OS << *B; in printName()
44 OS << "\\\\"; in printName()
46 OS << B[0] << B[1]; // Quoted character in printName()
50 OS << '"'; in printName()
54 raw_ostream &OS, in printSwitchToSection() argument
57 OS << '\ in printSwitchToSection()
[all...]
/llvm-project/llvm/unittests/DebugInfo/DWARF/
H A DDWARFDebugAbbrevTest.cpp23 void writeValidAbbreviationDeclarations(raw_ostream &OS, uint32_t FirstCode, in writeValidAbbreviationDeclarations() argument
25 encodeULEB128(FirstCode, OS); in writeValidAbbreviationDeclarations()
26 encodeULEB128(DW_TAG_compile_unit, OS); in writeValidAbbreviationDeclarations()
27 OS << static_cast<uint8_t>(DW_CHILDREN_yes); in writeValidAbbreviationDeclarations()
28 encodeULEB128(DW_AT_name, OS); in writeValidAbbreviationDeclarations()
29 encodeULEB128(DW_FORM_strp, OS); in writeValidAbbreviationDeclarations()
30 encodeULEB128(0, OS); in writeValidAbbreviationDeclarations()
31 encodeULEB128(0, OS); in writeValidAbbreviationDeclarations()
36 encodeULEB128(SecondCode, OS); in writeValidAbbreviationDeclarations()
37 encodeULEB128(DW_TAG_subprogram, OS); in writeValidAbbreviationDeclarations()
[all …]
/llvm-project/lld/wasm/
H A DWriterUtils.cpp88 void writeUleb128(raw_ostream &os, uint64_t number, const Twine &msg) { in writeUleb128() argument
89 debugWrite(os.tell(), msg + "[" + utohexstr(number) + "]"); in writeUleb128()
90 encodeULEB128(number, os); in writeUleb128()
93 void writeSleb128(raw_ostream &os, int64_t number, const Twine &msg) { in writeSleb128() argument
94 debugWrite(os.tell(), msg + "[" + utohexstr(number) + "]"); in writeSleb128()
95 encodeSLEB128(number, os); in writeSleb128()
98 void writeBytes(raw_ostream &os, const char *bytes, size_t count, in writeBytes() argument
100 debugWrite(os.tell(), msg + " [data[" + Twine(count) + "]]"); in writeBytes()
101 os.write(bytes, count); in writeBytes()
104 void writeStr(raw_ostream &os, StringRef string, const Twine &msg) { in writeStr() argument
[all …]
/llvm-project/llvm/tools/llvm-exegesis/lib/
H A DAnalysis.cpp27 template <EscapeTag Tag> void writeEscaped(raw_ostream &OS, const StringRef S);
29 template <> void writeEscaped<kEscapeCsv>(raw_ostream &OS, const StringRef S) { in writeEscaped() argument
31 OS << S; in writeEscaped()
34 OS << '"'; in writeEscaped()
37 OS << "\"\""; in writeEscaped()
39 OS << C; in writeEscaped()
41 OS << '"'; in writeEscaped()
45 template <> void writeEscaped<kEscapeHtml>(raw_ostream &OS, const StringRef S) { in writeEscaped() argument
48 OS << "&lt;"; in writeEscaped()
50 OS << "&gt;"; in writeEscaped()
[all …]
/llvm-project/clang/lib/AST/Interp/
H A DDisasm.cpp
/llvm-project/clang/lib/APINotes/
H A DAPINotesTypes.cpp14 LLVM_DUMP_METHOD void CommonEntityInfo::dump(llvm::raw_ostream &OS) const { in dump()
16 OS << "[Unavailable] (" << UnavailableMsg << ")" << ' '; in dump()
18 OS << "[UnavailableInSwift] "; in dump()
20 OS << (SwiftPrivate ? "[SwiftPrivate] " : ""); in dump()
22 OS << "Swift Name: " << SwiftName << ' '; in dump()
23 OS << '\n'; in dump()
26 LLVM_DUMP_METHOD void CommonTypeInfo::dump(llvm::raw_ostream &OS) const { in dump()
27 static_cast<const CommonEntityInfo &>(*this).dump(OS); in dump()
29 OS << "Swift Briged Type: " << *SwiftBridge << ' '; in dump()
31 OS << "NSErro in dump()
35 dump(llvm::raw_ostream & OS) dump() argument
84 dump(llvm::raw_ostream & OS) dump() argument
90 dump(llvm::raw_ostream & OS) dump() argument
[all...]

12345678910>>...158