Home | History | Annotate | Download | only in Analysis

Lines Matching refs:TLI

97   TargetLibraryInfoImpl(const TargetLibraryInfoImpl &TLI);
98 TargetLibraryInfoImpl(TargetLibraryInfoImpl &&TLI);
99 TargetLibraryInfoImpl &operator=(const TargetLibraryInfoImpl &TLI);
100 TargetLibraryInfoImpl &operator=(TargetLibraryInfoImpl &&TLI);
216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {}
217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {}
218 TargetLibraryInfo &operator=(const TargetLibraryInfo &TLI) {
219 Impl = TLI.Impl;
222 TargetLibraryInfo &operator=(TargetLibraryInfo &&TLI) {
223 Impl = TLI.Impl;
378 TargetLibraryInfo TLI;
386 explicit TargetLibraryInfoWrapperPass(const TargetLibraryInfoImpl &TLI);
388 TargetLibraryInfo &getTLI() { return TLI; }
389 const TargetLibraryInfo &getTLI() const { return TLI; }