| Index: vm/stub_code_x64.cc
|
| ===================================================================
|
| --- vm/stub_code_x64.cc (revision 10528)
|
| +++ vm/stub_code_x64.cc (working copy)
|
| @@ -288,6 +288,9 @@
|
| Label loop, next_iteration;
|
| // Get functions_cache, since it is allocated lazily it maybe null.
|
| __ movq(RAX, FieldAddress(RAX, Class::functions_cache_offset()));
|
| + __ cmpq(RAX, raw_null);
|
| + __ j(EQUAL, ¬_found, Assembler::kNearJump);
|
| +
|
| // Iterate and search for identical name.
|
| __ leaq(R12, FieldAddress(RAX, Array::data_offset()));
|
|
|
|
|