| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 V(SHR, 1) \ | 117 V(SHR, 1) \ |
| 118 V(DELETE, 1) \ | 118 V(DELETE, 1) \ |
| 119 V(IN, 1) \ | 119 V(IN, 1) \ |
| 120 V(INSTANCE_OF, 1) \ | 120 V(INSTANCE_OF, 1) \ |
| 121 V(GET_KEYS, 0) \ | 121 V(GET_KEYS, 0) \ |
| 122 V(FILTER_KEY, 1) \ | 122 V(FILTER_KEY, 1) \ |
| 123 V(CALL_NON_FUNCTION, 0) \ | 123 V(CALL_NON_FUNCTION, 0) \ |
| 124 V(TO_OBJECT, 0) \ | 124 V(TO_OBJECT, 0) \ |
| 125 V(TO_NUMBER, 0) \ | 125 V(TO_NUMBER, 0) \ |
| 126 V(TO_STRING, 0) \ | 126 V(TO_STRING, 0) \ |
| 127 V(STRING_ADD_LEFT, 1) \ |
| 128 V(STRING_ADD_RIGHT, 1) \ |
| 127 V(APPLY_PREPARE, 1) \ | 129 V(APPLY_PREPARE, 1) \ |
| 128 V(APPLY_OVERFLOW, 1) | 130 V(APPLY_OVERFLOW, 1) |
| 129 | 131 |
| 130 | 132 |
| 131 class ObjectVisitor; | 133 class ObjectVisitor; |
| 132 | 134 |
| 133 | 135 |
| 134 class Builtins : public AllStatic { | 136 class Builtins : public AllStatic { |
| 135 public: | 137 public: |
| 136 // Generate all builtin code objects. Should be called once during | 138 // Generate all builtin code objects. Should be called once during |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); | 210 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); |
| 209 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); | 211 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); |
| 210 | 212 |
| 211 static void Generate_FunctionCall(MacroAssembler* masm); | 213 static void Generate_FunctionCall(MacroAssembler* masm); |
| 212 static void Generate_FunctionApply(MacroAssembler* masm); | 214 static void Generate_FunctionApply(MacroAssembler* masm); |
| 213 }; | 215 }; |
| 214 | 216 |
| 215 } } // namespace v8::internal | 217 } } // namespace v8::internal |
| 216 | 218 |
| 217 #endif // V8_BUILTINS_H_ | 219 #endif // V8_BUILTINS_H_ |
| OLD | NEW |