/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCTargetOptionsCommandFlags.cpp | 50 MCOPT(bool, Crel) in MCOPT_EXP() 133 static cl::opt<bool> Crel("crel", in MCOPT_EXP() local 135 MCBINDOPT(Crel); in MCOPT_EXP() 176 Options.Crel = getCrel(); in InitMCTargetOptionsFromFlags()
|
H A D | ELFObjectWriter.cpp | 687 if (TO && TO->Crel) { in createRelocationSection() 850 } else if (TO && TO->Crel) { in writeRelocations() 1434 (TO && TO->Crel); in usesRela()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | ELF.cpp | 424 [&](Elf_Crel Crel) { in decodeCrel() argument 426 Relas[I].r_offset = Crel.r_offset; in decodeCrel() 427 Relas[I].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel() 428 Relas[I++].r_addend = Crel.r_addend; in decodeCrel() 430 Rels[I].r_offset = Crel.r_offset; in decodeCrel() 431 Rels[I++].setSymbolAndType(Crel.r_symidx, Crel.r_type, false); in decodeCrel()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ELFObjectFile.h | 456 Elf_Crel getCrel(DataRefImpl Crel) const; 1038 auto &Crel = Crels[RelData.d.a]; in section_rel_begin() local 1039 if (Crel.empty()) { in section_rel_begin() 1043 Content, [&](uint64_t Count, bool) { Crel.resize(Count); }, in section_rel_begin() 1044 [&](Elf_Crel Crel) { Crels[RelData.d.a][I++] = Crel; }); in section_rel_begin() 1046 Crel.assign(1, Elf_Crel{0, 0, 0, 0}); in section_rel_begin() 1187 ELFObjectFile<ELFT>::getCrel(DataRefImpl Crel) const { in getCrel() argument 1188 assert(getRelSection(Crel)->sh_type == ELF::SHT_CREL); in getCrel() 1189 assert(Crel.d.a < Crels.size()); in getCrel() 1190 return Crels[Crel.d.a][Crel.d.b]; in getCrel()
|
H A D | ELFTypes.h | 66 using Crel = Elf_Crel_Impl<Is64>; member 122 using Elf_Crel = typename ELFT::Crel; \
|
/freebsd/contrib/llvm-project/clang/tools/driver/ |
H A D | cc1as_main.cpp | 170 unsigned Crel : 1; 213 Crel = false; in AssemblerInvocation() 384 Opts.Crel = Args.hasArg(OPT_crel); in CreateFromArgs() 442 MCOptions.Crel = Opts.Crel; in ExecuteAssemblerImpl()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCTargetOptions.h | 65 bool Crel = false; variable
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | MarkLive.cpp | 91 const typename ELFT::Crel &rel) { in getAddend() 321 for (const typename ELFT::Crel &rel : rels.crels) in mark()
|
H A D | Relocations.h | 305 static inline int64_t getAddend(const typename ELFT::Crel &rel) {
|
H A D | InputSection.h | 42 Relocs<typename ELFT::Crel> crels;
|
H A D | InputSection.cpp | 146 ret.crels = Relocs<typename ELFT::Crel>( in relsOrRelas()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | BackendUtil.cpp | 473 Options.MCOptions.Crel = CodeGenOpts.Crel; in initTargetOptions()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | CommonArgs.cpp | 1127 bool Crel = false; in addLTOOptions() local 1130 Crel = true; in addLTOOptions() 1132 Crel = false; in addLTOOptions() 1137 if (Crel) { in addLTOOptions()
|
H A D | Clang.cpp | 2573 bool Crel = false, ExperimentalCrel = false; in CollectArgsForIntegratedAssembler() local 2705 Crel = true; in CollectArgsForIntegratedAssembler() 2707 Crel = false; in CollectArgsForIntegratedAssembler() 2775 if (Crel) { in CollectArgsForIntegratedAssembler()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | CodeGenOptions.def | 39 CODEGENOPT(Crel, 1, 0) ///< -Wa,--crel
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Options.td | 7096 MarshallingInfoFlag<CodeGenOpts<"Crel">>;
|