| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 192 |
| 193 { Comment cmnt(masm_, "[ return <undefined>;"); | 193 { Comment cmnt(masm_, "[ return <undefined>;"); |
| 194 // Emit a 'return undefined' in case control fell off the end of the body. | 194 // Emit a 'return undefined' in case control fell off the end of the body. |
| 195 __ LoadRoot(rax, Heap::kUndefinedValueRootIndex); | 195 __ LoadRoot(rax, Heap::kUndefinedValueRootIndex); |
| 196 EmitReturnSequence(); | 196 EmitReturnSequence(); |
| 197 } | 197 } |
| 198 } | 198 } |
| 199 | 199 |
| 200 | 200 |
| 201 void FullCodeGenerator::ClearAccumulator() { | 201 void FullCodeGenerator::ClearAccumulator() { |
| 202 __ xor(rax, rax); | 202 __ xor_(rax, rax); |
| 203 } | 203 } |
| 204 | 204 |
| 205 | 205 |
| 206 void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt) { | 206 void FullCodeGenerator::EmitStackCheck(IterationStatement* stmt) { |
| 207 Comment cmnt(masm_, "[ Stack check"); | 207 Comment cmnt(masm_, "[ Stack check"); |
| 208 NearLabel ok; | 208 NearLabel ok; |
| 209 __ CompareRoot(rsp, Heap::kStackLimitRootIndex); | 209 __ CompareRoot(rsp, Heap::kStackLimitRootIndex); |
| 210 __ j(above_equal, &ok); | 210 __ j(above_equal, &ok); |
| 211 StackCheckStub stub; | 211 StackCheckStub stub; |
| 212 __ CallStub(&stub); | 212 __ CallStub(&stub); |
| (...skipping 3308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3521 __ ret(0); | 3521 __ ret(0); |
| 3522 } | 3522 } |
| 3523 | 3523 |
| 3524 | 3524 |
| 3525 #undef __ | 3525 #undef __ |
| 3526 | 3526 |
| 3527 | 3527 |
| 3528 } } // namespace v8::internal | 3528 } } // namespace v8::internal |
| 3529 | 3529 |
| 3530 #endif // V8_TARGET_ARCH_X64 | 3530 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |