| OLD | NEW |
| 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 Loading... |
| 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(BIT_NOT, 0) \ |
| 264 V(SHL, 1) \ | 263 V(SHL, 1) \ |
| 265 V(SAR, 1) \ | 264 V(SAR, 1) \ |
| 266 V(SHR, 1) \ | 265 V(SHR, 1) \ |
| 267 V(DELETE, 2) \ | 266 V(DELETE, 2) \ |
| 268 V(IN, 1) \ | 267 V(IN, 1) \ |
| 269 V(INSTANCE_OF, 1) \ | 268 V(INSTANCE_OF, 1) \ |
| 270 V(FILTER_KEY, 1) \ | 269 V(FILTER_KEY, 1) \ |
| 271 V(CALL_NON_FUNCTION, 0) \ | 270 V(CALL_NON_FUNCTION, 0) \ |
| 272 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ | 271 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 | 410 |
| 412 friend class BuiltinFunctionTable; | 411 friend class BuiltinFunctionTable; |
| 413 friend class Isolate; | 412 friend class Isolate; |
| 414 | 413 |
| 415 DISALLOW_COPY_AND_ASSIGN(Builtins); | 414 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 416 }; | 415 }; |
| 417 | 416 |
| 418 } } // namespace v8::internal | 417 } } // namespace v8::internal |
| 419 | 418 |
| 420 #endif // V8_BUILTINS_H_ | 419 #endif // V8_BUILTINS_H_ |
| OLD | NEW |