| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 \ | 96 \ |
| 97 /* Arithmetic operations */ \ | 97 /* Arithmetic operations */ \ |
| 98 F(NumberAdd, 2, 1) \ | 98 F(NumberAdd, 2, 1) \ |
| 99 F(NumberSub, 2, 1) \ | 99 F(NumberSub, 2, 1) \ |
| 100 F(NumberMul, 2, 1) \ | 100 F(NumberMul, 2, 1) \ |
| 101 F(NumberDiv, 2, 1) \ | 101 F(NumberDiv, 2, 1) \ |
| 102 F(NumberMod, 2, 1) \ | 102 F(NumberMod, 2, 1) \ |
| 103 F(NumberUnaryMinus, 1, 1) \ | 103 F(NumberUnaryMinus, 1, 1) \ |
| 104 \ | 104 \ |
| 105 F(StringAdd, 2, 1) \ | 105 F(StringAdd, 2, 1) \ |
| 106 F(StringBuilderConcat, 2, 1) \ | 106 F(StringBuilderConcat, 3, 1) \ |
| 107 \ | 107 \ |
| 108 /* Bit operations */ \ | 108 /* Bit operations */ \ |
| 109 F(NumberOr, 2, 1) \ | 109 F(NumberOr, 2, 1) \ |
| 110 F(NumberAnd, 2, 1) \ | 110 F(NumberAnd, 2, 1) \ |
| 111 F(NumberXor, 2, 1) \ | 111 F(NumberXor, 2, 1) \ |
| 112 F(NumberNot, 1, 1) \ | 112 F(NumberNot, 1, 1) \ |
| 113 \ | 113 \ |
| 114 F(NumberShl, 2, 1) \ | 114 F(NumberShl, 2, 1) \ |
| 115 F(NumberShr, 2, 1) \ | 115 F(NumberShr, 2, 1) \ |
| 116 F(NumberSar, 2, 1) \ | 116 F(NumberSar, 2, 1) \ |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 int position); | 420 int position); |
| 421 | 421 |
| 422 // Helper functions used stubs. | 422 // Helper functions used stubs. |
| 423 static void PerformGC(Object* result); | 423 static void PerformGC(Object* result); |
| 424 }; | 424 }; |
| 425 | 425 |
| 426 | 426 |
| 427 } } // namespace v8::internal | 427 } } // namespace v8::internal |
| 428 | 428 |
| 429 #endif // V8_RUNTIME_H_ | 429 #endif // V8_RUNTIME_H_ |
| OLD | NEW |