LLVM 19.0.0git
Variables
MetaRenamer.cpp File Reference
#include "llvm/Transforms/Utils/MetaRenamer.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/IR/Argument.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/GlobalAlias.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/PassManager.h"
#include "llvm/IR/Type.h"
#include "llvm/IR/TypeFinder.h"
#include "llvm/Support/CommandLine.h"

Go to the source code of this file.

Variables

static cl::opt< std::string > RenameExcludeFunctionPrefixes ("rename-exclude-function-prefixes", cl::desc("Prefixes for functions that don't need to be renamed, separated " "by a comma"), cl::Hidden)
 
static cl::opt< std::string > RenameExcludeAliasPrefixes ("rename-exclude-alias-prefixes", cl::desc("Prefixes for aliases that don't need to be renamed, separated " "by a comma"), cl::Hidden)
 
static cl::opt< std::string > RenameExcludeGlobalPrefixes ("rename-exclude-global-prefixes", cl::desc("Prefixes for global values that don't need to be renamed, separated " "by a comma"), cl::Hidden)
 
static cl::opt< std::string > RenameExcludeStructPrefixes ("rename-exclude-struct-prefixes", cl::desc("Prefixes for structs that don't need to be renamed, separated " "by a comma"), cl::Hidden)
 
static cl::opt< boolRenameOnlyInst ("rename-only-inst", cl::init(false), cl::desc("only rename the instructions in the function"), cl::Hidden)
 
static const char *const metaNames []
 

Variable Documentation

◆ metaNames

const char* const metaNames[]
static
Initial value:
= {
"foo", "bar", "baz", "quux", "barney", "snork", "zot", "blam", "hoge",
"wibble", "wobble", "widget", "wombat", "ham", "eggs", "pluto", "spam"
}

Definition at line 68 of file MetaRenamer.cpp.

◆ RenameExcludeAliasPrefixes

cl::opt< std::string > RenameExcludeAliasPrefixes("rename-exclude-alias-prefixes", cl::desc("Prefixes for aliases that don't need to be renamed, separated " "by a comma"), cl::Hidden) ( "rename-exclude-alias-prefixes"  ,
cl::desc("Prefixes for aliases that don't need to be renamed, separated " "by a comma")  ,
cl::Hidden   
)
static

◆ RenameExcludeFunctionPrefixes

cl::opt< std::string > RenameExcludeFunctionPrefixes("rename-exclude-function-prefixes", cl::desc("Prefixes for functions that don't need to be renamed, separated " "by a comma"), cl::Hidden) ( "rename-exclude-function-prefixes"  ,
cl::desc("Prefixes for functions that don't need to be renamed, separated " "by a comma")  ,
cl::Hidden   
)
static

◆ RenameExcludeGlobalPrefixes

cl::opt< std::string > RenameExcludeGlobalPrefixes("rename-exclude-global-prefixes", cl::desc( "Prefixes for global values that don't need to be renamed, separated " "by a comma"), cl::Hidden) ( "rename-exclude-global-prefixes"  ,
cl::desc( "Prefixes for global values that don't need to be renamed, separated " "by a comma")  ,
cl::Hidden   
)
static

◆ RenameExcludeStructPrefixes

cl::opt< std::string > RenameExcludeStructPrefixes("rename-exclude-struct-prefixes", cl::desc("Prefixes for structs that don't need to be renamed, separated " "by a comma"), cl::Hidden) ( "rename-exclude-struct-prefixes"  ,
cl::desc("Prefixes for structs that don't need to be renamed, separated " "by a comma")  ,
cl::Hidden   
)
static

◆ RenameOnlyInst

cl::opt< bool > RenameOnlyInst("rename-only-inst", cl::init(false), cl::desc("only rename the instructions in the function"), cl::Hidden) ( "rename-only-inst"  ,
cl::init(false)  ,
cl::desc("only rename the instructions in the function")  ,
cl::Hidden   
)
static