Home | History | Annotate | Download | only in src

Lines Matching refs:Code

6 //     * Redistributions of source code must retain the above copyright
724 Handle<Code> code,
729 // Set up the code pointer in both the shared function info and in
731 function->shared()->set_code(*code);
732 function->set_code(*code);
755 Handle<Code> code,
760 // Set up the code pointer in both the shared function info and in
762 function->shared()->set_code(*code);
763 function->set_code(*code);
788 Handle<Code> code) {
791 function->shared()->set_code(*code);
792 function->set_code(*code);
807 Handle<Code> Factory::NewCode(const CodeDesc& desc,
808 Code::Flags flags,
814 Code);
818 Handle<Code> Factory::CopyCode(Handle<Code> code) {
820 isolate()->heap()->CopyCode(*code),
821 Code);
825 Handle<Code> Factory::CopyCode(Handle<Code> code, Vector<byte> reloc_info) {
827 isolate()->heap()->CopyCode(*code, reloc_info),
828 Code);
1043 Handle<Code> code,
1046 shared->set_code(*code);
1177 // Get the original code of the function.
1178 Handle<Code> code(shared->code());
1180 // Create a copy of the code before allocating the debug info object to avoid
1182 Handle<Code> original_code(*Factory::CopyCode(code));
1191 // copy of the original code, the executing code and initial fixed array for
1197 debug_info->set_code(*code);
1218 Handle<Code> code = isolate()->builtins()->HandleApiCall();
1219 Handle<Code> construct_stub = isolate()->builtins()->JSConstructStubApi();
1254 code,