[CodeGen] Pass objects that are expensive to copy by const ref.

No functionality change. Found by clang-tidy's
performance-unnecessary-value-param.

llvm-svn: 287894
This commit is contained in:
Benjamin Kramer 2016-11-24 16:01:20 +00:00
parent 0143bdb871
commit 81cb4b7103
4 changed files with 18 additions and 16 deletions

View File

@ -20,7 +20,8 @@ using namespace clang::CodeGen;
using namespace llvm; using namespace llvm;
static MDNode *createMetadata(LLVMContext &Ctx, const LoopAttributes &Attrs, static MDNode *createMetadata(LLVMContext &Ctx, const LoopAttributes &Attrs,
llvm::DebugLoc StartLoc, llvm::DebugLoc EndLoc) { const llvm::DebugLoc &StartLoc,
const llvm::DebugLoc &EndLoc) {
if (!Attrs.IsParallel && Attrs.VectorizeWidth == 0 && if (!Attrs.IsParallel && Attrs.VectorizeWidth == 0 &&
Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 && Attrs.InterleaveCount == 0 && Attrs.UnrollCount == 0 &&
@ -121,13 +122,13 @@ void LoopAttributes::clear() {
} }
LoopInfo::LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs, LoopInfo::LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs,
llvm::DebugLoc StartLoc, llvm::DebugLoc EndLoc) const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc)
: LoopID(nullptr), Header(Header), Attrs(Attrs) { : LoopID(nullptr), Header(Header), Attrs(Attrs) {
LoopID = createMetadata(Header->getContext(), Attrs, StartLoc, EndLoc); LoopID = createMetadata(Header->getContext(), Attrs, StartLoc, EndLoc);
} }
void LoopInfoStack::push(BasicBlock *Header, llvm::DebugLoc StartLoc, void LoopInfoStack::push(BasicBlock *Header, const llvm::DebugLoc &StartLoc,
llvm::DebugLoc EndLoc) { const llvm::DebugLoc &EndLoc) {
Active.push_back(LoopInfo(Header, StagedAttrs, StartLoc, EndLoc)); Active.push_back(LoopInfo(Header, StagedAttrs, StartLoc, EndLoc));
// Clear the attributes so nested loops do not inherit them. // Clear the attributes so nested loops do not inherit them.
StagedAttrs.clear(); StagedAttrs.clear();
@ -135,7 +136,8 @@ void LoopInfoStack::push(BasicBlock *Header, llvm::DebugLoc StartLoc,
void LoopInfoStack::push(BasicBlock *Header, clang::ASTContext &Ctx, void LoopInfoStack::push(BasicBlock *Header, clang::ASTContext &Ctx,
ArrayRef<const clang::Attr *> Attrs, ArrayRef<const clang::Attr *> Attrs,
llvm::DebugLoc StartLoc, llvm::DebugLoc EndLoc) { const llvm::DebugLoc &StartLoc,
const llvm::DebugLoc &EndLoc) {
// Identify loop hint attributes from Attrs. // Identify loop hint attributes from Attrs.
for (const auto *Attr : Attrs) { for (const auto *Attr : Attrs) {

View File

@ -67,7 +67,7 @@ class LoopInfo {
public: public:
/// \brief Construct a new LoopInfo for the loop with entry Header. /// \brief Construct a new LoopInfo for the loop with entry Header.
LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs, LoopInfo(llvm::BasicBlock *Header, const LoopAttributes &Attrs,
llvm::DebugLoc StartLoc, llvm::DebugLoc EndLoc); const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc);
/// \brief Get the loop id metadata for this loop. /// \brief Get the loop id metadata for this loop.
llvm::MDNode *getLoopID() const { return LoopID; } llvm::MDNode *getLoopID() const { return LoopID; }
@ -99,14 +99,14 @@ public:
/// \brief Begin a new structured loop. The set of staged attributes will be /// \brief Begin a new structured loop. The set of staged attributes will be
/// applied to the loop and then cleared. /// applied to the loop and then cleared.
void push(llvm::BasicBlock *Header, llvm::DebugLoc StartLoc, void push(llvm::BasicBlock *Header, const llvm::DebugLoc &StartLoc,
llvm::DebugLoc EndLoc); const llvm::DebugLoc &EndLoc);
/// \brief Begin a new structured loop. Stage attributes from the Attrs list. /// \brief Begin a new structured loop. Stage attributes from the Attrs list.
/// The staged attributes are applied to the loop and then cleared. /// The staged attributes are applied to the loop and then cleared.
void push(llvm::BasicBlock *Header, clang::ASTContext &Ctx, void push(llvm::BasicBlock *Header, clang::ASTContext &Ctx,
llvm::ArrayRef<const Attr *> Attrs, llvm::DebugLoc StartLoc, llvm::ArrayRef<const Attr *> Attrs, const llvm::DebugLoc &StartLoc,
llvm::DebugLoc EndLoc); const llvm::DebugLoc &EndLoc);
/// \brief End the current loop. /// \brief End the current loop.
void pop(); void pop();

View File

@ -175,14 +175,14 @@ protected:
/// string value. This allows the linker to combine the strings between /// string value. This allows the linker to combine the strings between
/// different modules. Used for EH typeinfo names, selector strings, and a /// different modules. Used for EH typeinfo names, selector strings, and a
/// few other things. /// few other things.
llvm::Constant *ExportUniqueString(const std::string &Str, llvm::Constant *ExportUniqueString(const std::string &Str, StringRef Prefix) {
const std::string prefix) { std::string Name = Prefix.str() + Str;
std::string name = prefix + Str; auto *ConstStr = TheModule.getGlobalVariable(Name);
auto *ConstStr = TheModule.getGlobalVariable(name);
if (!ConstStr) { if (!ConstStr) {
llvm::Constant *value = llvm::ConstantDataArray::getString(VMContext,Str); llvm::Constant *value = llvm::ConstantDataArray::getString(VMContext,Str);
ConstStr = new llvm::GlobalVariable(TheModule, value->getType(), true, ConstStr = new llvm::GlobalVariable(TheModule, value->getType(), true,
llvm::GlobalValue::LinkOnceODRLinkage, value, prefix + Str); llvm::GlobalValue::LinkOnceODRLinkage,
value, Name);
} }
return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(), return llvm::ConstantExpr::getGetElementPtr(ConstStr->getValueType(),
ConstStr, Zeros); ConstStr, Zeros);

View File

@ -6517,7 +6517,7 @@ static unsigned evaluateCDTSize(const FunctionDecl *FD,
static void static void
emitX86DeclareSimdFunction(const FunctionDecl *FD, llvm::Function *Fn, emitX86DeclareSimdFunction(const FunctionDecl *FD, llvm::Function *Fn,
llvm::APSInt VLENVal, const llvm::APSInt &VLENVal,
ArrayRef<ParamAttrTy> ParamAttrs, ArrayRef<ParamAttrTy> ParamAttrs,
OMPDeclareSimdDeclAttr::BranchStateTy State) { OMPDeclareSimdDeclAttr::BranchStateTy State) {
struct ISADataTy { struct ISADataTy {