Lines Matching refs:Comdat
23 Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} in Comdat() function in Comdat
25 Comdat::Comdat() = default;
27 StringRef Comdat::getName() const { return Name->first(); } in getName()
45 case Comdat::Any: in LLVMGetComdatSelectionKind()
47 case Comdat::ExactMatch: in LLVMGetComdatSelectionKind()
49 case Comdat::Largest: in LLVMGetComdatSelectionKind()
51 case Comdat::NoDuplicates: in LLVMGetComdatSelectionKind()
53 case Comdat::SameSize: in LLVMGetComdatSelectionKind()
60 Comdat *Cd = unwrap(C); in LLVMSetComdatSelectionKind()
63 Cd->setSelectionKind(Comdat::Any); in LLVMSetComdatSelectionKind()
66 Cd->setSelectionKind(Comdat::ExactMatch); in LLVMSetComdatSelectionKind()
69 Cd->setSelectionKind(Comdat::Largest); in LLVMSetComdatSelectionKind()
72 Cd->setSelectionKind(Comdat::NoDuplicates); in LLVMSetComdatSelectionKind()
75 Cd->setSelectionKind(Comdat::SameSize); in LLVMSetComdatSelectionKind()