Home
last modified time | relevance | path

Searched refs:emitFill (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCObjectStreamer.h197 using MCStreamer::emitFill;
198 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
200 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
H A DMCStreamer.h815 void emitFill(uint64_t NumBytes, uint8_t FillValue);
824 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
835 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYELFStreamer.h122 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function
125 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp245 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in __anon29add95d0111::AArch64ELFStreamer
248 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCStreamer.cpp221 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() function in MCStreamer
222 emitFill(*MCConstantExpr::create(NumBytes, getContext()), FillValue); in emitFill()
229 void MCStreamer::emitZeros(uint64_t NumBytes) { emitFill(NumBytes, 0); } in emitZeros()
1219 void MCStreamer::emitFill(const MCExpr &NumBytes, uint64_t Value, SMLoc Loc) {} in emitFill() function in MCStreamer
1220 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() function in MCStreamer
H A DMCAsmStreamer.cpp246 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
249 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
1374 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in MCAsmStreamer
1401 MCStreamer::emitFill(NumBytes, FillValue); in emitFill()
1404 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() function in MCAsmStreamer
H A DMCObjectStreamer.cpp848 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in MCObjectStreamer
857 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() function in MCObjectStreamer
H A DMCDwarf.cpp1113 MCOS->emitFill(AddrSize, 0xFF); in emitGenDwarfRanges()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp476 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in __anon351017eb0111::ARMELFStreamer
479 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
/openbsd-src/gnu/llvm/llvm/lib/DWARFLinker/
H A DDWARFStreamer.cpp351 Asm->OutStreamer->emitFill(Padding, 0x0); in emitDwarfDebugArangesTable()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DAsmParser.cpp3330 getStreamer().emitFill(*NumBytes, Val, NumBytesLoc); in parseDirectiveZero()
3373 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill()
4865 getStreamer().emitFill(*NumBytes, FillExpr, NumBytesLoc); in parseDirectiveSpace()
4949 getStreamer().emitFill(Size, 0); in parseDirectiveDS()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3114 return AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantDataSequential()
3158 AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantArray()
H A DDwarfDebug.cpp3076 Asm->OutStreamer->emitFill(Padding, 0xff); in emitDebugARanges()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp2723 OutStreamer->emitFill(*FillE, 0xCC); in emitInstruction()