Lines Matching defs:RE

297                                       const MachO::any_relocation_info &RE,
299 bool IsScattered = O->isRelocationScattered(RE);
306 uint32_t Val = O->getPlainRelocationSymbolNum(RE);
348 bool isExtern = O->getPlainRelocationExternal(RE);
349 uint64_t Val = O->getPlainRelocationSymbolNum(RE);
366 getPlainRelocationAddress(const MachO::any_relocation_info &RE) {
367 return RE.r_word0;
371 getScatteredRelocationAddress(const MachO::any_relocation_info &RE) {
372 return RE.r_word0 & 0xffffff;
376 const MachO::any_relocation_info &RE) {
378 return (RE.r_word1 >> 24) & 1;
379 return (RE.r_word1 >> 7) & 1;
384 const MachO::any_relocation_info &RE) {
385 return (RE.r_word0 >> 30) & 1;
389 const MachO::any_relocation_info &RE) {
391 return (RE.r_word1 >> 25) & 3;
392 return (RE.r_word1 >> 5) & 3;
396 getScatteredRelocationLength(const MachO::any_relocation_info &RE) {
397 return (RE.r_word0 >> 28) & 3;
401 const MachO::any_relocation_info &RE) {
403 return RE.r_word1 >> 28;
404 return RE.r_word1 & 0xf;
408 getScatteredRelocationType(const MachO::any_relocation_info &RE) {
409 return (RE.r_word0 >> 24) & 0xf;
853 MachO::any_relocation_info RE = getRelocation(Rel);
854 Res = getAnyRelocationAddress(RE);
860 MachO::any_relocation_info RE = getRelocation(Rel);
861 uint32_t SymbolIdx = getPlainRelocationSymbolNum(RE);
862 bool isExtern = getPlainRelocationExternal(RE);
878 MachO::any_relocation_info RE = getRelocation(Rel);
879 Res = getAnyRelocationType(RE);
979 MachO::any_relocation_info RE = getRelocation(Rel);
985 unsigned Type = this->getAnyRelocationType(RE);
986 bool IsPCRel = this->getAnyRelocationPCRel(RE);
993 bool isPCRel = getAnyRelocationPCRel(RE);
998 printRelocationTargetName(this, RE, fmt);
1020 printRelocationTargetName(this, RE, fmt);
1024 printRelocationTargetName(this, RE, fmt);
1029 printRelocationTargetName(this, RE, fmt);
1033 printRelocationTargetName(this, RE, fmt);
1037 printRelocationTargetName(this, RE, fmt);
1041 printRelocationTargetName(this, RE, fmt);
1064 printRelocationTargetName(this, RE, fmt);
1085 printRelocationTargetName(this, RE, fmt);
1091 printRelocationTargetName(this, RE, fmt);
1097 printRelocationTargetName(this, RE, fmt);
1105 bool isUpper = getAnyRelocationLength(RE) >> 1;
1111 printRelocationTargetName(this, RE, fmt);
1140 printRelocationTargetName(this, RE, fmt);
1145 printRelocationTargetName(this, RE, fmt);
1362 MachOObjectFile::isRelocationScattered(const MachO::any_relocation_info &RE)
1366 return getPlainRelocationAddress(RE) & MachO::R_SCATTERED;
1370 const MachO::any_relocation_info &RE) const {
1372 return RE.r_word1 & 0xffffff;
1373 return RE.r_word1 >> 8;
1377 const MachO::any_relocation_info &RE) const {
1379 return (RE.r_word1 >> 27) & 1;
1380 return (RE.r_word1 >> 4) & 1;
1384 const MachO::any_relocation_info &RE) const {
1385 return RE.r_word0 >> 31;
1389 const MachO::any_relocation_info &RE) const {
1390 return RE.r_word1;
1394 const MachO::any_relocation_info &RE) const {
1395 if (isRelocationScattered(RE))
1396 return getScatteredRelocationAddress(RE);
1397 return getPlainRelocationAddress(RE);
1401 const MachO::any_relocation_info &RE) const {
1402 if (isRelocationScattered(RE))
1403 return getScatteredRelocationPCRel(this, RE);
1404 return getPlainRelocationPCRel(this, RE);
1408 const MachO::any_relocation_info &RE) const {
1409 if (isRelocationScattered(RE))
1410 return getScatteredRelocationLength(RE);
1411 return getPlainRelocationLength(this, RE);
1416 const MachO::any_relocation_info &RE) const {
1417 if (isRelocationScattered(RE))
1418 return getScatteredRelocationType(RE);
1419 return getPlainRelocationType(this, RE);
1424 const MachO::any_relocation_info &RE) const {
1425 if (isRelocationScattered(RE) || getPlainRelocationExternal(RE))
1427 unsigned SecNum = getPlainRelocationSymbolNum(RE) - 1;