Home
last modified time | relevance | path

Searched refs:AllowContract (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DOperator.h185 AllowContract = (1 << 5), enumerator
210 bool allowContract() const { return 0 != (Flags & AllowContract); } in allowContract()
232 Flags = (Flags & ~AllowContract) | B * AllowContract;
296 (SubclassOptionalData & ~FastMathFlags::AllowContract) | in setHasAllowContract()
297 (B * FastMathFlags::AllowContract); in setHasAllowContract()
326 (SubclassOptionalData & FastMathFlags::AllowContract) != 0 && in isFast()
357 return (SubclassOptionalData & FastMathFlags::AllowContract) != 0; in hasAllowContract()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLowerMatrixIntrinsics.cpp1229 bool AllowContract) { in createTiledLoops() argument
1265 emitMatrixMultiply(TileResult, A, B, AllowContract, Builder, true, false); in createTiledLoops()
1304 bool AllowContract = AllowContractEnabled || (isa<FPMathOperator>(MatMul) && in emitSIMDTiling() local
1308 AllowContract); in emitSIMDTiling()
1327 emitMatrixMultiply(Res, A, B, AllowContract, Builder, true, false); in emitSIMDTiling()
1394 bool AllowContract = in LowerMatrixMultiplyFused() local
1397 emitMatrixMultiply(Result, MA, MB, AllowContract, Builder, false, true); in LowerMatrixMultiplyFused()
1452 bool AllowContract = AllowContractEnabled || (isa<FPMathOperator>(MatMul) && in LowerMultiply() local
1454 emitMatrixMultiply(Result, Lhs, Rhs, AllowContract, Builder, false, false); in LowerMultiply()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DLLVMBitCodes.h472 AllowContract = (1 << 5), enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h380 bool AllowContract : 1;
396 AllowContract(false), ApproximateFuncs(false),
418 void setAllowContract(bool b) { AllowContract = b; }
431 bool hasAllowContract() const { return AllowContract; }
446 AllowContract &= Flags.AllowContract;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1479 Flags |= bitc::AllowContract; in getOptimizationFlags()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1183 if (0 != (Val & bitc::AllowContract)) in getDecodedFastMathFlags()