Home
last modified time | relevance | path

Searched refs:EnableSplitLTOUnit (Results 1 – 25 of 38) sorted by relevance

12

/llvm-project/llvm/test/LTO/Resolution/X86/
H A Dlto-unit-check.ll5 ; Linking bitcode both with EnableSplitLTOUnit set should work
14 ; Linking bitcode both without EnableSplitLTOUnit set should work
23 ; Linking bitcode with different values of EnableSplitLTOUnit should succeed
34 ; Linking bitcode with different values of EnableSplitLTOUnit (reverse order)
51 ; ENABLESPLITFLAG: !{i32 1, !"EnableSplitLTOUnit", i32 1}
52 ; NOENABLESPLITFLAG-NOT: !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/clang/test/CodeGen/
H A Denable-split-lto-unit.ll1 ; Test that we do not duplicate the EnableSplitLTOUnit module flag.
21 !3 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/test/Transforms/FunctionImport/
H A Dcg_profile.ll10 ; CHECK: !0 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
31 !1 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
/llvm-project/llvm/test/Transforms/FunctionImport/Inputs/
H A Dcg_profile.ll12 !1 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
/llvm-project/llvm/test/LTO/Resolution/X86/Inputs/
H A Dno-undef-type-md.ll10 !9 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/test/Transforms/ThinLTOBitcodeWriter/
H A Dunsplittable.ll32 ; CHECK: ![[FLAG1]] = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp515 bool EnableSplitLTOUnit = false; in enableSplitLTOUnit() local
517 M.getModuleFlag("EnableSplitLTOUnit"))) in enableSplitLTOUnit()
518 EnableSplitLTOUnit = MD->getZExtValue(); in enableSplitLTOUnit()
519 return EnableSplitLTOUnit; in enableSplitLTOUnit()
/llvm-project/lld/test/COFF/Inputs/
H A Dundefined-symbol-lto-b.ll25 !5 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
/llvm-project/llvm/test/tools/gold/X86/fatlto/
H A Dfatlto.test82 !6 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
109 !6 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/lld/test/ELF/fatlto/
H A Dfatlto.test89 !6 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
116 !6 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1409 bool EnableSplitLTOUnit;
1459 ModuleSummaryIndex(bool HaveGVs, bool EnableSplitLTOUnit = false,
1462 EnableSplitLTOUnit(EnableSplitLTOUnit), UnifiedLTO(UnifiedLTO),
1610 bool enableSplitLTOUnit() const { return EnableSplitLTOUnit; }
1611 void setEnableSplitLTOUnit() { EnableSplitLTOUnit = true; }
/llvm-project/llvm/test/Transforms/WholeProgramDevirt/
H A Ddevirt-single-impl2.ll43 !4 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/test/CodeGen/Hexagon/
H A Dcheck-subregister-for-latency.ll53 !0 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
/llvm-project/llvm/test/Transforms/LowerTypeTests/
H A Dcfi-annotation.ll65 !6 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/test/ThinLTO/X86/
H A Ddevirt_multiple_type_test.ll70 !10 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
H A Ddevirt2.ll15 ; ENABLESPLITFLAG: !{i32 1, !"EnableSplitLTOUnit", i32 1}
26 ; NOENABLESPLITFLAG-DAG: !{i32 1, !"EnableSplitLTOUnit", i32 0}
H A Ddevirt.ll14 ; ENABLESPLITFLAG: !{i32 1, !"EnableSplitLTOUnit", i32 1}
22 ; NOENABLESPLITFLAG-DAG: !{i32 1, !"EnableSplitLTOUnit", i32 0}
/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h96 bool EnableSplitLTOUnit; member
/llvm-project/llvm/test/DebugInfo/X86/
H A Dtemplate_function_decl.ll81 !20 = !{i32 1, !"EnableSplitLTOUnit", i32 0}
H A Dsubprogram-across-cus.ll81 !15 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
H A Dsplit-dwarf-cross-cu-gmlt-g.ll59 !11 = !{i32 1, !"EnableSplitLTOUnit", i32 1}
/llvm-project/llvm/lib/LTO/
H A DLTO.cpp757 if (EnableSplitLTOUnit) { in addModule()
761 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit) in addModule()
764 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit; in addModule()
/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp920 bool EnableSplitLTOUnit = false; in buildModuleSummaryIndex()
923 M.getModuleFlag("EnableSplitLTOUnit"))) in buildModuleSummaryIndex()
924 EnableSplitLTOUnit = MD->getZExtValue(); in buildModuleSummaryIndex()
928 ModuleSummaryIndex Index(/*HaveGVs=*/true, EnableSplitLTOUnit, UnifiedLTO); in buildModuleSummaryIndex()
878 bool EnableSplitLTOUnit = false; buildModuleSummaryIndex() local
/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h534 std::optional<bool> EnableSplitLTOUnit;
445 std::optional<bool> EnableSplitLTOUnit; global() variable
/llvm-project/llvm/tools/llvm-reduce/
H A DReducerWorkItem.cpp775 if (LTOInfo && LTOInfo->IsThinLTO && LTOInfo->EnableSplitLTOUnit) { in parseReducerWorkItem()
866 if (MMM->LTOInfo->IsThinLTO && MMM->LTOInfo->EnableSplitLTOUnit)

12