aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKarl Schimpf <kschimpf@google.com>2013-06-13 13:14:11 -0700
committerKarl Schimpf <kschimpf@google.com>2013-06-13 13:14:11 -0700
commitddadc78689898ac52d1e5959487e986dac67f549 (patch)
tree09859cc869410d484684c32ff8c4284f9c997b71 /lib
parent5d2171152d8441be311af367276e7e016877c05c (diff)
Insulate PNaCl bitcode from LLVM encodings of floating point optimization flags.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3405 R=jvoung@chromium.org Review URL: https://codereview.chromium.org/16836017
Diffstat (limited to 'lib')
-rw-r--r--lib/Bitcode/NaCl/Reader/NaClBitcodeReader.cpp10
-rw-r--r--lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp10
2 files changed, 10 insertions, 10 deletions
diff --git a/lib/Bitcode/NaCl/Reader/NaClBitcodeReader.cpp b/lib/Bitcode/NaCl/Reader/NaClBitcodeReader.cpp
index 4add89f6ab..58ff9de3aa 100644
--- a/lib/Bitcode/NaCl/Reader/NaClBitcodeReader.cpp
+++ b/lib/Bitcode/NaCl/Reader/NaClBitcodeReader.cpp
@@ -2099,15 +2099,15 @@ bool NaClBitcodeReader::ParseFunctionBody(Function *F) {
cast<BinaryOperator>(I)->setIsExact(true);
} else if (isa<FPMathOperator>(I)) {
FastMathFlags FMF;
- if (0 != (Record[OpNum] & FastMathFlags::UnsafeAlgebra))
+ if (0 != (Record[OpNum] & (1 << naclbitc::FPO_UNSAFE_ALGEBRA)))
FMF.setUnsafeAlgebra();
- if (0 != (Record[OpNum] & FastMathFlags::NoNaNs))
+ if (0 != (Record[OpNum] & (1 << naclbitc::FPO_NO_NANS)))
FMF.setNoNaNs();
- if (0 != (Record[OpNum] & FastMathFlags::NoInfs))
+ if (0 != (Record[OpNum] & (1 << naclbitc::FPO_NO_INFS)))
FMF.setNoInfs();
- if (0 != (Record[OpNum] & FastMathFlags::NoSignedZeros))
+ if (0 != (Record[OpNum] & (1 << naclbitc::FPO_NO_SIGNED_ZEROS)))
FMF.setNoSignedZeros();
- if (0 != (Record[OpNum] & FastMathFlags::AllowReciprocal))
+ if (0 != (Record[OpNum] & (1 << naclbitc::FPO_ALLOW_RECIPROCAL)))
FMF.setAllowReciprocal();
if (FMF.any())
I->setFastMathFlags(FMF);
diff --git a/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp b/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp
index 522ef1bbba..47ca9afe59 100644
--- a/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp
+++ b/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp
@@ -656,15 +656,15 @@ static uint64_t GetOptimizationFlags(const Value *V) {
} else if (const FPMathOperator *FPMO =
dyn_cast<const FPMathOperator>(V)) {
if (FPMO->hasUnsafeAlgebra())
- Flags |= FastMathFlags::UnsafeAlgebra;
+ Flags |= 1 << naclbitc::FPO_UNSAFE_ALGEBRA;
if (FPMO->hasNoNaNs())
- Flags |= FastMathFlags::NoNaNs;
+ Flags |= 1 << naclbitc::FPO_NO_NANS;
if (FPMO->hasNoInfs())
- Flags |= FastMathFlags::NoInfs;
+ Flags |= 1 << naclbitc::FPO_NO_INFS;
if (FPMO->hasNoSignedZeros())
- Flags |= FastMathFlags::NoSignedZeros;
+ Flags |= 1 << naclbitc::FPO_NO_SIGNED_ZEROS;
if (FPMO->hasAllowReciprocal())
- Flags |= FastMathFlags::AllowReciprocal;
+ Flags |= 1 << naclbitc::FPO_ALLOW_RECIPROCAL;
}
return Flags;