php核心為變數的值分配記憶體的幾個宏

來源:互聯網
上載者:User

標籤:style   http   tar   color   com   get   

在php5.3之前,為某變數分配記憶體是用宏 MAKE_STD_ZVAL;

737 #define MAKE_STD_ZVAL(zv) \   # /Zend/zend.h
738 ALLOC_ZVAL(zv); \
739 INIT_PZVAL(zv);

165 #define ALLOC_ZVAL(z) \      # /Zend/zend_alloc.h
166 (z) = (zval *) emalloc(sizeof(zval))

727 #define INIT_PZVAL(z) \              # /Zend/zend.h
728 (z)->refcount__gc = 1; \
729 (z)->is_ref__gc = 0;

 

php5.3以及php5.4之後 還是用宏 MAKE_STD_ZVAL; 但是  ALLOC_ZVAL 裡面有了新的實現,是因為php5.3新的GC(記憶體回收機制)

#undef 是在後面取消以前定義的宏定義

/* The following macroses override macroses from zend_alloc.h */
203 #undef ALLOC_ZVAL
204 #define ALLOC_ZVAL(z) \
205 do { \
206 (z) = (zval*)emalloc(sizeof(zval_gc_info)); \
207 GC_ZVAL_INIT(z); \
208 } while (0)

 

63 #define GC_ZVAL_INIT(z) \
64 ((zval_gc_info*)(z))->u.buffered = NULL

至於為什麼這樣做,在 php5.3新的記憶體回收機制詳解 中有詳細的介紹

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.