@@ -249,9 +249,9 @@ class MCStreamer {
249
249
return CurrentWinFrameInfo;
250
250
}
251
251
252
- virtual void EmitWindowsUnwindTables (WinEH::FrameInfo *Frame);
252
+ virtual void emitWindowsUnwindTables (WinEH::FrameInfo *Frame);
253
253
254
- virtual void EmitWindowsUnwindTables ();
254
+ virtual void emitWindowsUnwindTables ();
255
255
256
256
virtual void emitRawTextImpl (StringRef String);
257
257
@@ -557,35 +557,35 @@ class MCStreamer {
557
557
// / Emit the storage class of the symbol.
558
558
// /
559
559
// / \param StorageClass - The storage class the symbol should have.
560
- virtual void EmitCOFFSymbolStorageClass (int StorageClass);
560
+ virtual void emitCOFFSymbolStorageClass (int StorageClass);
561
561
562
562
// / Emit the type of the symbol.
563
563
// /
564
564
// / \param Type - A COFF type identifier (see COFF::SymbolType in X86COFF.h)
565
- virtual void EmitCOFFSymbolType (int Type);
565
+ virtual void emitCOFFSymbolType (int Type);
566
566
567
567
// / Marks the end of the symbol definition.
568
568
virtual void EndCOFFSymbolDef ();
569
569
570
- virtual void EmitCOFFSafeSEH (MCSymbol const *Symbol);
570
+ virtual void emitCOFFSafeSEH (MCSymbol const *Symbol);
571
571
572
572
// / 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);
574
574
575
575
// / Emits a COFF section index.
576
576
// /
577
577
// / \param Symbol - Symbol the section number relocation should point to.
578
- virtual void EmitCOFFSectionIndex (MCSymbol const *Symbol);
578
+ virtual void emitCOFFSectionIndex (MCSymbol const *Symbol);
579
579
580
580
// / Emits a COFF section relative relocation.
581
581
// /
582
582
// / \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);
584
584
585
585
// / Emits a COFF image relative relocation.
586
586
// /
587
587
// / \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);
589
589
590
590
// / Emits an lcomm directive with XCOFF csect information.
591
591
// /
@@ -926,16 +926,16 @@ class MCStreamer {
926
926
// / Associate a filename with a specified logical file number, and also
927
927
// / specify that file's checksum information. This implements the '.cv_file 4
928
928
// / "foo.c"' assembler directive. Returns true on success.
929
- virtual bool EmitCVFileDirective (unsigned FileNo, StringRef Filename,
929
+ virtual bool emitCVFileDirective (unsigned FileNo, StringRef Filename,
930
930
ArrayRef<uint8_t > Checksum,
931
931
unsigned ChecksumKind);
932
932
933
933
// / Introduces a function id for use with .cv_loc.
934
- virtual bool EmitCVFuncIdDirective (unsigned FunctionId);
934
+ virtual bool emitCVFuncIdDirective (unsigned FunctionId);
935
935
936
936
// / Introduces an inline call site id for use with .cv_loc. Includes
937
937
// / extra information for inline line table generation.
938
- virtual bool EmitCVInlineSiteIdDirective (unsigned FunctionId, unsigned IAFunc,
938
+ virtual bool emitCVInlineSiteIdDirective (unsigned FunctionId, unsigned IAFunc,
939
939
unsigned IAFile, unsigned IALine,
940
940
unsigned IACol, SMLoc Loc);
941
941
@@ -991,7 +991,7 @@ class MCStreamer {
991
991
virtual void emitCVFileChecksumOffsetDirective (unsigned FileNo) {}
992
992
993
993
// / 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 = {}) {}
995
995
996
996
// / Emit the absolute difference between two symbols.
997
997
// /
@@ -1030,28 +1030,28 @@ class MCStreamer {
1030
1030
virtual void emitCFIWindowSave ();
1031
1031
virtual void emitCFINegateRAState ();
1032
1032
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());
1035
1035
// / This is used on platforms, such as Windows on ARM64, that require function
1036
1036
// / or funclet sizes to be emitted in .xdata before the End marker is emitted
1037
1037
// / for the frame. We cannot use the End marker, as it is not set at the
1038
1038
// / 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,
1044
1044
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,
1047
1047
SMLoc Loc = SMLoc());
1048
- virtual void EmitWinCFISaveXMM (MCRegister Register, unsigned Offset,
1048
+ virtual void emitWinCFISaveXMM (MCRegister Register, unsigned Offset,
1049
1049
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,
1053
1053
SMLoc Loc = SMLoc());
1054
- virtual void EmitWinEHHandlerData (SMLoc Loc = SMLoc());
1054
+ virtual void emitWinEHHandlerData (SMLoc Loc = SMLoc());
1055
1055
1056
1056
virtual void emitCGProfileEntry (const MCSymbolRefExpr *From,
1057
1057
const MCSymbolRefExpr *To, uint64_t Count);
0 commit comments