Use HType::NonPrimitive() for non primitive HConstants.

This allows us to use the faster write barrier, omitting the
smi check when storing constant heap objects.

R=hpayer@chromium.org

Review URL: https://codereview.chromium.org/150303002

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18947 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
bmeurer@chromium.org 2014-01-30 13:32:05 +00:00
parent 5c589640bf
commit fd9eade93a

View File

@ -361,6 +361,10 @@ HType HType::TypeFromValue(Handle<Object> value) {
result = HType::JSObject();
} else if (value->IsJSArray()) {
result = HType::JSArray();
} else if (value->IsHeapObject()) {
// TODO(bmeurer): This is currently a work-around until the new type system
// is in place, where we have more precise types.
result = HType::NonPrimitive();
}
return result;
}