summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/ir/microinstruction.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-21 00:25:46 -0300
committerGravatar ameerj2021-07-22 21:51:28 -0400
commit6944cabb899c4367a63cde97ae2bc2eb1a0fb790 (patch)
treeb52f0687254b6c5c123dd1b5171bad124055c6dc /src/shader_recompiler/frontend/ir/microinstruction.h
parentshader: Inline common IR::Block methods (diff)
downloadyuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.gz
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.xz
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.zip
shader: Inline common Opcode and Inst functions
Diffstat (limited to 'src/shader_recompiler/frontend/ir/microinstruction.h')
-rw-r--r--src/shader_recompiler/frontend/ir/microinstruction.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/microinstruction.h b/src/shader_recompiler/frontend/ir/microinstruction.h
index dc9f683fe..ea55fc29c 100644
--- a/src/shader_recompiler/frontend/ir/microinstruction.h
+++ b/src/shader_recompiler/frontend/ir/microinstruction.h
@@ -73,10 +73,19 @@ public:
73 [[nodiscard]] IR::Type Type() const; 73 [[nodiscard]] IR::Type Type() const;
74 74
75 /// Get the number of arguments this instruction has. 75 /// Get the number of arguments this instruction has.
76 [[nodiscard]] size_t NumArgs() const; 76 [[nodiscard]] size_t NumArgs() const {
77 return op == Opcode::Phi ? phi_args.size() : NumArgsOf(op);
78 }
77 79
78 /// Get the value of a given argument index. 80 /// Get the value of a given argument index.
79 [[nodiscard]] Value Arg(size_t index) const; 81 [[nodiscard]] Value Arg(size_t index) const noexcept {
82 if (op == Opcode::Phi) {
83 return phi_args[index].second;
84 } else {
85 return args[index];
86 }
87 }
88
80 /// Set the value of a given argument index. 89 /// Set the value of a given argument index.
81 void SetArg(size_t index, Value value); 90 void SetArg(size_t index, Value value);
82 91