@@ -249,9 +249,9 @@ class MCStreamer {
249249 return CurrentWinFrameInfo;
250250 }
251251
252- virtual void EmitWindowsUnwindTables (WinEH::FrameInfo *Frame);
252+ virtual void emitWindowsUnwindTables (WinEH::FrameInfo *Frame);
253253
254- virtual void EmitWindowsUnwindTables ();
254+ virtual void emitWindowsUnwindTables ();
255255
256256 virtual void emitRawTextImpl (StringRef String);
257257
@@ -557,35 +557,35 @@ class MCStreamer {
557557 // / Emit the storage class of the symbol.
558558 // /
559559 // / \param StorageClass - The storage class the symbol should have.
560- virtual void EmitCOFFSymbolStorageClass (int StorageClass);
560+ virtual void emitCOFFSymbolStorageClass (int StorageClass);
561561
562562 // / Emit the type of the symbol.
563563 // /
564564 // / \param Type - A COFF type identifier (see COFF::SymbolType in X86COFF.h)
565- virtual void EmitCOFFSymbolType (int Type);
565+ virtual void emitCOFFSymbolType (int Type);
566566
567567 // / Marks the end of the symbol definition.
568568 virtual void EndCOFFSymbolDef ();
569569
570- virtual void EmitCOFFSafeSEH (MCSymbol const *Symbol);
570+ virtual void emitCOFFSafeSEH (MCSymbol const *Symbol);
571571
572572 // / Emits the symbol table index of a Symbol into the current section.
573- virtual void EmitCOFFSymbolIndex (MCSymbol const *Symbol);
573+ virtual void emitCOFFSymbolIndex (MCSymbol const *Symbol);
574574
575575 // / Emits a COFF section index.
576576 // /
577577 // / \param Symbol - Symbol the section number relocation should point to.
578- virtual void EmitCOFFSectionIndex (MCSymbol const *Symbol);
578+ virtual void emitCOFFSectionIndex (MCSymbol const *Symbol);
579579
580580 // / Emits a COFF section relative relocation.
581581 // /
582582 // / \param Symbol - Symbol the section relative relocation should point to.
583- virtual void EmitCOFFSecRel32 (MCSymbol const *Symbol, uint64_t Offset);
583+ virtual void emitCOFFSecRel32 (MCSymbol const *Symbol, uint64_t Offset);
584584
585585 // / Emits a COFF image relative relocation.
586586 // /
587587 // / \param Symbol - Symbol the image relative relocation should point to.
588- virtual void EmitCOFFImgRel32 (MCSymbol const *Symbol, int64_t Offset);
588+ virtual void emitCOFFImgRel32 (MCSymbol const *Symbol, int64_t Offset);
589589
590590 // / Emits an lcomm directive with XCOFF csect information.
591591 // /
@@ -926,16 +926,16 @@ class MCStreamer {
926926 // / Associate a filename with a specified logical file number, and also
927927 // / specify that file's checksum information. This implements the '.cv_file 4
928928 // / "foo.c"' assembler directive. Returns true on success.
929- virtual bool EmitCVFileDirective (unsigned FileNo, StringRef Filename,
929+ virtual bool emitCVFileDirective (unsigned FileNo, StringRef Filename,
930930 ArrayRef<uint8_t > Checksum,
931931 unsigned ChecksumKind);
932932
933933 // / Introduces a function id for use with .cv_loc.
934- virtual bool EmitCVFuncIdDirective (unsigned FunctionId);
934+ virtual bool emitCVFuncIdDirective (unsigned FunctionId);
935935
936936 // / Introduces an inline call site id for use with .cv_loc. Includes
937937 // / extra information for inline line table generation.
938- virtual bool EmitCVInlineSiteIdDirective (unsigned FunctionId, unsigned IAFunc,
938+ virtual bool emitCVInlineSiteIdDirective (unsigned FunctionId, unsigned IAFunc,
939939 unsigned IAFile, unsigned IALine,
940940 unsigned IACol, SMLoc Loc);
941941
@@ -991,7 +991,7 @@ class MCStreamer {
991991 virtual void emitCVFileChecksumOffsetDirective (unsigned FileNo) {}
992992
993993 // / This implements the CodeView '.cv_fpo_data' assembler directive.
994- virtual void EmitCVFPOData (const MCSymbol *ProcSym, SMLoc Loc = {}) {}
994+ virtual void emitCVFPOData (const MCSymbol *ProcSym, SMLoc Loc = {}) {}
995995
996996 // / Emit the absolute difference between two symbols.
997997 // /
@@ -1030,28 +1030,28 @@ class MCStreamer {
10301030 virtual void emitCFIWindowSave ();
10311031 virtual void emitCFINegateRAState ();
10321032
1033- virtual void EmitWinCFIStartProc (const MCSymbol *Symbol, SMLoc Loc = SMLoc());
1034- virtual void EmitWinCFIEndProc (SMLoc Loc = SMLoc());
1033+ virtual void emitWinCFIStartProc (const MCSymbol *Symbol, SMLoc Loc = SMLoc());
1034+ virtual void emitWinCFIEndProc (SMLoc Loc = SMLoc());
10351035 // / This is used on platforms, such as Windows on ARM64, that require function
10361036 // / or funclet sizes to be emitted in .xdata before the End marker is emitted
10371037 // / for the frame. We cannot use the End marker, as it is not set at the
10381038 // / point of emitting .xdata, in order to indicate that the frame is active.
1039- virtual void EmitWinCFIFuncletOrFuncEnd (SMLoc Loc = SMLoc());
1040- virtual void EmitWinCFIStartChained (SMLoc Loc = SMLoc());
1041- virtual void EmitWinCFIEndChained (SMLoc Loc = SMLoc());
1042- virtual void EmitWinCFIPushReg (MCRegister Register, SMLoc Loc = SMLoc());
1043- virtual void EmitWinCFISetFrame (MCRegister Register, unsigned Offset,
1039+ virtual void emitWinCFIFuncletOrFuncEnd (SMLoc Loc = SMLoc());
1040+ virtual void emitWinCFIStartChained (SMLoc Loc = SMLoc());
1041+ virtual void emitWinCFIEndChained (SMLoc Loc = SMLoc());
1042+ virtual void emitWinCFIPushReg (MCRegister Register, SMLoc Loc = SMLoc());
1043+ virtual void emitWinCFISetFrame (MCRegister Register, unsigned Offset,
10441044 SMLoc Loc = SMLoc());
1045- virtual void EmitWinCFIAllocStack (unsigned Size, SMLoc Loc = SMLoc());
1046- virtual void EmitWinCFISaveReg (MCRegister Register, unsigned Offset,
1045+ virtual void emitWinCFIAllocStack (unsigned Size, SMLoc Loc = SMLoc());
1046+ virtual void emitWinCFISaveReg (MCRegister Register, unsigned Offset,
10471047 SMLoc Loc = SMLoc());
1048- virtual void EmitWinCFISaveXMM (MCRegister Register, unsigned Offset,
1048+ virtual void emitWinCFISaveXMM (MCRegister Register, unsigned Offset,
10491049 SMLoc Loc = SMLoc());
1050- virtual void EmitWinCFIPushFrame (bool Code, SMLoc Loc = SMLoc());
1051- virtual void EmitWinCFIEndProlog (SMLoc Loc = SMLoc());
1052- virtual void EmitWinEHHandler (const MCSymbol *Sym, bool Unwind, bool Except,
1050+ virtual void emitWinCFIPushFrame (bool Code, SMLoc Loc = SMLoc());
1051+ virtual void emitWinCFIEndProlog (SMLoc Loc = SMLoc());
1052+ virtual void emitWinEHHandler (const MCSymbol *Sym, bool Unwind, bool Except,
10531053 SMLoc Loc = SMLoc());
1054- virtual void EmitWinEHHandlerData (SMLoc Loc = SMLoc());
1054+ virtual void emitWinEHHandlerData (SMLoc Loc = SMLoc());
10551055
10561056 virtual void emitCGProfileEntry (const MCSymbolRefExpr *From,
10571057 const MCSymbolRefExpr *To, uint64_t Count);
0 commit comments