Home | History | Annotate | Download | only in src

Lines Matching refs:Code

6 //     * Redistributions of source code must retain the above copyright
662 // Caching of optimized code enabled and optimized code found.
885 Handle<Code> code,
890 // Set up the code pointer in both the shared function info and in
892 function->shared()->set_code(*code);
893 function->set_code(*code);
916 Handle<Code> code,
921 // Set up the code pointer in both the shared function info and in
923 function->shared()->set_code(*code);
924 function->set_code(*code);
942 Handle<Code> code) {
945 function->shared()->set_code(*code);
946 function->set_code(*code);
968 Handle<Code> Factory::NewCode(const CodeDesc& desc,
969 Code::Flags flags,
976 Code);
980 Handle<Code> Factory::CopyCode(Handle<Code> code) {
982 isolate()->heap()->CopyCode(*code),
983 Code);
987 Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
989 isolate()->heap()->CopyCode(*code, reloc_info),
990 Code);
1204 Handle<Code> code,
1207 shared->set_code(*code);
1343 // Get the original code of the function.
1344 Handle<Code> code(shared->code());
1346 // Create a copy of the code before allocating the debug info object to avoid
1348 Handle<Code> original_code(*Factory::CopyCode(code));
1357 // copy of the original code, the executing code and initial fixed array for
1363 debug_info->set_code(*code);
1384 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1385 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
1423 code,