File: POSH_RemoveNonPositionOutput.cpp

package info (click to toggle)
intel-graphics-compiler 1.0.12504.6-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 83,912 kB
  • sloc: cpp: 910,147; lisp: 202,655; ansic: 15,197; python: 4,025; yacc: 2,241; lex: 1,570; pascal: 244; sh: 104; makefile: 25
file content (95 lines) | stat: -rw-r--r-- 3,105 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*========================== begin_copyright_notice ============================

Copyright (C) 2017-2021 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ===========================*/

#include "Compiler/IGCPassSupport.h"
#include "common/LLVMWarningsPush.hpp"
#include "llvm/IR/InstIterator.h"
#include "common/LLVMWarningsPop.hpp"
#include "GenISAIntrinsics/GenIntrinsicInst.h"
#include "Compiler/CodeGenPublicEnums.h"
#include "Compiler/CISACodeGen/helper.h"

#include <llvm/IR/PassManager.h>

using namespace IGC;
using namespace llvm;

class RemoveNonPositionOutput : public llvm::FunctionPass
{
public:
    static char ID;

    RemoveNonPositionOutput();

    ~RemoveNonPositionOutput() {}

    virtual void getAnalysisUsage(llvm::AnalysisUsage& AU) const override
    {
        AU.setPreservesCFG();
    }

    virtual bool runOnFunction(llvm::Function& F) override;

    virtual llvm::StringRef getPassName() const override
    {
        return "remove non-position output in vertex shader";
    }
};

llvm::FunctionPass* createRemoveNonPositionOutputPass()
{
    return new RemoveNonPositionOutput();
}

// Register pass to igc-opt
#define PASS_FLAG_POSH "igc-remove-nonposition-output"
#define PASS_DESCRIPTION_POSH "Custom Pass for Position-Only Shader"
#define PASS_CFG_ONLY_POSH false
#define PASS_ANALYSIS_POSH false
IGC_INITIALIZE_PASS_BEGIN(RemoveNonPositionOutput, PASS_FLAG_POSH, PASS_DESCRIPTION_POSH, PASS_CFG_ONLY_POSH, PASS_ANALYSIS_POSH)
IGC_INITIALIZE_PASS_END(RemoveNonPositionOutput, PASS_FLAG_POSH, PASS_DESCRIPTION_POSH, PASS_CFG_ONLY_POSH, PASS_ANALYSIS_POSH)

char RemoveNonPositionOutput::ID = 0;

RemoveNonPositionOutput::RemoveNonPositionOutput() : FunctionPass(ID)
{
    initializeRemoveNonPositionOutputPass(*PassRegistry::getPassRegistry());
}

bool RemoveNonPositionOutput::runOnFunction(Function& F)
{
    // Initialize the worklist to all of the instructions ready to process...
    SmallVector<Instruction*, 10> instructionToRemove;
    for (inst_iterator II = inst_begin(F), E = inst_end(F); II != E; ++II)
    {
        if (GenIntrinsicInst * inst = dyn_cast<GenIntrinsicInst>(&*II))
        {
            if (inst->getIntrinsicID() == GenISAIntrinsic::GenISA_OUTPUT)
            {
                const ShaderOutputType usage = static_cast<ShaderOutputType>(
                    llvm::cast<llvm::ConstantInt>(inst->getOperand(4))->getZExtValue());
                if (usage != SHADER_OUTPUT_TYPE_POSITION &&
                    usage != SHADER_OUTPUT_TYPE_POINTWIDTH &&
                    usage != SHADER_OUTPUT_TYPE_VIEWPORT_ARRAY_INDEX &&
                    usage != SHADER_OUTPUT_TYPE_CLIPDISTANCE_LO &&
                    usage != SHADER_OUTPUT_TYPE_CLIPDISTANCE_HI)
                {
                    instructionToRemove.push_back(inst);
                }
            }
        }
    }
    bool changed = false;
    uint num = instructionToRemove.size();
    for (uint i = 0; i < num; ++i)
    {
        instructionToRemove[i]->eraseFromParent();
        changed = true;
    }
    return changed;
}