13ffeb47ce
+ '-D' might be set as hipify-clang option (before separator '--' or without specifying separator at all); + '-D' as a clang option might be specified as well (after options separator '--'); + All defines specified as hipify-clang defines (before options separator '--') will be set after clang's ones and will redefine the same clang's ones.
48 строки
1.8 KiB
C++
48 строки
1.8 KiB
C++
/*
|
|
Copyright (c) 2015 - present Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "clang/Tooling/CommonOptionsParser.h"
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
namespace cl = llvm::cl;
|
|
namespace ct = clang::tooling;
|
|
|
|
extern cl::OptionCategory ToolTemplateCategory;
|
|
extern cl::opt<std::string> OutputFilename;
|
|
extern cl::opt<std::string> OutputDir;
|
|
extern cl::opt<std::string> TemporaryDir;
|
|
extern cl::opt<std::string> CudaPath;
|
|
extern cl::list<std::string> I;
|
|
extern cl::list<std::string> D;
|
|
extern cl::opt<bool> Inplace;
|
|
extern cl::opt<bool> SaveTemps;
|
|
extern cl::opt<bool> NoBackup;
|
|
extern cl::opt<bool> NoOutput;
|
|
extern cl::opt<bool> PrintStats;
|
|
extern cl::opt<std::string> OutputStatsFilename;
|
|
extern cl::opt<bool> Examine;
|
|
extern cl::extrahelp CommonHelp;
|
|
extern cl::opt<bool> TranslateToRoc;
|
|
extern cl::opt<bool> DashDash;
|