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

Lines Matching defs:PL

2854 inline void swapStruct(struct protocol_list64_t &pl) {
2855 sys::swapByteOrder(pl.count);
2858 inline void swapStruct(struct protocol_list32_t &pl) {
2859 sys::swapByteOrder(pl.count);
2910 inline void swapStruct(struct objc_property_list64 &pl) {
2911 sys::swapByteOrder(pl.entsize);
2912 sys::swapByteOrder(pl.count);
2915 inline void swapStruct(struct objc_property_list32 &pl) {
2916 sys::swapByteOrder(pl.entsize);
2917 sys::swapByteOrder(pl.count);
3526 struct protocol_list64_t pl;
3537 memset(&pl, '\0', sizeof(struct protocol_list64_t));
3539 memcpy(&pl, r, left);
3542 memcpy(&pl, r, sizeof(struct protocol_list64_t));
3544 swapStruct(pl);
3545 outs() << " count " << pl.count << "\n";
3549 for (i = 0; i < pl.count; i++) {
3655 struct protocol_list32_t pl;
3666 memset(&pl, '\0', sizeof(struct protocol_list32_t));
3668 memcpy(&pl, r, left);
3671 memcpy(&pl, r, sizeof(struct protocol_list32_t));
3673 swapStruct(pl);
3674 outs() << " count " << pl.count << "\n";
3678 for (i = 0; i < pl.count; i++) {
5179 SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5180 if (PL == SectionRef())
5181 PL = get_section(O, "__DATA", "__objc_protolist");
5182 info.S = PL;
5183 walk_pointer_list_64("protocol", PL, O, &info, nullptr);
5267 const SectionRef PL = get_section(O, "__OBJC2", "__protocol_list");
5268 if (PL != SectionRef()) {
5269 info.S = PL;
5270 walk_pointer_list_32("protocol", PL, O, &info, nullptr);
5272 const SectionRef PL = get_section(O, "__DATA", "__objc_protolist");
5273 info.S = PL;
5274 walk_pointer_list_32("protocol", PL, O, &info, nullptr);