Home | History | Annotate | Download | only in MC

Lines Matching refs:emitFill

188   void emitFill(uint64_t NumBytes, uint8_t FillValue) override;
190 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
193 void emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) override;
195 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
872 /// emitFill - Emit NumBytes bytes worth of the value specified by
874 void MCAsmStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) {
878 emitFill(*E, FillValue);
881 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue,
893 MCStreamer::emitFill(NumBytes, FillValue);
896 void MCAsmStreamer::emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) {
901 emitFill(*E, Size, Expr);
904 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size,