floating point 연산 시에 underflow의 처리

accent88의 이미지

1. floating point 연산 시에 결과 값으로 인하여 FPU에서의 H/W 적인 underflow가 발생되면 이를 kernel이 처리하는 게 맞나요? 여기서 처리라는 것은 underflow가 발생했기 때문에 minimum 값으로 반환한다던지 아니면 0을 반환한다던지 하는 그런 것을 말합니다.

2. kernel이 처리하든 아니면 다른 방법으로 처리하든 자세히 그 처리 방법을 참고할 수 있는 싸이트나 책 같은 것으로는 어떤 것이 있을까요?

flyduck의 이미지

FPU에 따라서 underflow가 발생했을 때 처리하는게 틀린데, Intel의 경우라면 FPU가 underflow가 발생했을 때 exception을 일으키도록 설정할 수는 있는데 그렇게 설정이 되어 있는지는 모르겠군요. 커널은 기본 설정을 바꾸는 것 같지 않으니 FPU의 기본 설정에 따라서 exception이 발생할 수도 있을 것입니다. 여튼 FPU underflow exception이 발생했다는 가정하에 커널이 하는 일은 이것이 발생한 프로그램에게 SIGFPE signal을 보내는 것 뿐입니다. 커널은 floating point 연산에 아무런 관여도 하지 않습니다. 이를 처리하기를 원한다면 사용자 프로그램이 SIGFPE signal을 받아서 해야 할 것입니다. SIGFPE는 모든 floating point 에러에 대해서 발생하는 것이기에 경우에 맞게 잘 처리해야 할 것입니다.

Freedom is another word for nothing left to lose,
Nothing doesn't mean nothing if it ain't free.

accent88의 이미지

답변 감사합니다.

Quote:
FPU에 따라서 underflow가 발생했을 때 처리하는게 틀린데, Intel의 경우라면 FPU가 underflow가 발생했을 때 exception을 일으키도록 설정할 수는 있는데 그렇게 설정이 되어 있는지는 모르겠군요.

H/W Exception이 발생되도록 설정되어 있으며 이로 인하여 OS는 SIGFPE의 signal을 발생시킵니다.
Quote:
커널은 floating point 연산에 아무런 관여도 하지 않습니다. 이를 처리하기를 원한다면 사용자 프로그램이 SIGFPE signal을 받아서 해야 할 것입니다. SIGFPE는 모든 floating point 에러에 대해서 발생하는 것이기에 경우에 맞게 잘 처리해야 할 것입니다.

제가 원하는 것은 SIGFPE가 발생되면 signal handler의 두 번째 인자(siginfo_t *)로 전달되는 structure의 member 값을 조사하여 underflow로 인한 것인지를 검토한 후 이를 적절하게 처리하고자 하는 것입니다. Linux에서 어떤 부분이 이를 담당하고 있는지가 궁금합니다.
flyduck의 이미지

Quote:
제가 원하는 것은 SIGFPE가 발생되면 signal handler의 두 번째 인자(siginfo_t *)로 전달되는 structure의 member 값을 조사하여 underflow로 인한 것인지를 검토한 후 이를 적절하게 처리하고자 하는 것입니다. Linux에서 어떤 부분이 이를 담당하고 있는지가 궁금합니다.

siginfo_t로 그리 쓸만한 정보가 넘어오지 않습니다. 아마 유일한 정보가 에러가 발생한 곳의 IP일 것입니다. 커널은 그외 FPU와 관련한 특별한 정보를 만들지 않습니다. 에러의 원인을 파악하는 것은 프로그램의 몫입니다. :-)

Freedom is another word for nothing left to lose,
Nothing doesn't mean nothing if it ain't free.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.