Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: src/heap.cc

Issue 23480031: Enable preaging of code objects when --optimize-for-size. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Add missing ia32 lithium codegen. Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 4075 matching lines...) Expand 10 before | Expand all | Expand 10 after
4086 reinterpret_cast<ExternalArray*>(result)->set_external_pointer( 4086 reinterpret_cast<ExternalArray*>(result)->set_external_pointer(
4087 external_pointer); 4087 external_pointer);
4088 4088
4089 return result; 4089 return result;
4090 } 4090 }
4091 4091
4092 4092
4093 MaybeObject* Heap::CreateCode(const CodeDesc& desc, 4093 MaybeObject* Heap::CreateCode(const CodeDesc& desc,
4094 Code::Flags flags, 4094 Code::Flags flags,
4095 Handle<Object> self_reference, 4095 Handle<Object> self_reference,
4096 int prologue_offset,
4096 bool immovable, 4097 bool immovable,
4097 bool crankshafted) { 4098 bool crankshafted) {
4098 // Allocate ByteArray before the Code object, so that we do not risk 4099 // Allocate ByteArray before the Code object, so that we do not risk
4099 // leaving uninitialized Code object (and breaking the heap). 4100 // leaving uninitialized Code object (and breaking the heap).
4100 ByteArray* reloc_info; 4101 ByteArray* reloc_info;
4101 MaybeObject* maybe_reloc_info = AllocateByteArray(desc.reloc_size, TENURED); 4102 MaybeObject* maybe_reloc_info = AllocateByteArray(desc.reloc_size, TENURED);
4102 if (!maybe_reloc_info->To(&reloc_info)) return maybe_reloc_info; 4103 if (!maybe_reloc_info->To(&reloc_info)) return maybe_reloc_info;
4103 4104
4104 // Compute size. 4105 // Compute size.
4105 int body_size = RoundUp(desc.instr_size, kObjectAlignment); 4106 int body_size = RoundUp(desc.instr_size, kObjectAlignment);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
4137 code->set_flags(flags); 4138 code->set_flags(flags);
4138 if (code->is_call_stub() || code->is_keyed_call_stub()) { 4139 if (code->is_call_stub() || code->is_keyed_call_stub()) {
4139 code->set_check_type(RECEIVER_MAP_CHECK); 4140 code->set_check_type(RECEIVER_MAP_CHECK);
4140 } 4141 }
4141 code->set_is_crankshafted(crankshafted); 4142 code->set_is_crankshafted(crankshafted);
4142 code->set_deoptimization_data(empty_fixed_array(), SKIP_WRITE_BARRIER); 4143 code->set_deoptimization_data(empty_fixed_array(), SKIP_WRITE_BARRIER);
4143 code->InitializeTypeFeedbackInfoNoWriteBarrier(undefined_value()); 4144 code->InitializeTypeFeedbackInfoNoWriteBarrier(undefined_value());
4144 code->set_handler_table(empty_fixed_array(), SKIP_WRITE_BARRIER); 4145 code->set_handler_table(empty_fixed_array(), SKIP_WRITE_BARRIER);
4145 code->set_gc_metadata(Smi::FromInt(0)); 4146 code->set_gc_metadata(Smi::FromInt(0));
4146 code->set_ic_age(global_ic_age_); 4147 code->set_ic_age(global_ic_age_);
4147 code->set_prologue_offset(kPrologueOffsetNotSet); 4148 code->set_prologue_offset(prologue_offset);
4148 if (code->kind() == Code::OPTIMIZED_FUNCTION) { 4149 if (code->kind() == Code::OPTIMIZED_FUNCTION) {
4149 code->set_marked_for_deoptimization(false); 4150 code->set_marked_for_deoptimization(false);
4150 } 4151 }
4152
4153 #ifdef ENABLE_DEBUGGER_SUPPORT
4154 if (code->kind() == Code::FUNCTION) {
4155 code->set_has_debug_break_slots(
4156 isolate_->debugger()->IsDebuggerActive());
4157 }
4158 #endif
4159
4151 // Allow self references to created code object by patching the handle to 4160 // Allow self references to created code object by patching the handle to
4152 // point to the newly allocated Code object. 4161 // point to the newly allocated Code object.
4153 if (!self_reference.is_null()) { 4162 if (!self_reference.is_null()) {
4154 *(self_reference.location()) = code; 4163 *(self_reference.location()) = code;
4155 } 4164 }
4156 // Migrate generated code. 4165 // Migrate generated code.
4157 // The generated code can contain Object** values (typically from handles) 4166 // The generated code can contain Object** values (typically from handles)
4158 // that are dereferenced during the copy to point directly to the actual heap 4167 // that are dereferenced during the copy to point directly to the actual heap
4159 // objects. These pointers can include references to the code object itself, 4168 // objects. These pointers can include references to the code object itself,
4160 // through the self_reference parameter. 4169 // through the self_reference parameter.
(...skipping 3704 matching lines...) Expand 10 before | Expand all | Expand 10 after
7865 if (FLAG_concurrent_recompilation) { 7874 if (FLAG_concurrent_recompilation) {
7866 heap_->relocation_mutex_->Lock(); 7875 heap_->relocation_mutex_->Lock();
7867 #ifdef DEBUG 7876 #ifdef DEBUG
7868 heap_->relocation_mutex_locked_by_optimizer_thread_ = 7877 heap_->relocation_mutex_locked_by_optimizer_thread_ =
7869 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); 7878 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread();
7870 #endif // DEBUG 7879 #endif // DEBUG
7871 } 7880 }
7872 } 7881 }
7873 7882
7874 } } // namespace v8::internal 7883 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap.h ('k') | src/ia32/assembler-ia32.cc » ('j') | src/ia32/full-codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698