• Home
  • Raw
  • Download

Lines Matching refs:opCode

2460 void Builder::createNoResultOp(Op opCode)  in createNoResultOp()  argument
2462 Instruction* op = new Instruction(opCode); in createNoResultOp()
2467 void Builder::createNoResultOp(Op opCode, Id operand) in createNoResultOp() argument
2469 Instruction* op = new Instruction(opCode); in createNoResultOp()
2475 void Builder::createNoResultOp(Op opCode, const std::vector<Id>& operands) in createNoResultOp() argument
2477 Instruction* op = new Instruction(opCode); in createNoResultOp()
2485 void Builder::createNoResultOp(Op opCode, const std::vector<IdImmediate>& operands) in createNoResultOp() argument
2487 Instruction* op = new Instruction(opCode); in createNoResultOp()
2515 Id Builder::createUnaryOp(Op opCode, Id typeId, Id operand) in createUnaryOp() argument
2520 return createSpecConstantOp(opCode, typeId, std::vector<Id>(1, operand), std::vector<Id>()); in createUnaryOp()
2522 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createUnaryOp()
2529 Id Builder::createBinOp(Op opCode, Id typeId, Id left, Id right) in createBinOp() argument
2536 return createSpecConstantOp(opCode, typeId, operands, std::vector<Id>()); in createBinOp()
2538 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createBinOp()
2546 Id Builder::createTriOp(Op opCode, Id typeId, Id op1, Id op2, Id op3) in createTriOp() argument
2556 opCode, typeId, operands, std::vector<Id>()); in createTriOp()
2558 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createTriOp()
2567 Id Builder::createOp(Op opCode, Id typeId, const std::vector<Id>& operands) in createOp() argument
2569 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createOp()
2577 Id Builder::createOp(Op opCode, Id typeId, const std::vector<IdImmediate>& operands) in createOp() argument
2579 Instruction* op = new Instruction(getUniqueId(), typeId, opCode); in createOp()
2591 Id Builder::createSpecConstantOp(Op opCode, Id typeId, const std::vector<Id>& operands, in createSpecConstantOp() argument
2595 op->addImmediateOperand((unsigned) opCode); in createSpecConstantOp()
2827 Op opCode = OpNop; // All paths below need to set this in createTextureCall() local
2830 opCode = OpImageSparseFetch; in createTextureCall()
2832 opCode = OpImageFetch; in createTextureCall()
2835 opCode = OpImageSampleFootprintNV; in createTextureCall()
2839 opCode = OpImageSparseDrefGather; in createTextureCall()
2841 opCode = OpImageDrefGather; in createTextureCall()
2844 opCode = OpImageSparseGather; in createTextureCall()
2846 opCode = OpImageGather; in createTextureCall()
2852 opCode = OpImageSparseSampleProjDrefExplicitLod; in createTextureCall()
2854 opCode = OpImageSampleProjDrefExplicitLod; in createTextureCall()
2857 opCode = OpImageSparseSampleDrefExplicitLod; in createTextureCall()
2859 opCode = OpImageSampleDrefExplicitLod; in createTextureCall()
2863 opCode = OpImageSparseSampleProjExplicitLod; in createTextureCall()
2865 opCode = OpImageSampleProjExplicitLod; in createTextureCall()
2868 opCode = OpImageSparseSampleExplicitLod; in createTextureCall()
2870 opCode = OpImageSampleExplicitLod; in createTextureCall()
2876 opCode = OpImageSparseSampleProjDrefImplicitLod; in createTextureCall()
2878 opCode = OpImageSampleProjDrefImplicitLod; in createTextureCall()
2881 opCode = OpImageSparseSampleDrefImplicitLod; in createTextureCall()
2883 opCode = OpImageSampleDrefImplicitLod; in createTextureCall()
2887 opCode = OpImageSparseSampleProjImplicitLod; in createTextureCall()
2889 opCode = OpImageSampleProjImplicitLod; in createTextureCall()
2892 opCode = OpImageSparseSampleImplicitLod; in createTextureCall()
2894 opCode = OpImageSampleImplicitLod; in createTextureCall()
2903 switch (opCode) { in createTextureCall()
2925 Instruction* textureInst = new Instruction(getUniqueId(), resultType, opCode); in createTextureCall()
2956 Id Builder::createTextureQueryCall(Op opCode, const TextureParameters& parameters, bool isUnsignedR… in createTextureQueryCall() argument
2960 switch (opCode) { in createTextureQueryCall()
3007 Instruction* query = new Instruction(getUniqueId(), resultType, opCode); in createTextureQueryCall()