Lines Matching defs:Code
8 # * Redistributions of source code must retain the above copyright
47 heap. Code objects are disassembled and the addresses linked from the
134 ("code", ctypes.c_uint32),
364 # List of V8 instance types. Obtained by adding the code below to any .cc file.
466 code = AnnotateAddresses(heap, line[1])
467 return "%s%08x %08x: %s" % (marker, line_address, line[0], code)
631 self.code = heap.FindObject(code_entry - Code.ENTRY_OFFSET + 1)
643 p.Print("code:")
644 self.code.Print(p)
645 if self.code != self.shared.code:
646 p.Print("unoptimized code:")
647 self.shared.code.Print(p)
676 self.code = self.ObjectField(SharedFunctionInfo.CODE_OFFSET)
696 class Code(HeapObject):
702 self.entry = self.address + Code.ENTRY_OFFSET
704 heap.reader.ReadU32(self.address + Code.INSTRUCTION_SIZE_OFFSET)
708 p.Print("Code(%08x) {" % self.address)
742 "CODE_TYPE": Code
791 print " code: %08X" % reader.exception.exception.code