Searched defs:in_new_space (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/v8/src/ic/ia32/
H A Dhandler-compiler-ia32.cc549 bool in_new_space = heap()->InNewSpace(*prototype); local
554 bool load_prototype_from_map = in_new_space || depth == 1;
/external/chromium_org/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc546 bool in_new_space = heap()->InNewSpace(*prototype); local
551 bool load_prototype_from_map = in_new_space || depth == 1;
/external/chromium_org/v8/src/ic/x87/
H A Dhandler-compiler-x87.cc551 bool in_new_space = heap()->InNewSpace(*prototype); local
556 bool load_prototype_from_map = in_new_space || depth == 1;
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.h2850 bool in_new_space = zone->isolate()->heap()->InNewSpace(*func); local
2856 HCheckValue* check = new(zone) HCheckValue(value, target, in_new_space);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc749 bool in_new_space = false; local
757 in_new_space = CcTest::heap()->InNewSpace(*istring);
758 CHECK(in_new_space || CcTest::heap()->old_data_space()->Contains(*istring));
762 in_new_space ? i::NEW_SPACE : i::OLD_DATA_SPACE);
771 bool in_new_space = false; local
780 in_new_space = CcTest::heap()->InNewSpace(*istring);
781 CHECK(in_new_space || CcTest::heap()->old_data_space()->Contains(*istring));
785 in_new_space ? i::NEW_SPACE : i::OLD_DATA_SPACE);

Completed in 188 milliseconds