Home | History | Annotate | Download | only in llvm-objdump

Lines Matching defs:MR

2963 inline void swapStruct(struct message_ref64 &mr) {
2964 sys::swapByteOrder(mr.imp);
2965 sys::swapByteOrder(mr.sel);
2968 inline void swapStruct(struct message_ref32 &mr) {
2969 sys::swapByteOrder(mr.imp);
2970 sys::swapByteOrder(mr.sel);
4901 struct message_ref64 mr;
4920 memset(&mr, '\0', sizeof(struct message_ref64));
4922 memcpy(&mr, r, left);
4925 memcpy(&mr, r, sizeof(struct message_ref64));
4927 swapStruct(mr);
4931 n_value, mr.imp);
4934 if (mr.imp != 0)
4935 outs() << "+ " << format("0x%" PRIx64, mr.imp) << " ";
4937 outs() << format("0x%" PRIx64, mr.imp) << " ";
4944 info, n_value, mr.sel);
4950 if (mr.sel != 0)
4951 outs() << " + " << format("0x%" PRIx64, mr.sel);
4953 outs() << format("0x%" PRIx64, mr.sel);
4954 name = get_pointer_64(mr.sel + n_value, xoffset, left, xS, info);
4965 struct message_ref32 mr;
4983 memset(&mr, '\0', sizeof(struct message_ref32));
4985 memcpy(&mr, r, left);
4988 memcpy(&mr, r, sizeof(struct message_ref32));
4990 swapStruct(mr);
4992 outs() << " imp " << format("0x%" PRIx32, mr.imp);
4994 mr.imp);
4999 outs() << " sel " << format("0x%" PRIx32, mr.sel);
5000 name = get_pointer_32(mr.sel, xoffset, left, xS, info);
5185 SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5186 if (MR == SectionRef())
5187 MR = get_section(O, "__DATA", "__objc_msgrefs");
5188 info.S = MR;
5189 print_message_refs64(MR, &info);
5277 const SectionRef MR = get_section(O, "__OBJC2", "__message_refs");
5278 if (MR != SectionRef()) {
5279 info.S = MR;
5280 print_message_refs32(MR, &info);
5282 const SectionRef MR = get_section(O, "__DATA", "__objc_msgrefs");
5283 info.S = MR;
5284 print_message_refs32(MR, &info);