Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DOperator.h185 AllowContract = (1 << 5), enumerator
204 bool allowContract() const { return 0 != (Flags & AllowContract); } in allowContract()
226 Flags = (Flags & ~AllowContract) | B * AllowContract;
287 (SubclassOptionalData & ~FastMathFlags::AllowContract) | in setHasAllowContract()
288 (B * FastMathFlags::AllowContract); in setHasAllowContract()
317 (SubclassOptionalData & FastMathFlags::AllowContract) != 0 && in isFast()
348 return (SubclassOptionalData & FastMathFlags::AllowContract) != 0; in hasAllowContract()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSelectionDAGNodes.h368 bool AllowContract : 1;
378 AllowContract(false), ApproximateFuncs(false),
432 AllowContract = b;
452 bool hasAllowContract() const { return AllowContract; }
458 AllowContract && ApproximateFuncs && AllowReassociation;
474 AllowContract &= Flags.AllowContract;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
DLLVMBitCodes.h420 AllowContract = (1 << 5), enumerator
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DIRBuilderTest.cpp269 EXPECT_TRUE(Builder.getFastMathFlags().AllowContract); in TEST_F()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp1359 Flags |= bitc::AllowContract; in getOptimizationFlags()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1064 if (0 != (Val & bitc::AllowContract)) in getDecodedFastMathFlags()