Searched refs:FillValue (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64ELFStreamer.cpp | 205 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 208 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAsmStreamer.cpp | 238 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, 1329 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 1337 if (MAI->doesZeroDirectiveSupportNonZeroValue() || FillValue == 0) { in emitFill() 1341 if (FillValue != 0) in emitFill() 1342 OS << ',' << (int)FillValue; in emitFill() 1349 OS << MAI->getData8bitsDirective() << (int)FillValue; in emitFill() 1356 MCStreamer::emitFill(NumBytes, FillValue); in emitFill()
|
| H A D | MCObjectStreamer.cpp | 798 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 804 insert(new MCFillFragment(FillValue, 1, NumBytes, Loc)); in emitFill()
|
| H A D | MCStreamer.cpp | 216 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { in emitFill() argument 217 emitFill(*MCConstantExpr::create(NumBytes, getContext()), FillValue); in emitFill()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCObjectStreamer.h | 180 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
|
| H A D | MCStreamer.h | 776 void emitFill(uint64_t NumBytes, uint8_t FillValue); 785 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMELFStreamer.cpp | 367 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, in emitFill() argument 370 MCObjectStreamer::emitFill(NumBytes, FillValue, Loc); in emitFill()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyLibCalls.cpp | 1162 auto *FillValue = dyn_cast<ConstantInt>(Memset->getArgOperand(1)); in foldMallocMemset() local 1163 if (!FillValue || FillValue->getZExtValue() != 0) in foldMallocMemset()
|