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

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
InstructionSelector.cpp 69 return !MI.mayLoadOrStore() && !MI.mayRaiseFPException() &&
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86InsertWait.cpp 129 if (!(MI->mayRaiseFPException() || MI->mayLoadOrStore()) ||
X86FloatingPoint.cpp 1367 if (!MI.mayRaiseFPException())
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 302 if (!Compare.mayRaiseFPException())
372 if (Compare.mayRaiseFPException()) {
375 if (ConvOpc && !Desc.mayRaiseFPException())
378 if (!ConvOpc && !MI.mayRaiseFPException())
566 if (Compare.mayRaiseFPException() &&
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGISel.h 307 bool mayRaiseFPException(SDNode *Node) const;
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/include/llvm/MC/
MCInstrDesc.h 167 MayRaiseFPException,
438 bool mayRaiseFPException() const {
439 return Flags & (1ULL << MCID::MayRaiseFPException);
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenInstruction.h 255 bool mayRaiseFPException : 1;
CodeGenInstruction.cpp 410 mayRaiseFPException = R->getValueAsBit("mayRaiseFPException");
InstrInfoEmitter.cpp 963 if (Inst.mayRaiseFPException) OS << "|(1ULL<<MCID::MayRaiseFPException)";
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ImplicitNullChecks.cpp 239 if (MI->isCall() || MI->mayRaiseFPException() ||
ReachingDefAnalysis.cpp 542 return MI.mayLoadOrStore() || MI.mayRaiseFPException() ||
MachineCSE.cpp 407 MI->mayRaiseFPException() || MI->hasUnmodeledSideEffects())
ScheduleDAGInstrs.cpp 917 if (MI.mayRaiseFPException()) {
TargetInstrInfo.cpp 945 if (MI.isNotDuplicable() || MI.mayStore() || MI.mayRaiseFPException() ||
MachinePipeliner.cpp 710 return MI.isCall() || MI.mayRaiseFPException() ||
2298 SI->mayRaiseFPException() || DI->mayRaiseFPException() ||
PeepholeOptimizer.cpp 1833 if (Def->mayRaiseFPException() || Def->hasUnmodeledSideEffects())
MachineInstr.cpp 1245 mayRaiseFPException() || hasUnmodeledSideEffects())
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
InstructionSelectorImpl.h 62 bool NoFPException = !State.MIs[0]->getDesc().mayRaiseFPException();
84 if (NoFPException && MIB->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 61 milliseconds