Home
last modified time | relevance | path

Searched refs:r_value (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DMachORelocation.h32 int32_t r_value; // the value the item to be relocated is referring variable
43 uint32_t getAddress() const { return r_scattered ? r_value : r_address; } in getAddress()
50 r_extern(ext), r_type(type), r_scattered(scattered), r_value(value) {} in r_address()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp832 const uint32_t r_value = (r_scattered ? in PrintRelocationEntries() local
894 (unsigned int)r_value); in PrintRelocationEntries()
2648 uint32_t r_value, pair_r_value, r_type; in SymbolizerGetOpInfo() local
2657 r_value = info->O->getScatteredRelocationValue(RE); in SymbolizerGetOpInfo()
2692 uint32_t offset = value - (r_value - pair_r_value); in SymbolizerGetOpInfo()
2697 op_info->AddSymbol.Value = r_value; in SymbolizerGetOpInfo()
2840 r_value = info->O->getScatteredRelocationValue(RE); in SymbolizerGetOpInfo()
2901 offset = value - r_value; in SymbolizerGetOpInfo()
2902 value = r_value; in SymbolizerGetOpInfo()
2912 int32_t offset = value - (r_value - pair_r_value); in SymbolizerGetOpInfo()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMachO.h973 int32_t r_value; member