/external/llvm/include/llvm/MC/ |
D | MCObjectStreamer.h | 143 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,
|
D | MCStreamer.h | 588 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/ |
D | MCObjectStreamer.h | 166 using MCStreamer::emitFill; 167 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, 169 void emitFill(const MCExpr &NumValues, int64_t Size, int64_t Expr,
|
D | MCStreamer.h | 681 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/ |
D | MCObjectStreamer.cpp | 493 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()
|
D | MCAsmStreamer.cpp | 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, 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 …]
|
D | MCStreamer.cpp | 140 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
|
D | MCDwarf.cpp | 821 MCOS->emitFill(AddrSize, 0xFF); in EmitGenDwarfRanges()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCStreamer.cpp | 184 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
|
D | MCAsmStreamer.cpp | 209 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
|
D | MCObjectStreamer.cpp | 620 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
|
D | MCDwarf.cpp | 1105 MCOS->emitFill(AddrSize, 0xFF); in EmitGenDwarfRanges()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DwarfStreamer.cpp | 350 Asm->OutStreamer->emitFill(Padding, 0x0); in emitUnitRangesEntries()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 3118 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/ |
D | AsmPrinter.cpp | 1957 return AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantDataSequential() 1996 AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantArray()
|
D | DwarfDebug.cpp | 1665 Asm->OutStreamer->emitFill(Padding, 0xff); in emitDebugARanges()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | AsmPrinter.cpp | 2257 return AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantDataSequential() 2297 AP.OutStreamer->emitFill(Bytes, Value); in emitGlobalConstantArray()
|
D | DwarfDebug.cpp | 1983 Asm->OutStreamer->emitFill(Padding, 0xff); in emitDebugARanges()
|
/external/llvm/lib/MC/MCParser/ |
D | AsmParser.cpp | 2821 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/ |
D | DwarfLinker.cpp | 795 Asm->OutStreamer->emitFill(Padding, 0x0); in emitUnitRangesEntries()
|