[질문] 리눅스 커널에서 이해하기 어려운 선언이 있네요...

parkys1의 이미지

선언된 값은 current_stack_pointer 값 입니다.

선언된 방법은 다음과 같습니다.

/* how to get the current stack pointer from C */
register unsigned long current_stack_pointer asm("esp") __attribute_used__;

현재 레지스터의 스택 포인터를 얻어오고, register형 변수로 선언되어 있다는 것은 이해하겠습니다.

헌데 어떻게 저렇게 선언해 놓고 사용하는건지... 사용예는 다음과 같습니다..

/* how to get the thread information struct from C */
static inline struct thread_info *current_thread_info(void)
{
    return (struct thread_info *)(current_stack_pointer & ~(THREAD_SIZE - 1));
}

흠.. 잘 이해가 안되네요.. 그냥 값으로 이용하는데... define되어 있는것도 아니고...

어떻게 저렇게 선언이 가능한지 궁금하네요.. 답변 부탁드립니다. ^^

김일영의 이미지

어쨌거나 저 변수가 가리키고 있는 곳은 명백하니까
꼭 그 변수에 직접적으로 어떤 값을 대입하거나 하지 않더라도
변수를 참조하게 되면 현재 레지스터의 스택 포인터에 있는 값이 읽혀지겠지요...

parkys1의 이미지

흠.. 하지만 어떻게 선언을 저렇게 할 수 있는지 궁금하네요 ㅡㅡ;;;;

선언을 저렇게 하면 변수가 스택 포인터의 값으로 계속 바뀐다는 의미인데...

이해가 안되네요 ㅡㅡ;;;;

알고 계시는분 부탁드립니다 ^^

철이^^v의 이미지

저도 이거 이해하는데 좀 걸렸는데요,
http://lxr.linux.no/source/include/linux/sched.h?v=2.6.11#L806
보시면 알겠지만 thread_info가 kernel stack 이랑 union으로 선언되어 있습니다.
즉 stack 의 하위부분에 thread_info 가 있지요.
그렇기때문에 현재 stack pointer에서 bit mask하면 thread_info를 가져올수 있습니다.

아마 thread_info 를 가져올일이 많기때문에 속도 향상을 위해서 이런식으로 쓰는듯 합니다.

parkys1의 이미지

stack의 하위부분에 thread_info가 있다는 내용은 이해했지만 어떻게

자료의 선언을 저렇게 할 수 있는지 잘 모르겠습니다.

/* how to get the current stack pointer from C */
register unsigned long current_stack_pointer asm("esp") __attribute_used__;

이런 선언은 처음 봅니다. 그리고 값을 어디서도 할당해 주는 부분이 없는데 계속 stack pointer

로 값이 바뀌는데 그것도 잘 모르겠습니다.^^ 아시는분 부탁드립니다. ^^

익명 사용자의 이미지

사용자가 원하는 특정한 레지스터를 마치 변수인 것처럼 예약해 놓고 쓰는 기능입니다. (자세한 건 저도 안써봐서 잘 모르겠습니다만...)

http://gcc.gnu.org/onlinedocs/gcc-4.1.2/gcc/Global-Reg-Vars.html

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.