Commit 8a8a2487 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Fix 3 places where we were doing retry after GC without using the macros that

were defined for that purpose.
Review URL: http://codereview.chromium.org/8734

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@650 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 52b2a126
...@@ -642,13 +642,12 @@ void Builtins::Setup(bool create_heap_objects) { ...@@ -642,13 +642,12 @@ void Builtins::Setup(bool create_heap_objects) {
CodeDesc desc; CodeDesc desc;
masm.GetCode(&desc); masm.GetCode(&desc);
Code::Flags flags = functions[i].flags; Code::Flags flags = functions[i].flags;
Object* code = Heap::CreateCode(desc, NULL, flags); Object* code;
if (code->IsFailure()) { {
if (code->IsRetryAfterGC()) { // During startup it's OK to always allocate and defer GC to later.
CHECK(Heap::CollectGarbage(Failure::cast(code)->requested(), // This simplifies things because we don't need to retry.
Failure::cast(code)->allocation_space())); AlwaysAllocateScope __scope__;
code = Heap::CreateCode(desc, NULL, flags); code = Heap::CreateCode(desc, NULL, flags);
}
if (code->IsFailure()) { if (code->IsFailure()) {
v8::internal::V8::FatalProcessOutOfMemory("CreateCode"); v8::internal::V8::FatalProcessOutOfMemory("CreateCode");
} }
......
...@@ -452,6 +452,7 @@ Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name, ...@@ -452,6 +452,7 @@ Handle<JSFunction> Factory::NewFunctionWithPrototype(Handle<String> name,
return function; return function;
} }
Handle<Code> Factory::NewCode(const CodeDesc& desc, ScopeInfo<>* sinfo, Handle<Code> Factory::NewCode(const CodeDesc& desc, ScopeInfo<>* sinfo,
Code::Flags flags) { Code::Flags flags) {
CALL_HEAP_FUNCTION(Heap::CreateCode(desc, sinfo, flags), Code); CALL_HEAP_FUNCTION(Heap::CreateCode(desc, sinfo, flags), Code);
...@@ -463,42 +464,26 @@ Handle<Code> Factory::CopyCode(Handle<Code> code) { ...@@ -463,42 +464,26 @@ Handle<Code> Factory::CopyCode(Handle<Code> code) {
} }
#define CALL_GC(RETRY) \ static inline Object* DoCopyInsert(DescriptorArray* array,
do { \ String* key,
if (!Heap::CollectGarbage(Failure::cast(RETRY)->requested(), \ Object* value,
Failure::cast(RETRY)->allocation_space())) { \ PropertyAttributes attributes) {
/* TODO(1181417): Fix this. */ \ CallbacksDescriptor desc(key, value, attributes);
V8::FatalProcessOutOfMemory("Factory CALL_GC"); \ Object* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
} \ return obj;
} while (false) }
// Allocate the new array. We cannot use the CALL_HEAP_FUNCTION macro here, // Allocate the new array.
// because the stack-allocated CallbacksDescriptor instance is not GC safe.
Handle<DescriptorArray> Factory::CopyAppendProxyDescriptor( Handle<DescriptorArray> Factory::CopyAppendProxyDescriptor(
Handle<DescriptorArray> array, Handle<DescriptorArray> array,
Handle<String> key, Handle<String> key,
Handle<Object> value, Handle<Object> value,
PropertyAttributes attributes) { PropertyAttributes attributes) {
GC_GREEDY_CHECK(); CALL_HEAP_FUNCTION(DoCopyInsert(*array, *key, *value, attributes),
CallbacksDescriptor desc(*key, *value, attributes); DescriptorArray);
Object* obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
if (obj->IsFailure()) {
if (obj->IsRetryAfterGC()) {
CALL_GC(obj);
CallbacksDescriptor desc(*key, *value, attributes);
obj = array->CopyInsert(&desc, REMOVE_TRANSITIONS);
}
if (obj->IsFailure()) {
// TODO(1181417): Fix this.
V8::FatalProcessOutOfMemory("CopyAppendProxyDescriptor");
}
}
return Handle<DescriptorArray>(DescriptorArray::cast(obj));
} }
#undef CALL_GC
Handle<String> Factory::SymbolFromString(Handle<String> value) { Handle<String> Factory::SymbolFromString(Handle<String> value) {
CALL_HEAP_FUNCTION(Heap::LookupSymbol(*value), String); CALL_HEAP_FUNCTION(Heap::LookupSymbol(*value), String);
......
...@@ -307,15 +307,55 @@ Handle<Object> RegExpImpl::AtomExecGlobal(Handle<JSRegExp> re, ...@@ -307,15 +307,55 @@ Handle<Object> RegExpImpl::AtomExecGlobal(Handle<JSRegExp> re,
} }
Handle<Object> RegExpImpl::JsreCompile(Handle<JSRegExp> re, static inline Object* DoCompile(String* pattern,
Handle<String> pattern, JSRegExp::Flags flags,
JSRegExp::Flags flags) { unsigned* number_of_captures,
const char** error_message,
JscreRegExp** code) {
JSRegExpIgnoreCaseOption case_option = flags.is_ignore_case() JSRegExpIgnoreCaseOption case_option = flags.is_ignore_case()
? JSRegExpIgnoreCase ? JSRegExpIgnoreCase
: JSRegExpDoNotIgnoreCase; : JSRegExpDoNotIgnoreCase;
JSRegExpMultilineOption multiline_option = flags.is_multiline() JSRegExpMultilineOption multiline_option = flags.is_multiline()
? JSRegExpMultiline ? JSRegExpMultiline
: JSRegExpSingleLine; : JSRegExpSingleLine;
*error_message = NULL;
malloc_failure = Failure::Exception();
*code = jsRegExpCompile(pattern->GetTwoByteData(),
pattern->length(),
case_option,
multiline_option,
number_of_captures,
error_message,
&JSREMalloc,
&JSREFree);
if (code == NULL && (malloc_failure->IsRetryAfterGC() ||
malloc_failure->IsOutOfMemoryFailure())) {
return malloc_failure;
} else {
// It doesn't matter which object we return here, we just need to return
// a non-failure to indicate to the GC-retry code that there was no
// allocation failure.
return pattern;
}
}
void CompileWithRetryAfterGC(Handle<String> pattern,
JSRegExp::Flags flags,
unsigned* number_of_captures,
const char** error_message,
JscreRegExp** code) {
CALL_HEAP_FUNCTION_VOID(DoCompile(*pattern,
flags,
number_of_captures,
error_message,
code));
}
Handle<Object> RegExpImpl::JsreCompile(Handle<JSRegExp> re,
Handle<String> pattern,
JSRegExp::Flags flags) {
Handle<String> two_byte_pattern = StringToTwoByte(pattern); Handle<String> two_byte_pattern = StringToTwoByte(pattern);
...@@ -325,52 +365,33 @@ Handle<Object> RegExpImpl::JsreCompile(Handle<JSRegExp> re, ...@@ -325,52 +365,33 @@ Handle<Object> RegExpImpl::JsreCompile(Handle<JSRegExp> re,
JscreRegExp* code = NULL; JscreRegExp* code = NULL;
FlattenString(pattern); FlattenString(pattern);
bool first_time = true; CompileWithRetryAfterGC(two_byte_pattern,
flags,
&number_of_captures,
&error_message,
&code);
while (true) { if (code == NULL) {
malloc_failure = Failure::Exception(); // Throw an exception.
code = jsRegExpCompile(two_byte_pattern->GetTwoByteData(), Handle<JSArray> array = Factory::NewJSArray(2);
pattern->length(), case_option, SetElement(array, 0, pattern);
multiline_option, &number_of_captures, SetElement(array, 1, Factory::NewStringFromUtf8(CStrVector(
&error_message, &JSREMalloc, &JSREFree); (error_message == NULL) ? "Unknown regexp error" : error_message)));
if (code == NULL) { Handle<Object> regexp_err =
if (first_time && malloc_failure->IsRetryAfterGC()) { Factory::NewSyntaxError("malformed_regexp", array);
first_time = false; return Handle<Object>(Top::Throw(*regexp_err));
if (!Heap::CollectGarbage(malloc_failure->requested(), }
malloc_failure->allocation_space())) {
// TODO(1181417): Fix this.
V8::FatalProcessOutOfMemory("RegExpImpl::JsreCompile");
}
continue;
}
if (malloc_failure->IsRetryAfterGC() ||
malloc_failure->IsOutOfMemoryFailure()) {
// TODO(1181417): Fix this.
V8::FatalProcessOutOfMemory("RegExpImpl::JsreCompile");
} else {
// Throw an exception.
Handle<JSArray> array = Factory::NewJSArray(2);
SetElement(array, 0, pattern);
SetElement(array, 1, Factory::NewStringFromUtf8(CStrVector(
(error_message == NULL) ? "Unknown regexp error" : error_message)));
Handle<Object> regexp_err =
Factory::NewSyntaxError("malformed_regexp", array);
return Handle<Object>(Top::Throw(*regexp_err));
}
}
ASSERT(code != NULL); // Convert the return address to a ByteArray pointer.
// Convert the return address to a ByteArray pointer. Handle<ByteArray> internal(
Handle<ByteArray> internal( ByteArray::FromDataStartAddress(reinterpret_cast<Address>(code)));
ByteArray::FromDataStartAddress(reinterpret_cast<Address>(code)));
Handle<FixedArray> value = Factory::NewFixedArray(2); Handle<FixedArray> value = Factory::NewFixedArray(2);
value->set(CAPTURE_INDEX, Smi::FromInt(number_of_captures)); value->set(CAPTURE_INDEX, Smi::FromInt(number_of_captures));
value->set(INTERNAL_INDEX, *internal); value->set(INTERNAL_INDEX, *internal);
Factory::SetRegExpData(re, JSRegExp::JSCRE, pattern, flags, value); Factory::SetRegExpData(re, JSRegExp::JSCRE, pattern, flags, value);
return re; return re;
}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment