| OLD | NEW |
| 1 # Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 # Copyright 2006-2009 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 macro IS_NULL_OR_UNDEFINED(arg) = (arg == null); | 77 macro IS_NULL_OR_UNDEFINED(arg) = (arg == null); |
| 78 macro IS_UNDEFINED(arg) = (typeof(arg) === 'undefined'); | 78 macro IS_UNDEFINED(arg) = (typeof(arg) === 'undefined'); |
| 79 macro IS_FUNCTION(arg) = (typeof(arg) === 'function'); | 79 macro IS_FUNCTION(arg) = (typeof(arg) === 'function'); |
| 80 macro IS_NUMBER(arg) = (typeof(arg) === 'number'); | 80 macro IS_NUMBER(arg) = (typeof(arg) === 'number'); |
| 81 macro IS_STRING(arg) = (typeof(arg) === 'string'); | 81 macro IS_STRING(arg) = (typeof(arg) === 'string'); |
| 82 macro IS_OBJECT(arg) = (typeof(arg) === 'object'); | 82 macro IS_OBJECT(arg) = (typeof(arg) === 'object'); |
| 83 macro IS_BOOLEAN(arg) = (typeof(arg) === 'boolean'); | 83 macro IS_BOOLEAN(arg) = (typeof(arg) === 'boolean'); |
| 84 macro IS_REGEXP(arg) = %HasRegExpClass(arg); | 84 macro IS_REGEXP(arg) = %HasRegExpClass(arg); |
| 85 macro IS_ARRAY(arg) = %HasArrayClass(arg); | 85 macro IS_ARRAY(arg) = %HasArrayClass(arg); |
| 86 macro IS_DATE(arg) = %HasDateClass(arg); | 86 macro IS_DATE(arg) = %HasDateClass(arg); |
| 87 macro IS_NUMBER_WRAPPER(arg) = %HasNumberClass(arg); |
| 88 macro IS_STRING_WRAPPER(arg) = %HasStringClass(arg); |
| 87 macro IS_ERROR(arg) = (%ClassOf(arg) === 'Error'); | 89 macro IS_ERROR(arg) = (%ClassOf(arg) === 'Error'); |
| 88 macro IS_SCRIPT(arg) = (%ClassOf(arg) === 'Script'); | 90 macro IS_SCRIPT(arg) = (%ClassOf(arg) === 'Script'); |
| 89 macro FLOOR(arg) = %Math_floor(arg); | 91 macro FLOOR(arg) = %Math_floor(arg); |
| 90 | 92 |
| 91 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. | 93 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. |
| 92 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); | 94 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); |
| 93 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); | 95 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); |
| 94 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInt32(arg)); | 96 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInt32(arg)); |
| 95 | 97 |
| 96 # Macros implemented in Python. | 98 # Macros implemented in Python. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 111 # Last input and last subject are after the captures so we can omit them on | 113 # Last input and last subject are after the captures so we can omit them on |
| 112 # results returned from global searches. Beware - these evaluate their | 114 # results returned from global searches. Beware - these evaluate their |
| 113 # arguments twice. | 115 # arguments twice. |
| 114 macro LAST_SUBJECT(array) = ((array)[1]); | 116 macro LAST_SUBJECT(array) = ((array)[1]); |
| 115 macro LAST_INPUT(array) = ((array)[2]); | 117 macro LAST_INPUT(array) = ((array)[2]); |
| 116 | 118 |
| 117 # REGEXP_FIRST_CAPTURE | 119 # REGEXP_FIRST_CAPTURE |
| 118 macro CAPTURE(index) = (3 + (index)); | 120 macro CAPTURE(index) = (3 + (index)); |
| 119 const CAPTURE0 = 3; | 121 const CAPTURE0 = 3; |
| 120 const CAPTURE1 = 4; | 122 const CAPTURE1 = 4; |
| OLD | NEW |