diff --git a/include/sirit/sirit.h b/include/sirit/sirit.h index 97383e1..0a1af97 100644 --- a/include/sirit/sirit.h +++ b/include/sirit/sirit.h @@ -40,7 +40,7 @@ public: std::vector Assemble() const; /// Adds a SPIR-V extension. - void AddExtension(const std::string& extension_name); + void AddExtension(std::string extension_name); /// Adds a module capability. void AddCapability(spv::Capability capability); @@ -49,14 +49,14 @@ public: void SetMemoryModel(spv::AddressingModel addressing_model, spv::MemoryModel memory_model); /// Adds an entry point. - void AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point, const std::string& name, + void AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point, std::string name, const std::vector& interfaces = {}); /// Adds an entry point. template - void AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point, const std::string& name, + void AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point, std::string name, Ts&&... interfaces) { - AddEntryPoint(execution_model, entry_point, name, {interfaces...}); + AddEntryPoint(execution_model, std::move(entry_point), name, {interfaces...}); } /// Declare an execution mode for an entry point. @@ -131,7 +131,7 @@ public: } /// Returns type opaque. - Id TypeOpaque(const std::string& name); + Id TypeOpaque(std::string name); /// Returns type pointer. Id TypePointer(spv::StorageClass storage_class, Id type); @@ -224,8 +224,8 @@ public: Id OpLabel(); /// The block label instruction: Any reference to a block is through this ref. - Id OpLabel(const std::string& label_name) { - return Name(OpLabel(), label_name); + Id OpLabel(std::string label_name) { + return Name(OpLabel(), std::move(label_name)); } /// Unconditional jump to label. @@ -253,14 +253,14 @@ public: /// Assign a name string to a reference. /// @return target - Id Name(Id target, const std::string& name); + Id Name(Id target, std::string name); /// Assign a name string to a member of a structure type. /// @return type - Id MemberName(Id type, std::uint32_t member, const std::string& name); + Id MemberName(Id type, std::uint32_t member, std::string name); /// Assign a Result to a string for use by other debug instructions. - Id String(const std::string& string); + Id String(std::string string); /// Add source-level location information Id OpLine(Id file, Literal line, Literal column); diff --git a/src/instructions/debug.cpp b/src/instructions/debug.cpp index a2cc1c3..6b08099 100644 --- a/src/instructions/debug.cpp +++ b/src/instructions/debug.cpp @@ -11,26 +11,26 @@ namespace Sirit { -Id Module::Name(Id target, const std::string& name) { +Id Module::Name(Id target, std::string name) { auto op{std::make_unique(spv::Op::OpName)}; op->Add(target); - op->Add(name); + op->Add(std::move(name)); debug.push_back(std::move(op)); return target; } -Id Module::MemberName(Id type, u32 member, const std::string& name) { +Id Module::MemberName(Id type, u32 member, std::string name) { auto op{std::make_unique(spv::Op::OpMemberName)}; op->Add(type); op->Add(member); - op->Add(name); + op->Add(std::move(name)); debug.push_back(std::move(op)); return type; } -Id Module::String(const std::string& string) { +Id Module::String(std::string string) { auto op{std::make_unique(spv::Op::OpString, bound++)}; - op->Add(string); + op->Add(std::move(string)); const auto id = op.get(); debug.push_back(std::move(op)); return id; diff --git a/src/instructions/type.cpp b/src/instructions/type.cpp index 764c331..e7b7b18 100644 --- a/src/instructions/type.cpp +++ b/src/instructions/type.cpp @@ -96,9 +96,9 @@ Id Module::TypeStruct(const std::vector& members) { return AddDeclaration(std::move(op)); } -Id Module::TypeOpaque(const std::string& name) { +Id Module::TypeOpaque(std::string name) { auto op{std::make_unique(spv::Op::OpTypeOpaque, bound)}; - op->Add(name); + op->Add(std::move(name)); return AddDeclaration(std::move(op)); } diff --git a/src/literal_string.cpp b/src/literal_string.cpp index 3811697..23fa111 100644 --- a/src/literal_string.cpp +++ b/src/literal_string.cpp @@ -10,7 +10,7 @@ namespace Sirit { -LiteralString::LiteralString(const std::string& string) : string(string) { +LiteralString::LiteralString(std::string string) : string{std::move(string)} { operand_type = OperandType::String; } diff --git a/src/literal_string.h b/src/literal_string.h index 9db4369..92a8a28 100644 --- a/src/literal_string.h +++ b/src/literal_string.h @@ -14,7 +14,7 @@ namespace Sirit { class LiteralString : public Operand { public: - LiteralString(const std::string& string); + LiteralString(std::string string); ~LiteralString() override; void Fetch(Stream& stream) const override; diff --git a/src/op.cpp b/src/op.cpp index 4bebe01..6629d9d 100644 --- a/src/op.cpp +++ b/src/op.cpp @@ -110,8 +110,8 @@ void Op::Add(u32 integer) { Sink(LiteralNumber::Create(integer)); } -void Op::Add(const std::string& string) { - Sink(new LiteralString(string)); +void Op::Add(std::string string) { + Sink(new LiteralString(std::move(string))); } void Op::Add(const std::vector& ids) { diff --git a/src/op.h b/src/op.h index 8d9f739..9fec365 100644 --- a/src/op.h +++ b/src/op.h @@ -38,7 +38,7 @@ public: void Add(u32 integer); - void Add(const std::string& string); + void Add(std::string string); void Add(const std::vector& ids); diff --git a/src/sirit.cpp b/src/sirit.cpp index 3d71403..390d771 100644 --- a/src/sirit.cpp +++ b/src/sirit.cpp @@ -66,8 +66,8 @@ std::vector Module::Assemble() const { return bytes; } -void Module::AddExtension(const std::string& extension_name) { - extensions.insert(extension_name); +void Module::AddExtension(std::string extension_name) { + extensions.insert(std::move(extension_name)); } void Module::AddCapability(spv::Capability capability) { @@ -80,11 +80,11 @@ void Module::SetMemoryModel(spv::AddressingModel addressing_model, spv::MemoryMo } void Module::AddEntryPoint(spv::ExecutionModel execution_model, Id entry_point, - const std::string& name, const std::vector& interfaces) { + std::string name, const std::vector& interfaces) { auto op{std::make_unique(spv::Op::OpEntryPoint)}; op->Add(static_cast(execution_model)); op->Add(entry_point); - op->Add(name); + op->Add(std::move(name)); op->Add(interfaces); entry_points.push_back(std::move(op)); }