Browse Source

added a few comments

Roberto Ierusalimschy 11 years ago
parent
commit
3e977f02ac
1 changed files with 14 additions and 1 deletions
  1. 14 1
      lvm.c

+ 14 - 1
lvm.c

@@ -1,5 +1,5 @@
 /*
 /*
-** $Id: lvm.c,v 2.209 2014/05/12 21:44:17 roberto Exp roberto $
+** $Id: lvm.c,v 2.210 2014/05/14 19:47:11 roberto Exp roberto $
 ** Lua virtual machine
 ** Lua virtual machine
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -492,6 +492,9 @@ lua_Integer luaV_mod (lua_State *L, lua_Integer m, lua_Integer n) {
 /* number of bits in an integer */
 /* number of bits in an integer */
 #define NBITS	cast_int(sizeof(lua_Integer) * CHAR_BIT)
 #define NBITS	cast_int(sizeof(lua_Integer) * CHAR_BIT)
 
 
+/*
+** Shift left operation. (Shift right just negates 'y'.)
+*/
 lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) {
 lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) {
   if (y < 0) {  /* shift right? */
   if (y < 0) {  /* shift right? */
     if (y <= -NBITS) return 0;
     if (y <= -NBITS) return 0;
@@ -614,6 +617,14 @@ void luaV_finishOp (lua_State *L) {
 
 
 
 
 
 
+
+/*
+** {==================================================================
+** Function 'luaV_execute': main interpreter loop
+** ===================================================================
+*/
+
+
 /*
 /*
 ** some macros for common tasks in `luaV_execute'
 ** some macros for common tasks in `luaV_execute'
 */
 */
@@ -1140,3 +1151,5 @@ void luaV_execute (lua_State *L) {
   }
   }
 }
 }
 
 
+/* }================================================================== */
+