| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 int known_int); | 65 int known_int); |
| 66 static bool IsEasyToMultiplyBy(int x); | 66 static bool IsEasyToMultiplyBy(int x); |
| 67 | 67 |
| 68 | 68 |
| 69 #define __ ACCESS_MASM(masm_) | 69 #define __ ACCESS_MASM(masm_) |
| 70 | 70 |
| 71 // ------------------------------------------------------------------------- | 71 // ------------------------------------------------------------------------- |
| 72 // Platform-specific DeferredCode functions. | 72 // Platform-specific DeferredCode functions. |
| 73 | 73 |
| 74 void DeferredCode::SaveRegisters() { | 74 void DeferredCode::SaveRegisters() { |
| 75 // On ARM you either have a completely spilled frame or you | 75 // On ARM you either have a completely spilled frame or you |
| 76 // handle it yourself, but at the moment there's no automation | 76 // handle it yourself, but at the moment there's no automation |
| 77 // of registers and deferred code. | 77 // of registers and deferred code. |
| 78 } | 78 } |
| 79 | 79 |
| 80 | 80 |
| 81 void DeferredCode::RestoreRegisters() { | 81 void DeferredCode::RestoreRegisters() { |
| 82 } | 82 } |
| 83 | 83 |
| 84 | 84 |
| 85 // ------------------------------------------------------------------------- | 85 // ------------------------------------------------------------------------- |
| (...skipping 10184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10270 __ bind(&string_add_runtime); | 10270 __ bind(&string_add_runtime); |
| 10271 __ TailCallRuntime(Runtime::kStringAdd, 2, 1); | 10271 __ TailCallRuntime(Runtime::kStringAdd, 2, 1); |
| 10272 } | 10272 } |
| 10273 | 10273 |
| 10274 | 10274 |
| 10275 #undef __ | 10275 #undef __ |
| 10276 | 10276 |
| 10277 } } // namespace v8::internal | 10277 } } // namespace v8::internal |
| 10278 | 10278 |
| 10279 #endif // V8_TARGET_ARCH_ARM | 10279 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |