Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCObjectStreamer.h143 using MCStreamer::emitFill;
144 void emitFill(uint64_t NumBytes, uint8_t FillValue) override;
145 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
147 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
DMCStreamer.h588 virtual void emitFill(uint64_t NumBytes, uint8_t FillValue);
597 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
608 virtual void emitFill(uint64_t NumValues, int64_t Size, int64_t Expr);
609 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCObjectStreamer.h166 using MCStreamer::emitFill;
167 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
169 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
DMCStreamer.h681 void emitFill(uint64_t NumBytes, uint8_t FillValue);
690 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
701 virtual void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
/external/llvm/lib/MC/
DMCObjectStreamer.cpp493 void MCObjectStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() function in MCObjectStreamer
500 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in MCObjectStreamer
516 emitFill(IntNumBytes, FillValue); in emitFill()
519 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() function in MCObjectStreamer
534 MCStreamer::emitFill(IntNumValues, Size, Expr); in emitFill()
DMCAsmStreamer.cpp188 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,
874 void MCAsmStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() function in MCAsmStreamer
878 emitFill(*E, FillValue); in emitFill()
881 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in MCAsmStreamer
893 MCStreamer::emitFill(NumBytes, FillValue); in emitFill()
896 void MCAsmStreamer::emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) { in emitFill() function in MCAsmStreamer
901 emitFill(*E, Size, Expr); in emitFill()
[all …]
DMCStreamer.cpp140 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() function in MCStreamer
145 void MCStreamer::emitFill(uint64_t NumValues, int64_t Size, int64_t Expr) { in emitFill() function in MCStreamer
157 emitFill(NumBytes, 0); in EmitZeros()
773 void MCStreamer::emitFill(const MCExpr &NumBytes, uint64_t Value, SMLoc Loc) {} in emitFill() function in MCStreamer
774 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() function in MCStreamer
DMCDwarf.cpp821 MCOS->emitFill(AddrSize, 0xFF); in EmitGenDwarfRanges()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCStreamer.cpp184 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() function in MCStreamer
185 emitFill(*MCConstantExpr::create(NumBytes, getContext()), FillValue); in emitFill()
190 emitFill(NumBytes, 0); in EmitZeros()
978 void MCStreamer::emitFill(const MCExpr &NumBytes, uint64_t Value, SMLoc Loc) {} in emitFill() function in MCStreamer
979 void MCStreamer::emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr, in emitFill() function in MCStreamer
DMCAsmStreamer.cpp209 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
212 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
1022 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in MCAsmStreamer
1038 MCStreamer::emitFill(NumBytes, FillValue); in emitFill()
1041 void MCAsmStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() function in MCAsmStreamer
DMCObjectStreamer.cpp620 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() function in MCObjectStreamer
629 void MCObjectStreamer::emitFill(const MCExpr &NumValues, int64_t Size, in emitFill() function in MCObjectStreamer
DMCDwarf.cpp1105 MCOS->emitFill(AddrSize, 0xFF); in EmitGenDwarfRanges()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDwarfStreamer.cpp350 Asm->OutStreamer->emitFill(Padding, 0x0); in emitUnitRangesEntries()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
DAsmParser.cpp3118 getStreamer().emitFill(*NumBytes, Val, NumBytesLoc); in parseDirectiveZero()
3162 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill()
4549 getStreamer().emitFill(*NumBytes, FillExpr, NumBytesLoc); in parseDirectiveSpace()
4646 getStreamer().emitFill(Size, 0); in parseDirectiveDS()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1957 return AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantDataSequential()
1996 AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantArray()
DDwarfDebug.cpp1665 Asm->OutStreamer->emitFill(Padding, 0xff); in emitDebugARanges()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2257 return AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantDataSequential()
2297 AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantArray()
DDwarfDebug.cpp1983 Asm->OutStreamer->emitFill(Padding, 0xff); in emitDebugARanges()
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp2821 getStreamer().emitFill(*NumBytes, Val, NumBytesLoc); in parseDirectiveZero()
2877 getStreamer().emitFill(*NumValues, FillSize, FillExpr, NumValuesLoc); in parseDirectiveFill()
4136 getStreamer().emitFill(*NumBytes, FillExpr, NumBytesLoc); in parseDirectiveSpace()
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp795 Asm->OutStreamer->emitFill(Padding, 0x0); in emitUnitRangesEntries()