Home | History | Annotate | Download | only in src

Lines Matching defs: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
411 RelocIterator::RelocIterator(Code* code, int mode_mask) {
412 rinfo_.pc_ = code->instruction_start();
415 pos_ = code->relocation_start() + code->relocation_size();
416 end_ = code->relocation_start();
449 return "code target (js construct call)";
451 return "code target (context)";
458 return "code target";
502 Code* code = Code::GetCodeFromTargetAddress(target_address());
503 PrintF(out, " (%s) (%p)", Code::Kind2String(code->kind()),
539 // convert inline target address to code object
542 // Check that we can find the right code object.
543 Code* code = Code::GetCodeFromTargetAddress(addr);
546 ASSERT(code->address() == HeapObject::cast(found)->address());