ADS(arm develper suite)에서 C언어 문법

이경한의 이미지

여기서 눈팅만 3년째인데 눈치불구하고 질문하나 올립니다.
요즘엔 임베디드 소프트웨어를 개발하고 있는데 다음과 같은 코드를 봤습니다.

#define WHATS_THIS l12345
 
typedef WHATS_THIS struct st_test {
...
} t_test;

여기서 WHATS_THIS가 typedef와 struct 키워드 사이에 들어가면 어떤 의미가 되는지 잘 모르겠습니다. 혹시 ARM용 컴파일러에만 사용하는 특이한 문법이 아닐런지요?

ps. 물론 컴파일은 잘 됩니다.(-_-)

specerx의 이미지

적어주신 코드 대로 컴파일 하면 에러납니다.
ADS 1.2 [build 848] 입니다.

struct 앞에 붙는 키워드라면 아래와 같은 __packed 키워드가 아닌가요?

#define PACKED __packed
 
typedef PACKED struct _foo
{
    char a;
    int b;
    short c;
    char d;
}foo;

-----------------------------
이경한의 이미지

분명히 다음 문장은 주석처리 되어있고

// #define PACKED __packed

다음과 같이 바뀌어져 있습니다.
#define PACKED l12345678

아무래도 아래 코드가 실마리가 될 것 같습니다.
#define PACKED __packed
 
typedef PACKED struct _foo
{
    char a;
    int b;
    short c;
    char d;
}foo;

근데 이 코드가 의미하는 것이 무엇인지 명확하지 않군요.
설명 부탁드릴 수 있을까요?

Weblog: http://www.annyung.net

specerx의 이미지

__packed 지시어는 컴파일러에게 데이터들이 바이트 단위로 위치해 있다고 알려줍니다.
구조체 에서 __packed 지시자는 모든 패딩값을 제거하기 위해 사용됩니다.

struct {
  char a;
  int b;
  short c;
  char d;
}

위 코드의 경우 리틀엔디안 메모리 시스템에서 아래와 같이 패딩 비트가 들어가게 됩니다.
주소     +3         +2          +1          +0
   +-----------+-----------+-----------+-----------+
+0 |    pad    |    pad    |    pad    |     a     |
   +-----------+-----------+-----------+-----------+
+4 | b[31, 24] | b[23, 16] | b[15, 8]  |  b[7, 0]  |
   +-----------+-----------+-----------+-----------+
+8 |    pad    |     d     | c[15, 8]  |  c[7, 0]  |
   +-----------+-----------+-----------+-----------+

패딩비트가 들어가는 이유는 ARM 아키텍처의 로드-스토어 정렬 제한 때문이죠.

그러나 이런 패딩비트가 들어가면 안되는 경우가 있을 수 있습니다.
그럴때 사용하는것이 __packed 지시어 입니다.

__packed struct {
  char a;
  int b;
  short c;
  char d;
}

__packed 지시어가 들어가면 아래와 같이 패딩비트가 사라집니다.
주소     +3         +2          +1          +0
   +-----------+-----------+-----------+-----------+
+0 | b[23, 16] | b[15, 8]  |  b[7, 0]  |     a     |
   +-----------+-----------+-----------+-----------+
+4 |     d     |  c[15, 8] |  c[7, 0]  | b[31, 24] |
   +-----------+-----------+-----------+-----------+

제가 보고 있는 소스를 보니 아래와 같은 코드가 보이는군요.

#if defined( __GNUC__ )
#define PACKED_STRUCT           struct __attribute__ ((__packed__))
#define PACKED_STRUCTEX( x )    struct x __attribute__ ((__packed__))
#elif defined( __arm )
#define PACKED_STRUCT           __packed struct
#define PACKED_STRUCTEX( x )    __packed struct x
#else
#define PACKED_STRUCT           struct
#define PACKED_STRUCTEX( x )    struct x
#endif

VC 에서는 패딩비트를 없에기 위해서 #pragma pack(1) 가 쓰이죠.
------------------------------

moonhyunjin의 이미지

질문하신 코드에 대해서 정확히는 모르겠지만
디바이스 드라이버 만들다보면 아래와 같은 코드는 나옵니다.

물론 arm, i386 모두 컴파일이 잘됩니다.

typedef struct st_test {
...
}__attribute__((packed)) t_test;

<- 이거면 안되는 게 없어~
정품 소프트웨어 사용 캠패인

<- 이거면 안 되는 게 없어~
정품 소프트웨어 사용 캠패인

specerx의 이미지

gcc 에서는 __attribute__ ((__packed__))
armcc 에서는 __packed 를 사용합니다.
같은 의미 입니다. :)
------------------------------

댓글 달기

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