reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-objdump/MachODump.cpp
 9432   outs() << "\t    control: invalid " << fpu.fpu_fcw.invalid;
 9433   outs() << " denorm " << fpu.fpu_fcw.denorm;
 9434   outs() << " zdiv " << fpu.fpu_fcw.zdiv;
 9435   outs() << " ovrfl " << fpu.fpu_fcw.ovrfl;
 9436   outs() << " undfl " << fpu.fpu_fcw.undfl;
 9437   outs() << " precis " << fpu.fpu_fcw.precis << "\n";
 9439   if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_24B)
 9441   else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_53B)
 9443   else if (fpu.fpu_fcw.pc == MachO::x86_FP_PREC_64B)
 9446     outs() << fpu.fpu_fcw.pc << " ";
 9448   if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_NEAR)
 9450   else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_DOWN)
 9452   else if (fpu.fpu_fcw.rc == MachO::x86_FP_RND_UP)
 9454   else if (fpu.fpu_fcw.rc == MachO::x86_FP_CHOP)