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

Side by Side Diff: src/builtins.h

Issue 22184004: Desugar bitwise negation into XOR and kill all UnaryOp stuff. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. Feedback. 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
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(BIT_NOT, 0) \
263 V(SHL, 1) \ 262 V(SHL, 1) \
264 V(SAR, 1) \ 263 V(SAR, 1) \
265 V(SHR, 1) \ 264 V(SHR, 1) \
266 V(DELETE, 2) \ 265 V(DELETE, 2) \
267 V(IN, 1) \ 266 V(IN, 1) \
268 V(INSTANCE_OF, 1) \ 267 V(INSTANCE_OF, 1) \
269 V(FILTER_KEY, 1) \ 268 V(FILTER_KEY, 1) \
270 V(CALL_NON_FUNCTION, 0) \ 269 V(CALL_NON_FUNCTION, 0) \
271 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ 270 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \
272 V(CALL_FUNCTION_PROXY, 1) \ 271 V(CALL_FUNCTION_PROXY, 1) \
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 409
411 friend class BuiltinFunctionTable; 410 friend class BuiltinFunctionTable;
412 friend class Isolate; 411 friend class Isolate;
413 412
414 DISALLOW_COPY_AND_ASSIGN(Builtins); 413 DISALLOW_COPY_AND_ASSIGN(Builtins);
415 }; 414 };
416 415
417 } } // namespace v8::internal 416 } } // namespace v8::internal
418 417
419 #endif // V8_BUILTINS_H_ 418 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/code-stubs.h » ('j') | src/x64/lithium-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698