reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ExecutionEngine/JITLink/MachO_x86_64.cpp
   46     switch (RI.r_type) {
   48       if (!RI.r_pcrel) {
   49         if (RI.r_length == 3)
   50           return RI.r_extern ? Pointer64 : Pointer64Anon;
   51         else if (RI.r_extern && RI.r_length == 2)
   51         else if (RI.r_extern && RI.r_length == 2)
   56       if (RI.r_pcrel && RI.r_length == 2)
   56       if (RI.r_pcrel && RI.r_length == 2)
   57         return RI.r_extern ? PCRel32 : PCRel32Anon;
   60       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   60       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   60       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   64       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   64       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   64       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   68       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   68       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   68       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   75       if (!RI.r_pcrel && RI.r_extern) {
   75       if (!RI.r_pcrel && RI.r_extern) {
   76         if (RI.r_length == 2)
   78         else if (RI.r_length == 3)
   83       if (RI.r_pcrel && RI.r_length == 2)
   83       if (RI.r_pcrel && RI.r_length == 2)
   84         return RI.r_extern ? PCRel32Minus1 : PCRel32Minus1Anon;
   87       if (RI.r_pcrel && RI.r_length == 2)
   87       if (RI.r_pcrel && RI.r_length == 2)
   88         return RI.r_extern ? PCRel32Minus2 : PCRel32Minus2Anon;
   91       if (RI.r_pcrel && RI.r_length == 2)
   91       if (RI.r_pcrel && RI.r_length == 2)
   92         return RI.r_extern ? PCRel32Minus4 : PCRel32Minus4Anon;
   95       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   95       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
   95       if (RI.r_pcrel && RI.r_extern && RI.r_length == 2)
  102         formatv("{0:x8}", RI.r_address) +
  103         ", symbolnum=" + formatv("{0:x6}", RI.r_symbolnum) +
  104         ", kind=" + formatv("{0:x1}", RI.r_type) +
  105         ", pc_rel=" + (RI.r_pcrel ? "true" : "false") +
  106         ", extern=" + (RI.r_extern ? "true" : "false") +
  107         ", length=" + formatv("{0:d}", RI.r_length));