| 1919 | } |
| 1920 | |
| 1921 | int FindValueID(ILOperand *op) |
| 1922 | { |
| 1923 | auto it = StackVariableNameToValueID.end(); |
| 1924 | while (it != StackVariableNameToValueID.begin()) |
| 1925 | { |
| 1926 | it--; |
| 1927 | if (it->ContainsKey(op)) |
| 1928 | return (*it)[op]; |
| 1929 | } |
| 1930 | return -1; |
| 1931 | } |
| 1932 | |
| 1933 | void InvalidateValue(ILOperand *op) |
| 1934 | { |
no test coverage detected