@@ -801,74 +801,68 @@ ToolChain::computeMSVCVersion(const Driver *D,
801
801
}
802
802
803
803
llvm::opt::DerivedArgList *ToolChain::TranslateOpenMPTargetArgs (
804
- const llvm::opt::DerivedArgList &Args,
805
- Action::OffloadKind DeviceOffloadKind,
806
- SmallVector<llvm::opt::Arg *, 4 > &AllocatedArgs) const {
807
- if (DeviceOffloadKind == Action::OFK_OpenMP) {
808
- DerivedArgList *DAL = new DerivedArgList (Args.getBaseArgs ());
809
- const OptTable &Opts = getDriver ().getOpts ();
810
- bool Modified = false ;
811
-
812
- // Handle -Xopenmp-target flags
813
- for (Arg *A : Args) {
814
- // Exclude flags which may only apply to the host toolchain.
815
- // Do not exclude flags when the host triple (AuxTriple)
816
- // matches the current toolchain triple. If it is not present
817
- // at all, target and host share a toolchain.
818
- if (A->getOption ().matches (options::OPT_m_Group)) {
819
- if (!getAuxTriple () || getAuxTriple ()->str () == getTriple ().str ())
820
- DAL->append (A);
821
- else
822
- Modified = true ;
823
- continue ;
824
- }
825
-
826
- unsigned Index;
827
- unsigned Prev;
828
- bool XOpenMPTargetNoTriple = A->getOption ().matches (
829
- options::OPT_Xopenmp_target);
830
-
831
- if (A->getOption ().matches (options::OPT_Xopenmp_target_EQ)) {
832
- // Passing device args: -Xopenmp-target=<triple> -opt=val.
833
- if (A->getValue (0 ) == getTripleString ())
834
- Index = Args.getBaseArgs ().MakeIndex (A->getValue (1 ));
835
- else
836
- continue ;
837
- } else if (XOpenMPTargetNoTriple) {
838
- // Passing device args: -Xopenmp-target -opt=val.
839
- Index = Args.getBaseArgs ().MakeIndex (A->getValue (0 ));
840
- } else {
804
+ const llvm::opt::DerivedArgList &Args, bool SameTripleAsHost,
805
+ SmallVectorImpl<llvm::opt::Arg *> &AllocatedArgs) const {
806
+ DerivedArgList *DAL = new DerivedArgList (Args.getBaseArgs ());
807
+ const OptTable &Opts = getDriver ().getOpts ();
808
+ bool Modified = false ;
809
+
810
+ // Handle -Xopenmp-target flags
811
+ for (Arg *A : Args) {
812
+ // Exclude flags which may only apply to the host toolchain.
813
+ // Do not exclude flags when the host triple (AuxTriple)
814
+ // matches the current toolchain triple. If it is not present
815
+ // at all, target and host share a toolchain.
816
+ if (A->getOption ().matches (options::OPT_m_Group)) {
817
+ if (SameTripleAsHost)
841
818
DAL->append (A);
819
+ else
820
+ Modified = true ;
821
+ continue ;
822
+ }
823
+
824
+ unsigned Index;
825
+ unsigned Prev;
826
+ bool XOpenMPTargetNoTriple =
827
+ A->getOption ().matches (options::OPT_Xopenmp_target);
828
+
829
+ if (A->getOption ().matches (options::OPT_Xopenmp_target_EQ)) {
830
+ // Passing device args: -Xopenmp-target=<triple> -opt=val.
831
+ if (A->getValue (0 ) == getTripleString ())
832
+ Index = Args.getBaseArgs ().MakeIndex (A->getValue (1 ));
833
+ else
842
834
continue ;
843
- }
844
-
845
- // Parse the argument to -Xopenmp-target.
846
- Prev = Index;
847
- std::unique_ptr<Arg> XOpenMPTargetArg (Opts.ParseOneArg (Args, Index));
848
- if (!XOpenMPTargetArg || Index > Prev + 1 ) {
849
- getDriver ().Diag (diag::err_drv_invalid_Xopenmp_target_with_args)
850
- << A->getAsString (Args);
851
- continue ;
852
- }
853
- if (XOpenMPTargetNoTriple && XOpenMPTargetArg &&
854
- Args.getAllArgValues (
855
- options::OPT_fopenmp_targets_EQ).size () != 1 ) {
856
- getDriver ().Diag (diag::err_drv_Xopenmp_target_missing_triple);
857
- continue ;
858
- }
859
- XOpenMPTargetArg->setBaseArg (A);
860
- A = XOpenMPTargetArg.release ();
861
- AllocatedArgs.push_back (A);
835
+ } else if (XOpenMPTargetNoTriple) {
836
+ // Passing device args: -Xopenmp-target -opt=val.
837
+ Index = Args.getBaseArgs ().MakeIndex (A->getValue (0 ));
838
+ } else {
862
839
DAL->append (A);
863
- Modified = true ;
840
+ continue ;
864
841
}
865
842
866
- if (Modified) {
867
- return DAL;
868
- } else {
869
- delete DAL;
843
+ // Parse the argument to -Xopenmp-target.
844
+ Prev = Index;
845
+ std::unique_ptr<Arg> XOpenMPTargetArg (Opts.ParseOneArg (Args, Index));
846
+ if (!XOpenMPTargetArg || Index > Prev + 1 ) {
847
+ getDriver ().Diag (diag::err_drv_invalid_Xopenmp_target_with_args)
848
+ << A->getAsString (Args);
849
+ continue ;
850
+ }
851
+ if (XOpenMPTargetNoTriple && XOpenMPTargetArg &&
852
+ Args.getAllArgValues (options::OPT_fopenmp_targets_EQ).size () != 1 ) {
853
+ getDriver ().Diag (diag::err_drv_Xopenmp_target_missing_triple);
854
+ continue ;
870
855
}
856
+ XOpenMPTargetArg->setBaseArg (A);
857
+ A = XOpenMPTargetArg.release ();
858
+ AllocatedArgs.push_back (A);
859
+ DAL->append (A);
860
+ Modified = true ;
871
861
}
872
862
863
+ if (Modified)
864
+ return DAL;
865
+
866
+ delete DAL;
873
867
return nullptr ;
874
868
}
0 commit comments