summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/basic_block.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-07-26 02:34:17 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:28 +0100
commitc892359d1bf228d3c119c953c20fff44f280a7c4 (patch)
treec7461d3dea22a37448351fdcf92b5efadc1143b0 /src/shader_recompiler/frontend/ir/basic_block.h
parentshader: Add integer division opcodes (diff)
downloadyuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.tar
yuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.tar.gz
yuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.tar.bz2
yuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.tar.lz
yuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.tar.xz
yuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.tar.zst
yuzu-c892359d1bf228d3c119c953c20fff44f280a7c4.zip
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/frontend/ir/basic_block.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/basic_block.h b/src/shader_recompiler/frontend/ir/basic_block.h
index 9ce1ed07e..fbfe98266 100644
--- a/src/shader_recompiler/frontend/ir/basic_block.h
+++ b/src/shader_recompiler/frontend/ir/basic_block.h
@@ -40,6 +40,9 @@ public:
/// Appends a new instruction to the end of this basic block.
void AppendNewInst(Opcode op, std::initializer_list<Value> args);
+ /// Prepends a copy of an instruction to this basic block before the insertion point.
+ iterator PrependNewInst(iterator insertion_point, const Inst& base_inst);
+
/// Prepends a new instruction to this basic block before the insertion point.
iterator PrependNewInst(iterator insertion_point, Opcode op,
std::initializer_list<Value> args = {}, u32 flags = 0);