|
Ruby
1.9.3p551(2014-11-13revision48407)
|
#include "vm_opts.h"Go to the source code of this file.
Macros | |
| #define | ID_SCOPE_SHIFT 3 |
| #define | ID_SCOPE_MASK 0x07 |
| #define | ID_LOCAL 0x00 |
| #define | ID_INSTANCE 0x01 |
| #define | ID_GLOBAL 0x03 |
| #define | ID_ATTRSET 0x04 |
| #define | ID_CONST 0x05 |
| #define | ID_CLASS 0x06 |
| #define | ID_JUNK 0x07 |
| #define | ID_INTERNAL ID_JUNK |
| #define | symIFUNC ID2SYM(idIFUNC) |
| #define | symCFUNC ID2SYM(idCFUNC) |
| #define | TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL) |
Enumerations | |
| enum | ruby_method_ids { tUPLUS = 321, tUMINUS = 322, tPOW = 323, tCMP = 324, tEQ = 325, tEQQ = 326, tNEQ = 327, tGEQ = 328, tLEQ = 329, tANDOP = 330, tOROP = 331, tMATCH = 332, tNMATCH = 333, tDOT2 = 334, tDOT3 = 335, tAREF = 336, tASET = 337, tLSHFT = 338, tRSHFT = 339, tLAMBDA = 352, idNULL = 365, idRespond_to = 366, idIFUNC = 367, idCFUNC = 368, id_core_set_method_alias = 369, id_core_set_variable_alias = 370, id_core_undef_method = 371, id_core_define_method = 372, id_core_define_singleton_method = 373, id_core_set_postexe = 374, tLAST_TOKEN = 375, idDot2 = tDOT2, idDot3 = tDOT3, idUPlus = tUPLUS, idUMinus = tUMINUS, idPow = tPOW, idCmp = tCMP, idPLUS = '+', idMINUS = '-', idMULT = '*', idDIV = '/', idMOD = '', idLT = '<', idLTLT = tLSHFT, idLE = tLEQ, idGT = '>', idGE = tGEQ, idEq = tEQ, idEqq = tEQQ, idNeq = tNEQ, idNot = '!', idBackquote = '`', idEqTilde = tMATCH, idNeqTilde = tNMATCH, idAREF = tAREF, idASET = tASET, idLAST_TOKEN = tLAST_TOKEN >> ID_SCOPE_SHIFT, tIntern, tMethodMissing, tLength, tSize, tGets, tSucc, tEach, tProc, tLambda, tSend, t__send__, tInitialize, tUScore, tLAST_ID, TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern), TOKEN2ID =(Intern) } |
| #define ID_ATTRSET 0x04 |
Definition at line 21 of file id.h.
Referenced by rb_id_attrset(), and rb_intern3().
| #define ID_CLASS 0x06 |
Definition at line 23 of file id.h.
Referenced by rb_intern3().
| #define ID_CONST 0x05 |
Definition at line 22 of file id.h.
Referenced by rb_id2str(), and rb_intern3().
| #define ID_GLOBAL 0x03 |
Definition at line 20 of file id.h.
Referenced by rb_intern3().
| #define ID_INSTANCE 0x01 |
Definition at line 19 of file id.h.
Referenced by rb_intern3().
| #define ID_INTERNAL ID_JUNK |
Definition at line 25 of file id.h.
Referenced by internal_id_gen().
| #define ID_JUNK 0x07 |
Definition at line 24 of file id.h.
Referenced by rb_intern3().
| #define ID_LOCAL 0x00 |
Definition at line 18 of file id.h.
Referenced by rb_id2str(), and rb_intern3().
| #define ID_SCOPE_MASK 0x07 |
Definition at line 17 of file id.h.
Referenced by rb_id2str(), and rb_id_attrset().
| #define ID_SCOPE_SHIFT 3 |
Definition at line 16 of file id.h.
Referenced by internal_id_gen(), and rb_intern3().
| #define TOKEN2ID | ( | n | ) | id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL) |
| enum ruby_method_ids |
1.8.14