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

Side by Side Diff: src/macros.py

Issue 196139: X64: Convert smis to holding 32 bits of payload. (Closed)
Patch Set: Addressed review comments. Forwarded to head. Created 11 years, 2 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
« no previous file with comments | « src/heap.cc ('k') | src/objects.h » ('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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 const REGEXP_FIRST_CAPTURE = 3; 111 const REGEXP_FIRST_CAPTURE = 3;
112 112
113 # We can't put macros in macros so we use constants here. 113 # We can't put macros in macros so we use constants here.
114 # REGEXP_NUMBER_OF_CAPTURES 114 # REGEXP_NUMBER_OF_CAPTURES
115 macro NUMBER_OF_CAPTURES(array) = ((array)[0]); 115 macro NUMBER_OF_CAPTURES(array) = ((array)[0]);
116 116
117 # Gets the value of a Date object. If arg is not a Date object 117 # Gets the value of a Date object. If arg is not a Date object
118 # a type error is thrown. 118 # a type error is thrown.
119 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT ypeError()); 119 macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateT ypeError());
120 120
121 # Last input and last subject are after the captures so we can omit them on 121 # Last input and last subject of regexp matches.
122 # results returned from global searches. Beware - these evaluate their
123 # arguments twice.
124 macro LAST_SUBJECT(array) = ((array)[1]); 122 macro LAST_SUBJECT(array) = ((array)[1]);
125 macro LAST_INPUT(array) = ((array)[2]); 123 macro LAST_INPUT(array) = ((array)[2]);
126 124
127 # REGEXP_FIRST_CAPTURE 125 # REGEXP_FIRST_CAPTURE
128 macro CAPTURE(index) = (3 + (index)); 126 macro CAPTURE(index) = (3 + (index));
129 const CAPTURE0 = 3; 127 const CAPTURE0 = 3;
130 const CAPTURE1 = 4; 128 const CAPTURE1 = 4;
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698