mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 05:45:46 +00:00
shader: Constant propagation and global memory to storage buffer
This commit is contained in:
parent
f5605b424f
commit
37fc39de17
17 changed files with 652 additions and 63 deletions
|
@ -16,9 +16,11 @@ void Invoke(Func&& func, IR::Function& function) {
|
|||
}
|
||||
}
|
||||
|
||||
void ConstantPropagationPass(IR::Block& block);
|
||||
void DeadCodeEliminationPass(IR::Block& block);
|
||||
void IdentityRemovalPass(IR::Block& block);
|
||||
void GlobalMemoryToStorageBufferPass(IR::Block& block);
|
||||
void IdentityRemovalPass(IR::Function& function);
|
||||
void SsaRewritePass(IR::Function& function);
|
||||
void VerificationPass(const IR::Block& block);
|
||||
void VerificationPass(const IR::Function& function);
|
||||
|
||||
} // namespace Shader::Optimization
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue