Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:Asm

45     virtual const MCSymbol *ExplicitRelSym(const MCAssembler &Asm,
50 virtual void sortRelocs(const MCAssembler &Asm,
63 const MCSymbol *MipsELFObjectWriter::ExplicitRelSym(const MCAssembler &Asm,
191 static bool NeedsMatchingLo(const MCAssembler &Asm, const RelEntry &R) {
195 MCSymbolData &SD = Asm.getSymbolData(R.Sym->AliasedSymbol());
201 static bool HasMatchingLo(const MCAssembler &Asm, RelLsIter I, RelLsIter Last) {
219 void MipsELFObjectWriter::sortRelocs(const MCAssembler &Asm,
223 MCELFObjectTargetWriter::sortRelocs(Asm, Relocs);
240 if (NeedsMatchingLo(Asm, *R) && !HasMatchingLo(Asm, R, --RelocLs.end()))
256 MatchedLo = NeedsMatchingLo(Asm, *R) &&
257 HasMatchingLo(Asm, R, --RelocLs.end());