Home | History | Annotate | Download | only in src

Lines Matching refs:code

8 // - Redistributions of source code must retain the above copyright notice,
31 // The original source code covered by the above license above has been
390 RelocIterator::RelocIterator(Code* code, int mode_mask) {
391 rinfo_.pc_ = code->instruction_start();
394 pos_ = code->relocation_start() + code->relocation_size();
395 end_ = code->relocation_start();
430 return "code target (js construct call)";
432 return "code target (context)";
439 return "code target";
476 Code* code = Code::GetCodeFromTargetAddress(target_address());
477 PrintF(" (%s) (%p)", Code::Kind2String(code->kind()), target_address());
501 // convert inline target address to code object
504 // Check that we can find the right code object.
505 Code* code = Code::GetCodeFromTargetAddress(addr);
508 ASSERT(code->address() == HeapObject::cast(found)->address());