HomeSort by: relevance | last modified time | path
    Searched refs:MayRaiseFPException (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCInstrDesc.h 167 MayRaiseFPException,
438 bool mayRaiseFPException() const {
439 return Flags & (1ULL << MCID::MayRaiseFPException);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineInstr.h 1024 /// by the MCID::MayRaiseFPException property, *and* at the same time,
1027 bool mayRaiseFPException() const {
1028 return hasProperty(MCID::MayRaiseFPException) &&
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 3531 bool MayRaiseFPException = false;
3533 if (mayRaiseFPException(N) && !N->getFlags().hasNoFPExcept()) {
3534 MayRaiseFPException = true;
3571 if (!MayRaiseFPException && mayRaiseFPException(Res)) {
3733 bool SelectionDAGISel::mayRaiseFPException(SDNode *N) const {
3737 return MCID.mayRaiseFPException();

Completed in 18 milliseconds