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

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 387 // negative "NoFPExcept" flag here (that defaults to true) makes the flag
389 bool NoFPExcept : 1;
397 AllowReassociation(false), NoFPExcept(false) {}
421 void setNoFPExcept(bool b) { NoFPExcept = b; }
434 bool hasNoFPExcept() const { return NoFPExcept; }
449 NoFPExcept &= Flags.NoFPExcept;
MachineInstr.h 108 NoFPExcept = 1 << 14, // Instruction does not raise
1026 /// exceptions are not disabled, as indicated by the NoFPExcept MI flag.
1029 !getFlag(MachineInstr::MIFlag::NoFPExcept);
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZElimCompare.cpp 303 MIB.setMIFlag(MachineInstr::MIFlag::NoFPExcept);
SystemZInstrInfo.cpp 1319 transferMIFlag(&MI, MIB, MachineInstr::NoFPExcept);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MIRPrinter.cpp 754 if (MI.getFlag(MachineInstr::NoFPExcept))
755 OS << "nofpexcept ";
MachineInstr.cpp 1663 if (getFlag(MachineInstr::NoFPExcept))
1664 OS << "nofpexcept ";
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
InstructionSelectorImpl.h 81 // Set the NoFPExcept flag when no original matched instruction could
85 MIBFlags |= MachineInstr::NoFPExcept;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 983 MI->setFlag(MachineInstr::MIFlag::NoFPExcept);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86FloatingPoint.cpp 1368 I->setFlag(MachineInstr::MIFlag::NoFPExcept);
X86InstrInfo.cpp 5389 // Copy the NoFPExcept flag from the instruction we're fusing.
5390 if (MI.getFlag(MachineInstr::MIFlag::NoFPExcept))
5391 NewMI->setFlag(MachineInstr::MIFlag::NoFPExcept);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 1803 Flags |= MachineInstr::NoFPExcept;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIParser.cpp 1266 Flags |= MachineInstr::NoFPExcept;
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 8063 // TODO: Conservatively pass only nofpexcept flag here. Need to check and
12403 if (MI.getFlag(MachineInstr::NoFPExcept))
12404 MIB.setMIFlag(MachineInstr::NoFPExcept);

Completed in 88 milliseconds