Searched refs:MipsRelocs (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFObjectWriter.cpp299 // Return true if MipsRelocs[Index] is a *LO16 preceded by a matching *HI16.
302 std::vector<MipsRelocationEntry> &MipsRelocs) {
303 return Index < MipsRelocs.size() - 1 &&
304 areMatchingHiAndLo(Asm, MipsRelocs[Index + 1].R, MipsRelocs[Index].R);
307 // Return true if MipsRelocs[Index] is a *LO16 not preceded by a matching *HI16
310 std::vector<MipsRelocationEntry> &MipsRelocs) {
311 return Index < MipsRelocs.size() && !MipsRelocs[Index].HasMatchingHi &&
312 !isPrecededByMatchingHi(Asm, Index, MipsRelocs);
301 isPrecededByMatchingHi(const MCAssembler &Asm, uint32_t Index, std::vector<MipsRelocationEntry> &MipsRelocs) argument
309 isFreeLo(const MCAssembler &Asm, uint32_t Index, std::vector<MipsRelocationEntry> &MipsRelocs) argument
372 std::vector<MipsRelocationEntry> MipsRelocs; local
[all...]

Completed in 19 milliseconds