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