summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/microinstruction.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-04-21 05:25:46 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:28 +0200
commit6944cabb899c4367a63cde97ae2bc2eb1a0fb790 (patch)
treeb52f0687254b6c5c123dd1b5171bad124055c6dc /src/shader_recompiler/frontend/ir/microinstruction.h
parentshader: Inline common IR::Block methods (diff)
downloadyuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.gz
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.bz2
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.lz
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.xz
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.tar.zst
yuzu-6944cabb899c4367a63cde97ae2bc2eb1a0fb790.zip
Diffstat (limited to '')
-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:
[[nodiscard]] IR::Type Type() const;
/// Get the number of arguments this instruction has.
- [[nodiscard]] size_t NumArgs() const;
+ [[nodiscard]] size_t NumArgs() const {
+ return op == Opcode::Phi ? phi_args.size() : NumArgsOf(op);
+ }
/// Get the value of a given argument index.
- [[nodiscard]] Value Arg(size_t index) const;
+ [[nodiscard]] Value Arg(size_t index) const noexcept {
+ if (op == Opcode::Phi) {
+ return phi_args[index].second;
+ } else {
+ return args[index];
+ }
+ }
+
/// Set the value of a given argument index.
void SetArg(size_t index, Value value);