OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 } else if (rmode_ == EXTERNAL_REFERENCE) { | 819 } else if (rmode_ == EXTERNAL_REFERENCE) { |
820 ExternalReferenceEncoder ref_encoder(isolate); | 820 ExternalReferenceEncoder ref_encoder(isolate); |
821 PrintF(out, " (%s) (%p)", | 821 PrintF(out, " (%s) (%p)", |
822 ref_encoder.NameOfAddress(*target_reference_address()), | 822 ref_encoder.NameOfAddress(*target_reference_address()), |
823 *target_reference_address()); | 823 *target_reference_address()); |
824 } else if (IsCodeTarget(rmode_)) { | 824 } else if (IsCodeTarget(rmode_)) { |
825 Code* code = Code::GetCodeFromTargetAddress(target_address()); | 825 Code* code = Code::GetCodeFromTargetAddress(target_address()); |
826 PrintF(out, " (%s) (%p)", Code::Kind2String(code->kind()), | 826 PrintF(out, " (%s) (%p)", Code::Kind2String(code->kind()), |
827 target_address()); | 827 target_address()); |
828 if (rmode_ == CODE_TARGET_WITH_ID) { | 828 if (rmode_ == CODE_TARGET_WITH_ID) { |
829 PrintF(" (id=%d)", static_cast<int>(data_)); | 829 PrintF(out, " (id=%d)", static_cast<int>(data_)); |
830 } | 830 } |
831 } else if (IsPosition(rmode_)) { | 831 } else if (IsPosition(rmode_)) { |
832 PrintF(out, " (%" V8_PTR_PREFIX "d)", data()); | 832 PrintF(out, " (%" V8_PTR_PREFIX "d)", data()); |
833 } else if (IsRuntimeEntry(rmode_) && | 833 } else if (IsRuntimeEntry(rmode_) && |
834 isolate->deoptimizer_data() != NULL) { | 834 isolate->deoptimizer_data() != NULL) { |
835 // Depotimization bailouts are stored as runtime entries. | 835 // Depotimization bailouts are stored as runtime entries. |
836 int id = Deoptimizer::GetDeoptimizationId( | 836 int id = Deoptimizer::GetDeoptimizationId( |
837 isolate, target_address(), Deoptimizer::EAGER); | 837 isolate, target_address(), Deoptimizer::EAGER); |
838 if (id != Deoptimizer::kNotDeoptimizationEntry) { | 838 if (id != Deoptimizer::kNotDeoptimizationEntry) { |
839 PrintF(out, " (deoptimization bailout %d)", id); | 839 PrintF(out, " (deoptimization bailout %d)", id); |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1711 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); | 1711 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); |
1712 state_.written_position = state_.current_position; | 1712 state_.written_position = state_.current_position; |
1713 written = true; | 1713 written = true; |
1714 } | 1714 } |
1715 | 1715 |
1716 // Return whether something was written. | 1716 // Return whether something was written. |
1717 return written; | 1717 return written; |
1718 } | 1718 } |
1719 | 1719 |
1720 } } // namespace v8::internal | 1720 } } // namespace v8::internal |
OLD | NEW |