Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/macros.py

Issue 542112: Fix some usage of "this" in builtins (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/runtime.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 macro IS_FUNCTION(arg) = (%_IsFunction(arg)); 85 macro IS_FUNCTION(arg) = (%_IsFunction(arg));
86 macro IS_REGEXP(arg) = (%_ClassOf(arg) === 'RegExp'); 86 macro IS_REGEXP(arg) = (%_ClassOf(arg) === 'RegExp');
87 macro IS_DATE(arg) = (%_ClassOf(arg) === 'Date'); 87 macro IS_DATE(arg) = (%_ClassOf(arg) === 'Date');
88 macro IS_NUMBER_WRAPPER(arg) = (%_ClassOf(arg) === 'Number'); 88 macro IS_NUMBER_WRAPPER(arg) = (%_ClassOf(arg) === 'Number');
89 macro IS_STRING_WRAPPER(arg) = (%_ClassOf(arg) === 'String'); 89 macro IS_STRING_WRAPPER(arg) = (%_ClassOf(arg) === 'String');
90 macro IS_BOOLEAN_WRAPPER(arg) = (%_ClassOf(arg) === 'Boolean'); 90 macro IS_BOOLEAN_WRAPPER(arg) = (%_ClassOf(arg) === 'Boolean');
91 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); 91 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error');
92 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); 92 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script');
93 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); 93 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments');
94 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); 94 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global');
95 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg));
95 macro FLOOR(arg) = $floor(arg); 96 macro FLOOR(arg) = $floor(arg);
96 97
97 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once. 98 # Inline macros. Use %IS_VAR to make sure arg is evaluated only once.
98 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); 99 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg));
99 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); 100 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg));
100 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); 101 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0));
101 macro TO_UINT32(arg) = (arg >>> 0); 102 macro TO_UINT32(arg) = (arg >>> 0);
102 103
103 # Macros implemented in Python. 104 # Macros implemented in Python.
104 python macro CHAR_CODE(str) = ord(str[1]); 105 python macro CHAR_CODE(str) = ord(str[1]);
(...skipping 23 matching lines...) Expand all
128 macro MS_FROM_TIME(time) = (Modulo(time, 1000)); 129 macro MS_FROM_TIME(time) = (Modulo(time, 1000));
129 130
130 # Last input and last subject of regexp matches. 131 # Last input and last subject of regexp matches.
131 macro LAST_SUBJECT(array) = ((array)[1]); 132 macro LAST_SUBJECT(array) = ((array)[1]);
132 macro LAST_INPUT(array) = ((array)[2]); 133 macro LAST_INPUT(array) = ((array)[2]);
133 134
134 # REGEXP_FIRST_CAPTURE 135 # REGEXP_FIRST_CAPTURE
135 macro CAPTURE(index) = (3 + (index)); 136 macro CAPTURE(index) = (3 + (index));
136 const CAPTURE0 = 3; 137 const CAPTURE0 = 3;
137 const CAPTURE1 = 4; 138 const CAPTURE1 = 4;
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/runtime.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698