/llvm-project/llvm/lib/ExecutionEngine/ |
H A D | TargetSelect.cpp | 34 return selectTarget(TT, MArch, MCPU, MAttrs); in selectTarget() 42 const SmallVectorImpl<std::string>& MAttrs) { in selectTarget() argument 79 if (!MAttrs.empty()) { in selectTarget() 81 for (unsigned i = 0; i != MAttrs.size(); ++i) in selectTarget() 82 Features.AddFeature(MAttrs[i]); in selectTarget()
|
/llvm-project/llvm/tools/llvm-mc-disassemble-fuzzer/ |
H A D | llvm-mc-disassemble-fuzzer.cpp | 38 MAttrs("mattr", cl::CommaSeparated, variable 132 if (MAttrs.size()) { in LLVMFuzzerInitialize() 134 for (unsigned i = 0; i != MAttrs.size(); ++i) in LLVMFuzzerInitialize() 135 Features.AddFeature(MAttrs[i]); in LLVMFuzzerInitialize()
|
/llvm-project/llvm/include/llvm/LTO/legacy/ |
H A D | LTOCodeGenerator.h | 100 void setAttrs(std::vector<std::string> MAttrs) { in setAttrs() 101 Config.MAttrs = std::move(MAttrs); in setAttrs()
|
/llvm-project/llvm/tools/llvm-mc-assemble-fuzzer/ |
H A D | llvm-mc-assemble-fuzzer.cpp | 58 MAttrs("mattr", cl::CommaSeparated, variable 298 if (MAttrs.size()) { in LLVMFuzzerInitialize() 300 for (unsigned i = 0; i != MAttrs.size(); ++i) in LLVMFuzzerInitialize() 301 Features.AddFeature(MAttrs[i]); in LLVMFuzzerInitialize()
|
/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | ExecutionEngine.h | 547 SmallVector<std::string, 4> MAttrs; variable 639 MAttrs.clear(); in setMAttrs() 640 MAttrs.append(mattrs.begin(), mattrs.end()); in setMAttrs() 655 const SmallVectorImpl<std::string>& MAttrs);
|
/llvm-project/llvm/tools/llvm-mc/ |
H A D | llvm-mc.cpp | 156 MAttrs("mattr", cl::CommaSeparated, 422 if (MAttrs.size()) { in main() 424 for (unsigned i = 0; i != MAttrs.size(); ++i) in main() 425 Features.AddFeature(MAttrs[i]); in main() 146 MAttrs("mattr", cl::CommaSeparated, global() variable
|
/llvm-project/llvm/tools/llc/ |
H A D | llc.cpp | 462 auto MAttrs = codegen::getMAttrs(); in compileModule() 464 CPUStr == "help" || (!MAttrs.empty() && MAttrs.front() == "help"); in compileModule() 460 auto MAttrs = codegen::getMAttrs(); compileModule() local
|
/llvm-project/llvm/include/llvm/LTO/ |
H A D | Config.h | 50 std::vector<std::string> MAttrs; member
|
/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.h | 55 extern std::vector<std::string> MAttrs;
|
H A D | llvm-objdump.cpp | 324 std::vector<std::string> objdump::MAttrs; 2557 if (!MAttrs.empty()) { in disassembleObject() 2558 for (unsigned I = 0; I != MAttrs.size(); ++I) in disassembleObject() 2559 Features.AddFeature(MAttrs[I]); in disassembleObject() 3531 MAttrs = commaSeparatedValues(InputArgs, OBJDUMP_mattr_EQ); in parseObjdumpOptions() 323 std::vector<std::string> objdump::MAttrs; global() member in objdump
|
H A D | MachODump.cpp | 7285 if (!MAttrs.empty()) { in DisassembleMachO() 7287 for (unsigned i = 0; i != MAttrs.size(); ++i) in DisassembleMachO() 7288 Features.AddFeature(MAttrs[i]); in DisassembleMachO()
|
/llvm-project/lld/wasm/ |
H A D | LTO.cpp | 62 c.MAttrs = getMAttrs(); in createLTO()
|
/llvm-project/llvm/lib/CodeGen/ |
H A D | CommandFlags.cpp | 59 CGLIST(std::string, MAttrs) in CGOPT() 130 static cl::list<std::string> MAttrs( in CGOPT() 134 CGBINDOPT(MAttrs); in CGOPT() 129 static cl::list<std::string> MAttrs( CGOPT() local
|
/llvm-project/lld/MachO/ |
H A D | LTO.cpp | 52 c.MAttrs = getMAttrs(); in createConfig()
|
/llvm-project/lld/COFF/ |
H A D | LTO.cpp | 79 c.MAttrs = getMAttrs(); in createConfig()
|
/llvm-project/llvm/unittests/ExecutionEngine/MCJIT/ |
H A D | MCJITTestBase.h | 324 SmallVector<std::string, 1> MAttrs; variable
|
/llvm-project/lld/ELF/ |
H A D | LTO.cpp | 110 c.MAttrs = getMAttrs(); in createConfig()
|
/llvm-project/llvm/tools/llvm-lto2/ |
H A D | llvm-lto2.cpp | 288 Conf.MAttrs = codegen::getMAttrs(); in run()
|
/llvm-project/llvm/lib/LTO/ |
H A D | LTOCodeGenerator.cpp | 404 SubtargetFeatures Features(join(Config.MAttrs, "")); in determineTarget()
|
H A D | LTOBackend.cpp | 208 for (const std::string &A : Conf.MAttrs) in createTargetMachine()
|
H A D | ThinLTOCodeGenerator.cpp | 379 Conf.MAttrs.push_back(TMBuilder.MAttr); in ModuleCacheEntry()
|
H A D | LTO.cpp | 146 for (auto &A : Conf.MAttrs) in computeLTOCacheKey()
|
/llvm-project/llvm/tools/gold/ |
H A D | gold-plugin.cpp | 894 Conf.MAttrs = codegen::getMAttrs(); in createLTO()
|
/llvm-project/clang/lib/CodeGen/ |
H A D | BackendUtil.cpp | 1298 Conf.MAttrs = TOpts.Features; in EmitBackendOutput()
|
/llvm-project/clang/tools/clang-linker-wrapper/ |
H A D | ClangLinkerWrapper.cpp |
|