Home
last modified time | relevance | path

Searched refs:FillValue (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp145 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 DMCObjectStreamer.h176 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
H A DMCStreamer.h693 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 DMCAsmStreamer.cpp209 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 DMCObjectStreamer.cpp667 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument
673 insert(new MCFillFragment(FillValue, 1, NumBytes, Loc)); in emitFill()
H A DMCStreamer.cpp196 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 DARMELFStreamer.cpp468 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 DSimplifyLibCalls.cpp931 auto *FillValue = dyn_cast<ConstantInt>(Memset->getArgOperand(1)); in foldMallocMemset() local
932 if (!FillValue || FillValue->getZExtValue() != 0) in foldMallocMemset()