Lines Matching defs:LF
769 const MCLEBFragment &LF = cast<MCLEBFragment>(F);
770 OS << LF.getContents();
1020 auto &LF = cast<MCLEBFragment>(Frag);
1021 Fixups = LF.getFixups();
1022 Contents = LF.getContents();
1110 bool MCAssembler::relaxLEB(MCLEBFragment &LF) {
1111 const unsigned OldSize = static_cast<unsigned>(LF.getContents().size());
1114 SmallVectorImpl<char> &Data = LF.getContents();
1115 LF.getFixups().clear();
1120 ? LF.getValue().evaluateKnownAbsolute(Value, *this)
1121 : LF.getValue().evaluateAsAbsolute(Value, *this);
1124 std::tie(Relaxed, UseZeroPad) = getBackend().relaxLEB128(*this, LF, Value);
1126 getContext().reportError(LF.getValue().getLoc(),
1127 Twine(LF.isSigned() ? ".s" : ".u") +
1129 LF.setValue(MCConstantExpr::create(0, Context));
1142 if (LF.isSigned())
1146 return OldSize != LF.getContents().size();