| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 F(NumberAdd, 2, 1) \ | 121 F(NumberAdd, 2, 1) \ |
| 122 F(NumberSub, 2, 1) \ | 122 F(NumberSub, 2, 1) \ |
| 123 F(NumberMul, 2, 1) \ | 123 F(NumberMul, 2, 1) \ |
| 124 F(NumberDiv, 2, 1) \ | 124 F(NumberDiv, 2, 1) \ |
| 125 F(NumberMod, 2, 1) \ | 125 F(NumberMod, 2, 1) \ |
| 126 F(NumberUnaryMinus, 1, 1) \ | 126 F(NumberUnaryMinus, 1, 1) \ |
| 127 F(NumberAlloc, 0, 1) \ | 127 F(NumberAlloc, 0, 1) \ |
| 128 \ | 128 \ |
| 129 F(StringAdd, 2, 1) \ | 129 F(StringAdd, 2, 1) \ |
| 130 F(StringBuilderConcat, 3, 1) \ | 130 F(StringBuilderConcat, 3, 1) \ |
| 131 F(StringBuilderJoin, 3, 1) \ |
| 131 \ | 132 \ |
| 132 /* Bit operations */ \ | 133 /* Bit operations */ \ |
| 133 F(NumberOr, 2, 1) \ | 134 F(NumberOr, 2, 1) \ |
| 134 F(NumberAnd, 2, 1) \ | 135 F(NumberAnd, 2, 1) \ |
| 135 F(NumberXor, 2, 1) \ | 136 F(NumberXor, 2, 1) \ |
| 136 F(NumberNot, 1, 1) \ | 137 F(NumberNot, 1, 1) \ |
| 137 \ | 138 \ |
| 138 F(NumberShl, 2, 1) \ | 139 F(NumberShl, 2, 1) \ |
| 139 F(NumberShr, 2, 1) \ | 140 F(NumberShr, 2, 1) \ |
| 140 F(NumberSar, 2, 1) \ | 141 F(NumberSar, 2, 1) \ |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 int position); | 558 int position); |
| 558 | 559 |
| 559 // Helper functions used stubs. | 560 // Helper functions used stubs. |
| 560 static void PerformGC(Object* result); | 561 static void PerformGC(Object* result); |
| 561 }; | 562 }; |
| 562 | 563 |
| 563 | 564 |
| 564 } } // namespace v8::internal | 565 } } // namespace v8::internal |
| 565 | 566 |
| 566 #endif // V8_RUNTIME_H_ | 567 #endif // V8_RUNTIME_H_ |
| OLD | NEW |