Searched refs:FillValue (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64ELFStreamer.cpp | 145 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 148 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCObjectStreamer.h | 176 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
|
| H A D | MCStreamer.h | 693 void emitFill(uint64_t NumBytes, uint8_t FillValue); 702 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCAsmStreamer.cpp | 209 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, 1049 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 1059 if (FillValue != 0) in emitFill() 1060 OS << ',' << (int)FillValue; in emitFill() 1065 MCStreamer::emitFill(NumBytes, FillValue); in emitFill()
|
| H A D | MCObjectStreamer.cpp | 667 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 673 insert(new MCFillFragment(FillValue, 1, NumBytes, Loc)); in emitFill()
|
| H A D | MCStreamer.cpp | 196 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() argument 197 emitFill(*MCConstantExpr::create(NumBytes, getContext()), FillValue); in emitFill()
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMELFStreamer.cpp | 468 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 471 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyLibCalls.cpp | 931 auto *FillValue = dyn_cast<ConstantInt>(Memset->getArgOperand(1)); in foldMallocMemset() local 932 if (!FillValue || FillValue->getZExtValue() != 0) in foldMallocMemset()
|