mirror of
https://github.com/intel/llvm.git
synced 2026-01-27 14:50:42 +08:00
This transform converts the usage of null pointer constants (e.g. NULL, 0,
etc.) in legacy C++ code and converts them to use the new C++11 nullptr
keyword.
- Added use-nullptr transform.
- Added C++11 support to the final syntax check. Used ArgumentAdjuster class to
add -std=c++11 option to the command line options.
- Added tests for use-nullptr transform.
- Added tests that exercises both loop-convert and use-nullptr in the source
file.
TODO: There's a known bug when using both -loop-convert and -use-nullptr at the
same time.
Author: Tareq A Siraj <tareq.a.siraj@intel.com>
Reviewers: klimek, gribozavr
llvm-svn: 173178
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
//===-- cpp11-migrate/Transforms.cpp - class Transforms Impl ----*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// \brief This file provides the implementation for class Transforms.
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "Transforms.h"
|
|
#include "LoopConvert/LoopConvert.h"
|
|
#include "UseNullptr/UseNullptr.h"
|
|
|
|
namespace cl = llvm::cl;
|
|
|
|
template <typename T>
|
|
Transform *ConstructTransform() {
|
|
return new T();
|
|
}
|
|
|
|
Transforms::~Transforms() {
|
|
for (std::vector<Transform*>::iterator I = ChosenTransforms.begin(),
|
|
E = ChosenTransforms.end(); I != E; ++I) {
|
|
delete *I;
|
|
}
|
|
for (OptionVec::iterator I = Options.begin(),
|
|
E = Options.end(); I != E; ++I) {
|
|
delete I->first;
|
|
}
|
|
}
|
|
|
|
void Transforms::createTransformOpts() {
|
|
Options.push_back(
|
|
OptionVec::value_type(
|
|
new cl::opt<bool>("loop-convert",
|
|
cl::desc("Make use of range-based for loops where possible")),
|
|
&ConstructTransform<LoopConvertTransform>));
|
|
|
|
Options.push_back(
|
|
OptionVec::value_type(
|
|
new cl::opt<bool>("use-nullptr",
|
|
cl::desc("Make use of nullptr keyword where possible")),
|
|
&ConstructTransform<UseNullptrTransform>));
|
|
|
|
// Add more transform options here.
|
|
}
|
|
|
|
void Transforms::createSelectedTransforms() {
|
|
for (OptionVec::iterator I = Options.begin(),
|
|
E = Options.end(); I != E; ++I) {
|
|
if (*I->first) {
|
|
ChosenTransforms.push_back(I->second());
|
|
}
|
|
}
|
|
}
|