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 2988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2999 EmitHelper(data); | 2999 EmitHelper(data); |
3000 } | 3000 } |
3001 | 3001 |
3002 | 3002 |
3003 void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) { | 3003 void Assembler::RecordRelocInfo(RelocInfo::Mode rmode, intptr_t data) { |
3004 // We do not try to reuse pool constants. | 3004 // We do not try to reuse pool constants. |
3005 RelocInfo rinfo(isolate(), pc_, rmode, data, NULL); | 3005 RelocInfo rinfo(isolate(), pc_, rmode, data, NULL); |
3006 if (rmode >= RelocInfo::COMMENT && | 3006 if (rmode >= RelocInfo::COMMENT && |
3007 rmode <= RelocInfo::DEBUG_BREAK_SLOT_AT_TAIL_CALL) { | 3007 rmode <= RelocInfo::DEBUG_BREAK_SLOT_AT_TAIL_CALL) { |
3008 // Adjust code for new modes. | 3008 // Adjust code for new modes. |
3009 DCHECK(RelocInfo::IsDebugBreakSlot(rmode) | 3009 DCHECK(RelocInfo::IsDebugBreakSlot(rmode) || RelocInfo::IsComment(rmode)); |
3010 || RelocInfo::IsComment(rmode) | |
3011 || RelocInfo::IsPosition(rmode)); | |
3012 // These modes do not need an entry in the constant pool. | 3010 // These modes do not need an entry in the constant pool. |
3013 } | 3011 } |
3014 if (!RelocInfo::IsNone(rinfo.rmode())) { | 3012 if (!RelocInfo::IsNone(rinfo.rmode())) { |
3015 // Don't record external references unless the heap will be serialized. | 3013 // Don't record external references unless the heap will be serialized. |
3016 if (rmode == RelocInfo::EXTERNAL_REFERENCE && | 3014 if (rmode == RelocInfo::EXTERNAL_REFERENCE && |
3017 !serializer_enabled() && !emit_debug_code()) { | 3015 !serializer_enabled() && !emit_debug_code()) { |
3018 return; | 3016 return; |
3019 } | 3017 } |
3020 DCHECK(buffer_space() >= kMaxRelocSize); // Too late to grow buffer here. | 3018 DCHECK(buffer_space() >= kMaxRelocSize); // Too late to grow buffer here. |
3021 if (rmode == RelocInfo::CODE_TARGET_WITH_ID) { | 3019 if (rmode == RelocInfo::CODE_TARGET_WITH_ID) { |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3190 | 3188 |
3191 if (icache_flush_mode != SKIP_ICACHE_FLUSH) { | 3189 if (icache_flush_mode != SKIP_ICACHE_FLUSH) { |
3192 Assembler::FlushICache(isolate, pc, 2 * sizeof(int32_t)); | 3190 Assembler::FlushICache(isolate, pc, 2 * sizeof(int32_t)); |
3193 } | 3191 } |
3194 } | 3192 } |
3195 | 3193 |
3196 } // namespace internal | 3194 } // namespace internal |
3197 } // namespace v8 | 3195 } // namespace v8 |
3198 | 3196 |
3199 #endif // V8_TARGET_ARCH_MIPS | 3197 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |