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

Side by Side Diff: src/builtins.h

Issue 22715004: Version 3.20.15 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Add TypedArray API and correctness patches r16033 and r16084 Created 7 years, 4 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/bootstrapper.cc ('k') | src/code-stubs.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 V(STRICT_EQUALS, 1) \ 252 V(STRICT_EQUALS, 1) \
253 V(COMPARE, 2) \ 253 V(COMPARE, 2) \
254 V(ADD, 1) \ 254 V(ADD, 1) \
255 V(SUB, 1) \ 255 V(SUB, 1) \
256 V(MUL, 1) \ 256 V(MUL, 1) \
257 V(DIV, 1) \ 257 V(DIV, 1) \
258 V(MOD, 1) \ 258 V(MOD, 1) \
259 V(BIT_OR, 1) \ 259 V(BIT_OR, 1) \
260 V(BIT_AND, 1) \ 260 V(BIT_AND, 1) \
261 V(BIT_XOR, 1) \ 261 V(BIT_XOR, 1) \
262 V(UNARY_MINUS, 0) \
263 V(BIT_NOT, 0) \
262 V(SHL, 1) \ 264 V(SHL, 1) \
263 V(SAR, 1) \ 265 V(SAR, 1) \
264 V(SHR, 1) \ 266 V(SHR, 1) \
265 V(DELETE, 2) \ 267 V(DELETE, 2) \
266 V(IN, 1) \ 268 V(IN, 1) \
267 V(INSTANCE_OF, 1) \ 269 V(INSTANCE_OF, 1) \
268 V(FILTER_KEY, 1) \ 270 V(FILTER_KEY, 1) \
269 V(CALL_NON_FUNCTION, 0) \ 271 V(CALL_NON_FUNCTION, 0) \
270 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ 272 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \
271 V(CALL_FUNCTION_PROXY, 1) \ 273 V(CALL_FUNCTION_PROXY, 1) \
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 411
410 friend class BuiltinFunctionTable; 412 friend class BuiltinFunctionTable;
411 friend class Isolate; 413 friend class Isolate;
412 414
413 DISALLOW_COPY_AND_ASSIGN(Builtins); 415 DISALLOW_COPY_AND_ASSIGN(Builtins);
414 }; 416 };
415 417
416 } } // namespace v8::internal 418 } } // namespace v8::internal
417 419
418 #endif // V8_BUILTINS_H_ 420 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698