| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- using Ryujinx.Graphics.Shader.Instructions;
- using System;
- using System.Buffers.Binary;
- using System.Collections.Concurrent;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection.Emit;
- using static Ryujinx.Graphics.Shader.IntermediateRepresentation.OperandHelper;
- namespace Ryujinx.Graphics.Shader.Decoders
- {
- static class Decoder
- {
- private delegate object OpActivator(InstEmitter emitter, ulong address, long opCode);
- private static ConcurrentDictionary<Type, OpActivator> _opActivators;
- static Decoder()
- {
- _opActivators = new ConcurrentDictionary<Type, OpActivator>();
- }
- public static Block[] Decode(Span<byte> code, ulong headerSize)
- {
- List<Block> blocks = new List<Block>();
- Queue<Block> workQueue = new Queue<Block>();
- Dictionary<ulong, Block> visited = new Dictionary<ulong, Block>();
- Block GetBlock(ulong blkAddress)
- {
- if (!visited.TryGetValue(blkAddress, out Block block))
- {
- block = new Block(blkAddress);
- workQueue.Enqueue(block);
- visited.Add(blkAddress, block);
- }
- return block;
- }
- GetBlock(0);
- while (workQueue.TryDequeue(out Block currBlock))
- {
- // Check if the current block is inside another block.
- if (BinarySearch(blocks, currBlock.Address, out int nBlkIndex))
- {
- Block nBlock = blocks[nBlkIndex];
- if (nBlock.Address == currBlock.Address)
- {
- throw new InvalidOperationException("Found duplicate block address on the list.");
- }
- nBlock.Split(currBlock);
- blocks.Insert(nBlkIndex + 1, currBlock);
- continue;
- }
- // If we have a block after the current one, set the limit address.
- ulong limitAddress = (ulong)code.Length - headerSize;
- if (nBlkIndex != blocks.Count)
- {
- Block nBlock = blocks[nBlkIndex];
- int nextIndex = nBlkIndex + 1;
- if (nBlock.Address < currBlock.Address && nextIndex < blocks.Count)
- {
- limitAddress = blocks[nextIndex].Address;
- }
- else if (nBlock.Address > currBlock.Address)
- {
- limitAddress = blocks[nBlkIndex].Address;
- }
- }
- FillBlock(code, currBlock, limitAddress, headerSize);
- if (currBlock.OpCodes.Count != 0)
- {
- // We should have blocks for all possible branch targets,
- // including those from SSY/PBK instructions.
- foreach (OpCodePush pushOp in currBlock.PushOpCodes)
- {
- GetBlock(pushOp.GetAbsoluteAddress());
- }
- // Set child blocks. "Branch" is the block the branch instruction
- // points to (when taken), "Next" is the block at the next address,
- // executed when the branch is not taken. For Unconditional Branches
- // or end of program, Next is null.
- OpCode lastOp = currBlock.GetLastOp();
- if (lastOp is OpCodeBranch opBr)
- {
- currBlock.Branch = GetBlock(opBr.GetAbsoluteAddress());
- }
- else if (lastOp is OpCodeBranchIndir opBrIndir)
- {
- // An indirect branch could go anywhere, we don't know the target.
- // Those instructions are usually used on a switch to jump table
- // compiler optimization, and in those cases the possible targets
- // seems to be always right after the BRX itself. We can assume
- // that the possible targets are all the blocks in-between the
- // instruction right after the BRX, and the common target that
- // all the "cases" should eventually jump to, acting as the
- // switch break.
- Block firstTarget = GetBlock(currBlock.EndAddress);
- firstTarget.BrIndir = opBrIndir;
- opBrIndir.PossibleTargets.Add(firstTarget);
- }
- if (!IsUnconditionalBranch(lastOp))
- {
- currBlock.Next = GetBlock(currBlock.EndAddress);
- }
- }
- // Insert the new block on the list (sorted by address).
- if (blocks.Count != 0)
- {
- Block nBlock = blocks[nBlkIndex];
- blocks.Insert(nBlkIndex + (nBlock.Address < currBlock.Address ? 1 : 0), currBlock);
- }
- else
- {
- blocks.Add(currBlock);
- }
- // Do we have a block after the current one?
- if (!IsExit(currBlock.GetLastOp()) && currBlock.BrIndir != null)
- {
- bool targetVisited = visited.ContainsKey(currBlock.EndAddress);
- Block possibleTarget = GetBlock(currBlock.EndAddress);
- currBlock.BrIndir.PossibleTargets.Add(possibleTarget);
- if (!targetVisited)
- {
- possibleTarget.BrIndir = currBlock.BrIndir;
- }
- }
- }
- foreach (Block block in blocks.Where(x => x.PushOpCodes.Count != 0))
- {
- for (int pushOpIndex = 0; pushOpIndex < block.PushOpCodes.Count; pushOpIndex++)
- {
- PropagatePushOp(visited, block, pushOpIndex);
- }
- }
- return blocks.ToArray();
- }
- private static bool BinarySearch(List<Block> blocks, ulong address, out int index)
- {
- index = 0;
- int left = 0;
- int right = blocks.Count - 1;
- while (left <= right)
- {
- int size = right - left;
- int middle = left + (size >> 1);
- Block block = blocks[middle];
- index = middle;
- if (address >= block.Address && address < block.EndAddress)
- {
- return true;
- }
- if (address < block.Address)
- {
- right = middle - 1;
- }
- else
- {
- left = middle + 1;
- }
- }
- return false;
- }
- private static void FillBlock(
- Span<byte> code,
- Block block,
- ulong limitAddress,
- ulong startAddress)
- {
- ulong address = block.Address;
- do
- {
- if (address + 7 >= limitAddress)
- {
- break;
- }
- // Ignore scheduling instructions, which are written every 32 bytes.
- if ((address & 0x1f) == 0)
- {
- address += 8;
- continue;
- }
- uint word0 = BinaryPrimitives.ReadUInt32LittleEndian(code.Slice((int)(startAddress + address)));
- uint word1 = BinaryPrimitives.ReadUInt32LittleEndian(code.Slice((int)(startAddress + address + 4)));
- ulong opAddress = address;
- address += 8;
- long opCode = word0 | (long)word1 << 32;
- (InstEmitter emitter, Type opCodeType) = OpCodeTable.GetEmitter(opCode);
- if (emitter == null)
- {
- // TODO: Warning, illegal encoding.
- block.OpCodes.Add(new OpCode(null, opAddress, opCode));
- continue;
- }
- OpCode op = MakeOpCode(opCodeType, emitter, opAddress, opCode);
- block.OpCodes.Add(op);
- }
- while (!IsBranch(block.GetLastOp()));
- block.EndAddress = address;
- block.UpdatePushOps();
- }
- private static bool IsUnconditionalBranch(OpCode opCode)
- {
- return IsUnconditional(opCode) && IsBranch(opCode);
- }
- private static bool IsUnconditional(OpCode opCode)
- {
- if (opCode is OpCodeExit op && op.Condition != Condition.Always)
- {
- return false;
- }
- return opCode.Predicate.Index == RegisterConsts.PredicateTrueIndex && !opCode.InvertPredicate;
- }
- private static bool IsBranch(OpCode opCode)
- {
- return (opCode is OpCodeBranch opBranch && !opBranch.PushTarget) ||
- opCode is OpCodeBranchIndir ||
- opCode is OpCodeBranchPop ||
- opCode is OpCodeExit;
- }
- private static bool IsExit(OpCode opCode)
- {
- return opCode is OpCodeExit;
- }
- private static OpCode MakeOpCode(Type type, InstEmitter emitter, ulong address, long opCode)
- {
- if (type == null)
- {
- throw new ArgumentNullException(nameof(type));
- }
- OpActivator createInstance = _opActivators.GetOrAdd(type, CacheOpActivator);
- return (OpCode)createInstance(emitter, address, opCode);
- }
- private static OpActivator CacheOpActivator(Type type)
- {
- Type[] argTypes = new Type[] { typeof(InstEmitter), typeof(ulong), typeof(long) };
- DynamicMethod mthd = new DynamicMethod($"Make{type.Name}", type, argTypes);
- ILGenerator generator = mthd.GetILGenerator();
- generator.Emit(OpCodes.Ldarg_0);
- generator.Emit(OpCodes.Ldarg_1);
- generator.Emit(OpCodes.Ldarg_2);
- generator.Emit(OpCodes.Newobj, type.GetConstructor(argTypes));
- generator.Emit(OpCodes.Ret);
- return (OpActivator)mthd.CreateDelegate(typeof(OpActivator));
- }
- private struct PathBlockState
- {
- public Block Block { get; }
- private enum RestoreType
- {
- None,
- PopPushOp,
- PushBranchOp
- }
- private RestoreType _restoreType;
- private ulong _restoreValue;
- public bool ReturningFromVisit => _restoreType != RestoreType.None;
- public PathBlockState(Block block)
- {
- Block = block;
- _restoreType = RestoreType.None;
- _restoreValue = 0;
- }
- public PathBlockState(int oldStackSize)
- {
- Block = null;
- _restoreType = RestoreType.PopPushOp;
- _restoreValue = (ulong)oldStackSize;
- }
- public PathBlockState(ulong syncAddress)
- {
- Block = null;
- _restoreType = RestoreType.PushBranchOp;
- _restoreValue = syncAddress;
- }
- public void RestoreStackState(Stack<ulong> branchStack)
- {
- if (_restoreType == RestoreType.PushBranchOp)
- {
- branchStack.Push(_restoreValue);
- }
- else if (_restoreType == RestoreType.PopPushOp)
- {
- while (branchStack.Count > (uint)_restoreValue)
- {
- branchStack.Pop();
- }
- }
- }
- }
- private static void PropagatePushOp(Dictionary<ulong, Block> blocks, Block currBlock, int pushOpIndex)
- {
- OpCodePush pushOp = currBlock.PushOpCodes[pushOpIndex];
- Stack<PathBlockState> workQueue = new Stack<PathBlockState>();
- HashSet<Block> visited = new HashSet<Block>();
- Stack<ulong> branchStack = new Stack<ulong>();
- void Push(PathBlockState pbs)
- {
- if (pbs.Block == null || visited.Add(pbs.Block))
- {
- workQueue.Push(pbs);
- }
- }
- Push(new PathBlockState(currBlock));
- while (workQueue.TryPop(out PathBlockState pbs))
- {
- if (pbs.ReturningFromVisit)
- {
- pbs.RestoreStackState(branchStack);
- continue;
- }
- Block current = pbs.Block;
- int pushOpsCount = current.PushOpCodes.Count;
- if (pushOpsCount != 0)
- {
- Push(new PathBlockState(branchStack.Count));
- for (int index = pushOpIndex; index < pushOpsCount; index++)
- {
- branchStack.Push(current.PushOpCodes[index].GetAbsoluteAddress());
- }
- }
- pushOpIndex = 0;
- if (current.Next != null)
- {
- Push(new PathBlockState(current.Next));
- }
- if (current.Branch != null)
- {
- Push(new PathBlockState(current.Branch));
- }
- else if (current.GetLastOp() is OpCodeBranchIndir brIndir)
- {
- foreach (Block possibleTarget in brIndir.PossibleTargets)
- {
- Push(new PathBlockState(possibleTarget));
- }
- }
- else if (current.GetLastOp() is OpCodeBranchPop op)
- {
- ulong syncAddress = branchStack.Pop();
- if (branchStack.Count == 0)
- {
- branchStack.Push(syncAddress);
- op.Targets.Add(pushOp, op.Targets.Count);
- pushOp.PopOps.TryAdd(op, Local());
- }
- else
- {
- Push(new PathBlockState(syncAddress));
- Push(new PathBlockState(blocks[syncAddress]));
- }
- }
- }
- }
- }
- }
|