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

Side by Side Diff: src/macros.py

Issue 564035: Remove lazy loading of natives files and the natives cache.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: Created 10 years, 10 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/jsregexp.cc ('k') | src/messages.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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 # 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.
99 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg)); 99 macro NUMBER_IS_NAN(arg) = (!%_IsSmi(%IS_VAR(arg)) && !(arg == arg));
100 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg)); 100 macro TO_INTEGER(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : ToInteger(arg));
101 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0)); 101 macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0));
102 macro TO_UINT32(arg) = (arg >>> 0); 102 macro TO_UINT32(arg) = (arg >>> 0);
103 103
104 # Macros implemented in Python. 104 # Macros implemented in Python.
105 python macro CHAR_CODE(str) = ord(str[1]); 105 python macro CHAR_CODE(str) = ord(str[1]);
106 106
107 # Accessors for original global properties that ensure they have been loaded.
108 const ORIGINAL_REGEXP = (global.RegExp, $RegExp);
109 const ORIGINAL_DATE = (global.Date, $Date);
110
111 # Constants used on an array to implement the properties of the RegExp object. 107 # Constants used on an array to implement the properties of the RegExp object.
112 const REGEXP_NUMBER_OF_CAPTURES = 0; 108 const REGEXP_NUMBER_OF_CAPTURES = 0;
113 const REGEXP_FIRST_CAPTURE = 3; 109 const REGEXP_FIRST_CAPTURE = 3;
114 110
115 # We can't put macros in macros so we use constants here. 111 # We can't put macros in macros so we use constants here.
116 # REGEXP_NUMBER_OF_CAPTURES 112 # REGEXP_NUMBER_OF_CAPTURES
117 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); 113 macro NUMBER_OF_CAPTURES(array) = ((array)[0]);
118 114
119 # Gets the value of a Date object. If arg is not a Date object 115 # Gets the value of a Date object. If arg is not a Date object
120 # a type error is thrown. 116 # a type error is thrown.
121 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT ypeError()); 117 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT ypeError());
122 macro DAY(time) = ($floor(time / 86400000)); 118 macro DAY(time) = ($floor(time / 86400000));
123 macro MONTH_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588 ).month); 119 macro MONTH_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588 ).month);
124 macro DATE_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588) .date); 120 macro DATE_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588) .date);
125 macro YEAR_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588) .year); 121 macro YEAR_FROM_TIME(time) = (FromJulianDay(($floor(time / 86400000)) + 2440588) .year);
126 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24)); 122 macro HOUR_FROM_TIME(time) = (Modulo($floor(time / 3600000), 24));
127 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60)); 123 macro MIN_FROM_TIME(time) = (Modulo($floor(time / 60000), 60));
128 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60)); 124 macro SEC_FROM_TIME(time) = (Modulo($floor(time / 1000), 60));
129 macro MS_FROM_TIME(time) = (Modulo(time, 1000)); 125 macro MS_FROM_TIME(time) = (Modulo(time, 1000));
130 126
131 # Last input and last subject of regexp matches. 127 # Last input and last subject of regexp matches.
132 macro LAST_SUBJECT(array) = ((array)[1]); 128 macro LAST_SUBJECT(array) = ((array)[1]);
133 macro LAST_INPUT(array) = ((array)[2]); 129 macro LAST_INPUT(array) = ((array)[2]);
134 130
135 # REGEXP_FIRST_CAPTURE 131 # REGEXP_FIRST_CAPTURE
136 macro CAPTURE(index) = (3 + (index)); 132 macro CAPTURE(index) = (3 + (index));
137 const CAPTURE0 = 3; 133 const CAPTURE0 = 3;
138 const CAPTURE1 = 4; 134 const CAPTURE1 = 4;
OLDNEW
« no previous file with comments | « src/jsregexp.cc ('k') | src/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698