Home
last modified time | relevance | path

Searched refs:isUnaryOp (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstruction.h129 bool isUnaryOp() const { return isUnaryOp(getOpcode()); }
148 static inline bool isUnaryOp(unsigned Opcode) {
DIntrinsicInst.h212 bool isUnaryOp() const;
DInstrTypes.h80 return I->isUnaryOp() || in classof()
177 return I->isUnaryOp();
DIRBuilder.h1644 if (Instruction::isUnaryOp(Opc)) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp148 bool ConstrainedFPIntrinsic::isUnaryOp() const { in isUnaryOp() function in ConstrainedFPIntrinsic
DConstantFold.cpp954 assert(Instruction::isUnaryOp(Opcode) && "Non-unary instruction detected"); in ConstantFoldUnaryInstruction()
DConstants.cpp1908 assert(Instruction::isUnaryOp(Opcode) && in get()
/third_party/vk-gl-cts/modules/gles2/functional/
Des2fShaderOperatorTests.cpp1286 bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); local
1304 if (isUnaryOp && funcInfo.isUnaryPrefix)
1342 if (funcInfo.type == OPERATOR && !isUnaryOp)
1350 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix)
1357 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix))
1358 shaderOp += string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " ");
1362 if (isUnaryOp && !funcInfo.isUnaryPrefix)
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp1748 const bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); in init() local
1769 if (isUnaryOp && funcInfo.isUnaryPrefix) in init()
1815 if (funcInfo.type == OPERATOR && !isUnaryOp) in init()
1823 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix) in init()
1830 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix)) in init()
1831 … shaderOp += std::string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " "); in init()
1835 if (isUnaryOp && !funcInfo.isUnaryPrefix) in init()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp1748 const bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); in init() local
1769 if (isUnaryOp && funcInfo.isUnaryPrefix) in init()
1815 if (funcInfo.type == OPERATOR && !isUnaryOp) in init()
1823 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix) in init()
1830 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix)) in init()
1831 … shaderOp += std::string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " "); in init()
1835 if (isUnaryOp && !funcInfo.isUnaryPrefix) in init()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderOperatorTests.cpp2148 bool isUnaryOp = (funcInfo.input1.valueType == VALUE_NONE); local
2168 if (isUnaryOp && funcInfo.isUnaryPrefix)
2214 if (funcInfo.type == OPERATOR && !isUnaryOp)
2222 if (funcInfo.type == OPERATOR && isUnaryOp && !funcInfo.isUnaryPrefix)
2229 if (inputNdx != 0 || (isUnaryOp && funcInfo.isUnaryPrefix))
2230 shaderOp += string("") + (isUnaryOp ? "" : " ") + shaderFuncName + (isUnaryOp ? "" : " ");
2234 if (isUnaryOp && !funcInfo.isUnaryPrefix)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DConstantFolding.cpp1023 if (Instruction::isUnaryOp(Opcode)) in ConstantFoldInstOperandsImpl()
1293 assert(Instruction::isUnaryOp(Opcode)); in ConstantFoldUnaryOpOperand()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp7008 if (FPI.isUnaryOp()) { in visitConstrainedFPIntrinsic()