| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 } | 639 } |
| 640 | 640 |
| 641 | 641 |
| 642 const char* TypeRecordingUnaryOpStub::GetName() { | 642 const char* TypeRecordingUnaryOpStub::GetName() { |
| 643 if (name_ != NULL) return name_; | 643 if (name_ != NULL) return name_; |
| 644 const int kMaxNameLength = 100; | 644 const int kMaxNameLength = 100; |
| 645 name_ = Isolate::Current()->bootstrapper()->AllocateAutoDeletedArray( | 645 name_ = Isolate::Current()->bootstrapper()->AllocateAutoDeletedArray( |
| 646 kMaxNameLength); | 646 kMaxNameLength); |
| 647 if (name_ == NULL) return "OOM"; | 647 if (name_ == NULL) return "OOM"; |
| 648 const char* op_name = Token::Name(op_); | 648 const char* op_name = Token::Name(op_); |
| 649 const char* overwrite_name; | 649 const char* overwrite_name = NULL; // Make g++ happy. |
| 650 switch (mode_) { | 650 switch (mode_) { |
| 651 case UNARY_NO_OVERWRITE: overwrite_name = "Alloc"; break; | 651 case UNARY_NO_OVERWRITE: overwrite_name = "Alloc"; break; |
| 652 case UNARY_OVERWRITE: overwrite_name = "Overwrite"; break; | 652 case UNARY_OVERWRITE: overwrite_name = "Overwrite"; break; |
| 653 } | 653 } |
| 654 | 654 |
| 655 OS::SNPrintF(Vector<char>(name_, kMaxNameLength), | 655 OS::SNPrintF(Vector<char>(name_, kMaxNameLength), |
| 656 "TypeRecordingUnaryOpStub_%s_%s_%s", | 656 "TypeRecordingUnaryOpStub_%s_%s_%s", |
| 657 op_name, | 657 op_name, |
| 658 overwrite_name, | 658 overwrite_name, |
| 659 TRUnaryOpIC::GetName(operand_type_)); | 659 TRUnaryOpIC::GetName(operand_type_)); |
| (...skipping 4155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4815 // Do a tail call to the rewritten stub. | 4815 // Do a tail call to the rewritten stub. |
| 4816 __ jmp(rdi); | 4816 __ jmp(rdi); |
| 4817 } | 4817 } |
| 4818 | 4818 |
| 4819 | 4819 |
| 4820 #undef __ | 4820 #undef __ |
| 4821 | 4821 |
| 4822 } } // namespace v8::internal | 4822 } } // namespace v8::internal |
| 4823 | 4823 |
| 4824 #endif // V8_TARGET_ARCH_X64 | 4824 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |