Lua源码剖析之Nil类型与nil值的实现
首先,要搞明白Nil类型和nil值的实现原理,就要搞明白Lua里变量、值、类型三者之间的关系和实现方式,搞明白了以后,Nil不过是其中一种例子而已。
Lua is a dynamically typed language. This means that variables do not have types; only values do. There are no type definitions in the language. All values carry their own type.
All values in Lua are first-class values. This means that all values can be stored in variables, passed as arguments to other functions, and returned as results.
–Lua Reference Manual
也即,Lua里变量没有类型,值才有类型,并且每一个值都携带了他的类型信息。同时,Lua中的所有值都是第一类值,意味着所有值都可以被存储在变量中、作为参数传递给其他函数以及作为返回值。
落实到代码上,具体实现如下:
typedef struct lua_TValue TValue; struct lua_TValue { TValuefields; }; #define TValuefields Value value_; int tt_
“值”在实现中用TValue类型的变量来存储。把以上语句手工展开一下,如下:
struct TValue { Value value; int tt_ };
这里value是具体的值(或对具体值的引用),tt_是该变量的类型。也即实现了上文所说的“值才有类型,并且每一个值都携带了他的类型信息。”
通过追踪若干个宏以后,可以得知tt_中存储的是例如LUA_TNIL、LUA_TBOOLEAN 之类的值,为Lua中的8种类型,此外还有一个NUMTAGS,具体作用未知。
其实到这里已经知道Nil类型是如何实现的了,nil值如何实现还有待发掘。不过既然已经挖到了这一层,不妨继续把Value类型也深挖一下:
union Value { GCObject *gc; /* collectable objects */ void *p; /* light userdata */ int b; /* booleans */ lua_CFunction f; /* light C functions */ numfield /* numbers */ };
为了节省空间,Value是定义成一个联合体的,由于可以被回收的对象,需要包含更多的信息,所以这里用一个*gc指针引用。其他的四种类型就用C基本类型定义了,其中值得注意的是numfield,他是数字类型的实现,以前提到过Lua里数字是用双精度浮点数实现的,如果需要修改的话应该就是在这里下手,numfield定义如下:
#define numfield lua_Number n; /* numbers */ typedef LUA_NUMBER lua_Number; #define LUA_NUMBER double
其中第一个宏定义的作用我可以理解,但我还不太明白为什么中间要加上第二个宏定义,也许要等以后通读代码后才能找到答案。
GCObject的定义这里就不分析了,等到以后研究垃圾回收机制的时候再深入研究。
扯远了,回到正题,Nil类型如何实现已经找到,应该就是通过给_tt赋值LUA_TNIL来实现,那么nil值如何实现呢,答案在table的getint函数(通过数字索引返回表项的函数)中:
/* ** search function for integers */ const TValue *luaH_getint (Table *t, int key) { /* (1 <= key && key <= t->sizearray) */ if (cast(unsigned int, key-1) < cast(unsigned int, t->sizearray)) return &t->array[key-1]; else { lua_Number nk = cast_num(key); Node *n = hashnum(t, nk); do { /* check whether `key' is somewhere in the chain */ if (ttisnumber(gkey(n)) && luai_numeq(nvalue(gkey(n)), nk)) return gval(n); /* that's it */ else n = gnext(n); } while (n); return luaO_nilobject; } }
该函数的流程是:首先在table的array部分查找,若不在,则在hash表部分查找,若还不在,则返回luaO_nilobject对象,毫无疑问,这就是nil值。定义如下:
/* ** (address of) a fixed nil value */ #define luaO_nilobject (&luaO_nilobject_)
通过注释可以知道,在Lua中,所有nil值实际上都是同一个(fixed)对象——luaO_nilobject_
该对象定义如下:
LUAI_DDEF const TValue luaO_nilobject_ = {NILCONSTANT}; #define NILCONSTANT {NULL}, LUA_TNIL
展开则得:
LUAI_DDEF const TValue luaO_nilobject_ = { {NULL}, LUA_TNIL };
也即,一个value为{NULL},tt_为LUA_TNIL的TValue,这也印证了之前关于Nil类型实现方式的猜测。
至此,Nil类型和nil值的实现方法都已经明晰:
Nil类型:tt_ = LUA_TNIL
nil值:为同一个Nil类型的对象luaO_nilobject_
table类型对不存在的表项进行索引时返回nil值的机制也已经明了:
array部分和hash表部分都不存在该索引时则返回&luaO_nilobject_
2019年10月24日 21:29
Always keeping floors cleanse and hygienic has become the toughest projects. However, even when you clean a person's floors you, you still really need to schedule qualified external plus internal profound cleans as generates sure to extend the longevity within your floor work surface. Also, professional cleaning up companies have right cleaning up products plus equipment to guarantee the best success for any specific floor.
2021年8月26日 14:10
Cleaning your own home is not always easy. It is really an art which usually shows how you cleaned your residence and put-together it. DIALAMAID Scanners advice you to ultimately clean your personal property which meets the largest standards. A well-organized cleaning technique makes as well as your family home look elegant as well as with hygiene.
2021年9月16日 21:26
If you need to your surface to reek good, available for you a refresher. It's always easily in the industry. The other sorts of thing you can perform is to earn your personally own home-made refresher. This isn't so extravagant. All all the ingredients include your place. You only just need fluids, white white vinegar, baking soft drink and lube. You need a spray bottle to combine water and additionally baking soft drink. Now, add vinegar to be had. A small to medium sized reaction normally takes place like white white vinegar contains acetic chemical and fluids, and baking soda comprises of salt. At this time, add a small number of drops about oil and additionally shake the software properly and play with it.
2021年9月29日 17:12
Those that own their companies became away by using skimping for janitorial plus professional tidier services for quit some time. Companies throughout the country used to undertake their private dirty deliver the results having business managers keep floors cleanse and secretaries deal with the dusting. Professional carpet cleaners were reserved for any very massive companies this owned skyscrapers while in the city. Very infrequently did the simple truth is a momma and soda shop hire inside of a janitor, maid service and also professional business enterprise cleaning crew.
2023年8月30日 16:55
Get hold of references within the maid provider. Call every one reference and inquire if they need had all complaints when they endorse the provider. Inquire with regards to whether or not they are still utilizing the service. If you're not, ask so why. Look into your house company has any type of guarantee with respect to quality. Do any maids own supervisors when so precisely what they the reason for? Request information within the company on whether they provide all assurances, together with what your current grouse process is certainly.
2024年1月16日 17:05
Very interesting blog. Alot of blogs I see these days don't really provide anything that I'm interested in, but I'm most definately interested in this one. Just thought that I would post and let you know
2024年2月18日 15:16
I thought it was heading to become some dull previous publish, however it truly compensated for my time. I’ll publish a hyperlink to this web page on my blog. I am positive my visitors will uncover that extremely helpful.
2024年2月18日 15:31
Success is often dictated over the experience through the staffing firm you end up picking. The growing requirement of temporary staffing from the medical place has furnished locum tenens practitioners the luxury of working consistently and making use of their understanding along with experience in the appropriate process.
2024年2月18日 15:31
good day i am so thrilled I placed your blog, I truly located you via mistake, even as i was looking on google for something else, anyways i am right here now and will just like to say thank for a splendid post and a all round unique website. Please do preserve up the exceptional paintings.
2024年2月18日 15:32
Thank you for another informative blog. Where else could I get that kind of info written in such an ideal way? I’ve a project that I am just now working on, and I have been on the look out for such information.
2024年2月18日 15:33
They Have Been In This Requiring Some Undertaking. In this way, They Respect The Attitude And Need Of Their Clients In a Clear Manner. . These Call Young women Respect That Different Clients Are Ensured Going To Have Different Systems.
2024年2月18日 16:02
I spend time people’s writing. It has the excellent to consider you demonstrate around thoughts together with the intellect and also res while doing this very important topic is sometimes successfully deemed.
2024年2月18日 16:02
Your automotive a lock are difficult task to preserve you safe whilst you inside the auto through misfortune happen. Do you need the motor vehicle locksmith? The motor vehicle locksmith generally works inside firm along with learns more tips on how to fix your automotive fasten issues in the simple way.
2024年2月18日 16:03
These are all really solid tips. I can’t tell you how often I see a comment on one of the blogs I write for that amounts to “nice post” and nothing more. I’ve even worked at a couple of sites that delete comments that don’t add to the discussion!
2024年2月18日 16:07
Your post is very helpful to get some effective tips to reduce weight properly. You have shared various nice photos of the same. I would like to thank you for sharing these tips. Surely I will try this at home. Keep updating more simple tips like this.
2024年2月18日 16:07
The Offscreen Film Festival 2018 promises to be an unforgettable cinematic experience. With a lineup of thought-provoking and boundary-pushing films, this festival is set to captivate audiences from all walks of life.
2024年2月18日 16:07
Awesome blog! Do you have any tips and hints for aspiring writers? I’m planning to start my own website soon but I’m a little lost on everything. Would you propose starting with a free platform like WordPress or go for a paid option? There are so many choices out there that I’m totally overwhelmed .. Any recommendations? Many thanks!
2024年2月18日 16:09
his is my first time i visit here. I found so many entertaining stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the leisure here! Keep up the good work. I have been meaning to write something like this on my website and you have given me an idea.
2024年2月18日 16:10
Very impressive and interesting blog found to be well written in a simple manner that everyone will understand and gain the enough knowledge from your blog being more informative is an added advantage for the users who are going through it. Once again nice blog keep it up.
2024年2月18日 16:20
It was a decent post to be sure. I completely delighted in understanding it in my lunch time. Will definitely come and visit this blog all the more frequently. Much obliged for sharing.
2024年2月18日 16:21
I love how your blog delves into diverse topics, providing a well-rounded and enriching reading experience. It’s my go-to source for learning something new every day.
2024年2月18日 16:22
The Offscreen Film Festival 2018 promises to be an unforgettable cinematic experience. With a lineup of thought-provoking and boundary-pushing films, this festival is set to captivate audiences from all walks of life.
2024年2月18日 16:39
Awesome blog! Do you have any tips and hints for aspiring writers? I’m planning to start my own website soon but I’m a little lost on everything. Would you propose starting with a free platform like WordPress or go for a paid option? There are so many choices out there that I’m totally overwhelmed .. Any recommendations? Many thanks!
2024年2月18日 16:39
The Offscreen Film Festival 2018 promises to be an unforgettable cinematic experience. With a lineup of thought-provoking and boundary-pushing films, this festival is set to captivate audiences from all walks of life.
2024年2月18日 16:44
Thanks for sharing very Nice Information for Us. Otherwise if anyone want to learn Python, Data Sciences and Python Frameworks. Expert Trainers, Project based Training, Placement assistance makes us different from others
2024年2月18日 16:44
They Have Been In This Requiring Some Undertaking. In this way, They Respect The Attitude And Need Of Their Clients In a Clear Manner. . These Call Young women Respect That Different Clients Are Ensured Going To Have Different Systems.
2024年2月18日 16:44
Driving forward Through You In Normal Need To Partake In The Standard Expansions Of Having A Standard Presence Destruction Then You Truly Need Not Go Out Conventionally. .You Can Other Than Help The Relationship Of Our Escorts Who Is Available to Driving Forward And In All Pieces Of The Country.
2024年2月18日 19:01
Thank you for another informative blog. Where else could I get that kind of info written in such an ideal way? I’ve a project that I am just now working on, and I have been on the look out for such information.
2024年2月18日 19:01
good day i am so thrilled I placed your blog, I truly located you via mistake, even as i was looking on google for something else, anyways i am right here now and will just like to say thank for a splendid post and a all round unique website. Please do preserve up the exceptional paintings.
2024年2月18日 19:02
For every one of your requirements,New Delhi Escorts will fulfill you in a most proficient way. They promise you incredible client support, a decent get, a no problem at all transportation and the best of diversion Our place Escorts from a legitimate agency in New Delhi to give you the best of New Delhi Escorts.
2024年2月18日 19:03
It was good to read an article as good as this one today. This article has the data I need and it's important for me to complete that right now. I am so happy this was shared here.
2024年2月18日 19:06
Nice to be visiting your blog once more, it has been months for me. Well this article that ive been waited for therefore long. i want this article to finish my assignment within the faculty, and it has same topic together with your article. Thanks, nice share.
2024年2月18日 19:22
I love this project (Create an animal/plant) but I am not able to open the document/image up to print or even display a clear copy to use in the classroom. Is there any way you could send me a copy of this? Thank you for your time.
2024年2月18日 19:39
Sir, I've read your article entirely and I greatly admire it. It is one of the most useful blogs I have found. I'm eager to read more of your blog posts. Here is a post that you should read where you can learn about Morse code. The Morse code was developed so that operators could translate the indentations marked on the paper tape into text messages. Please refer to the article to learn more about
2024年2月18日 19:40
I spend time people’s writing. It has the excellent to consider you demonstrate around thoughts together with the intellect and also res while doing this very important topic is sometimes successfully deemed.
2024年2月18日 19:40
Sir, I've read your article entirely and I greatly admire it. It is one of the most useful blogs I have found. I'm eager to read more of your blog posts. Here is a post that you should read where you can learn about Morse code. The Morse code was developed so that operators could translate the indentations marked on the paper tape into text messages. Please refer to the article to learn more about
2024年2月18日 19:56
Your posts are neatly organized with the information I want, so there are plenty of resources to reference. I bookmark this site and will find your posts frequently in the future. Thanks again ^^
2024年2月18日 19:56
Your dedication to providing high-quality, well-researched content shines through in this post. It's evident that you have a deep understanding of the subject matter. Your ability to break down complex ideas into understandable concepts is a rare skill. I appreciate the effort you put into creating valuable content.
2024年2月18日 19:57
Thank you for sharing this useful information. I am very happy after reading this blog port because it is written in a good manner and on a good topic.
2024年2月18日 21:09
The Offscreen Film Festival 2018 promises to be an unforgettable cinematic experience. With a lineup of thought-provoking and boundary-pushing films, this festival is set to captivate audiences from all walks of life.
2024年2月18日 21:12
Awesome blog! Do you have any tips and hints for aspiring writers? I’m planning to start my own website soon but I’m a little lost on everything. Would you propose starting with a free platform like WordPress or go for a paid option? There are so many choices out there that I’m totally overwhelmed .. Any recommendations? Many thanks!
2024年2月24日 16:52
"Initial You got a awesome blog .I determination be involved in plus uniform minutes. i view you got truly very functional matters , i determination be always checking your blog blesss.