| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 V(BIT_AND, 1) \ | 231 V(BIT_AND, 1) \ |
| 232 V(BIT_XOR, 1) \ | 232 V(BIT_XOR, 1) \ |
| 233 V(UNARY_MINUS, 0) \ | 233 V(UNARY_MINUS, 0) \ |
| 234 V(BIT_NOT, 0) \ | 234 V(BIT_NOT, 0) \ |
| 235 V(SHL, 1) \ | 235 V(SHL, 1) \ |
| 236 V(SAR, 1) \ | 236 V(SAR, 1) \ |
| 237 V(SHR, 1) \ | 237 V(SHR, 1) \ |
| 238 V(DELETE, 2) \ | 238 V(DELETE, 2) \ |
| 239 V(IN, 1) \ | 239 V(IN, 1) \ |
| 240 V(INSTANCE_OF, 1) \ | 240 V(INSTANCE_OF, 1) \ |
| 241 V(GET_KEYS, 0) \ | |
| 242 V(FILTER_KEY, 1) \ | 241 V(FILTER_KEY, 1) \ |
| 243 V(CALL_NON_FUNCTION, 0) \ | 242 V(CALL_NON_FUNCTION, 0) \ |
| 244 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ | 243 V(CALL_NON_FUNCTION_AS_CONSTRUCTOR, 0) \ |
| 245 V(CALL_FUNCTION_PROXY, 1) \ | 244 V(CALL_FUNCTION_PROXY, 1) \ |
| 246 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ | 245 V(CALL_FUNCTION_PROXY_AS_CONSTRUCTOR, 1) \ |
| 247 V(TO_OBJECT, 0) \ | 246 V(TO_OBJECT, 0) \ |
| 248 V(TO_NUMBER, 0) \ | 247 V(TO_NUMBER, 0) \ |
| 249 V(TO_STRING, 0) \ | 248 V(TO_STRING, 0) \ |
| 250 V(STRING_ADD_LEFT, 1) \ | 249 V(STRING_ADD_LEFT, 1) \ |
| 251 V(STRING_ADD_RIGHT, 1) \ | 250 V(STRING_ADD_RIGHT, 1) \ |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 | 371 |
| 373 friend class BuiltinFunctionTable; | 372 friend class BuiltinFunctionTable; |
| 374 friend class Isolate; | 373 friend class Isolate; |
| 375 | 374 |
| 376 DISALLOW_COPY_AND_ASSIGN(Builtins); | 375 DISALLOW_COPY_AND_ASSIGN(Builtins); |
| 377 }; | 376 }; |
| 378 | 377 |
| 379 } } // namespace v8::internal | 378 } } // namespace v8::internal |
| 380 | 379 |
| 381 #endif // V8_BUILTINS_H_ | 380 #endif // V8_BUILTINS_H_ |
| OLD | NEW |