Home | History | Annotate | Download | only in src

Lines Matching defs:Code

6 //     * Redistributions of source code must retain the above copyright
608 Handle<Code> code,
613 // Setup the code pointer in both the shared function info and in
615 function->shared()->set_code(*code);
616 function->set_code(*code);
639 Handle<Code> code,
644 // Setup the code pointer in both the shared function info and in
646 function->shared()->set_code(*code);
647 function->set_code(*code);
667 Handle<Code> code) {
670 function->shared()->set_code(*code);
671 function->set_code(*code);
678 Handle<Code> Factory::NewCode(const CodeDesc& desc,
679 Code::Flags flags,
685 Code);
689 Handle<Code> Factory::CopyCode(Handle<Code> code) {
691 isolate()->heap()->CopyCode(*code),
692 Code);
696 Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
698 isolate()->heap()->CopyCode(*code, reloc_info),
699 Code);
838 Handle<Code> code,
841 shared->set_code(*code);
955 // Get the original code of the function.
956 Handle<Code> code(shared->code());
958 // Create a copy of the code before allocating the debug info object to avoid
960 Handle<Code> original_code(*Factory::CopyCode(code));
969 // copy of the original code, the executing code and initial fixed array for
975 debug_info->set_code(*code);
996 Handle<Code> code = isolate()->builtins()->HandleApiCall();
997 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
1032 code,