HomeSort by relevance Sort by last modified time
    Searched refs:rinfo (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/chromium_org/v8/test/cctest/
test-reloc-info.cc 37 RelocInfo rinfo(pc, mode, data, NULL);
38 writer->Write(&rinfo);
74 CHECK_EQ(pc, it.rinfo()->pc());
75 CHECK_EQ(mode, it.rinfo()->rmode());
76 CHECK_EQ(pos, static_cast<int>(it.rinfo()->data()));
91 CHECK_EQ(pc, it.rinfo()->pc());
92 CHECK_EQ(mode, it.rinfo()->rmode());
93 CHECK_EQ(pos, static_cast<int>(it.rinfo()->data()));
107 CHECK_EQ(pc, it.rinfo()->pc());
108 CHECK_EQ(mode, it.rinfo()->rmode())
    [all...]
  /external/chromium_org/v8/src/
lithium-codegen.cc 187 RelocInfo::Mode mode = it.rinfo()->rmode();
189 code->IsWeakObjectInOptimizedCode(it.rinfo()->target_cell())) {
190 Handle<Cell> cell(it.rinfo()->target_cell());
193 code->IsWeakObjectInOptimizedCode(it.rinfo()->target_object())) {
194 if (it.rinfo()->target_object()->IsMap()) {
195 Handle<Map> map(Map::cast(it.rinfo()->target_object()));
197 } else if (it.rinfo()->target_object()->IsJSObject()) {
198 Handle<JSObject> object(JSObject::cast(it.rinfo()->target_object()));
200 } else if (it.rinfo()->target_object()->IsCell()) {
201 Handle<Cell> cell(Cell::cast(it.rinfo()->target_object()))
    [all...]
disassembler.cc 129 } else if (it != NULL && !it->done() && it->rinfo()->pc() == pc &&
130 it->rinfo()->rmode() == RelocInfo::INTERNAL_REFERENCE) {
150 while (!it->done() && it->rinfo()->pc() < pc) {
151 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
153 comments.Add(reinterpret_cast<const char*>(it->rinfo()->data()));
156 pcs.Add(it->rinfo()->pc());
157 rmodes.Add(it->rinfo()->rmode());
158 datas.Add(it->rinfo()->data());
287 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
289 reinterpret_cast<const char*>(it->rinfo()->data()))
    [all...]
assembler.cc 408 void RelocInfoWriter::Write(const RelocInfo* rinfo) {
412 DCHECK(rinfo->rmode() < RelocInfo::NUMBER_OF_MODES);
413 DCHECK(rinfo->pc() - last_pc_ >= 0);
417 uint32_t pc_delta = static_cast<uint32_t>(rinfo->pc() - last_pc_);
418 RelocInfo::Mode rmode = rinfo->rmode();
428 DCHECK(static_cast<int>(rinfo->data()) == rinfo->data());
429 int id_delta = static_cast<int>(rinfo->data()) - last_id_;
439 last_id_ = static_cast<int>(rinfo->data());
442 DCHECK(static_cast<int>(rinfo->data()) == rinfo->data())
    [all...]
debug.h 100 inline Address pc() { return reloc_iterator_->rinfo()->pc(); }
102 inline RelocInfo* rinfo() { return reloc_iterator_->rinfo(); } function in class:v8::internal::BreakLocationIterator
104 return reloc_iterator_->rinfo()->rmode();
107 return reloc_iterator_original_->rinfo();
110 return reloc_iterator_original_->rinfo()->rmode();
427 static bool IsDebugBreakAtReturn(RelocInfo* rinfo);
serialize.cc     [all...]
liveedit.cc 950 virtual void VisitCodeTarget(RelocInfo* rinfo) {
951 if (RelocInfo::IsCodeTarget(rinfo->rmode()) &&
952 Code::GetCodeFromTargetAddress(rinfo->target_address()) == original_) {
954 rinfo->set_target_address(substitution_entry);
958 virtual void VisitDebugTarget(RelocInfo* rinfo) {
959 VisitCodeTarget(rinfo);
1382 RelocInfo* rinfo = it.rinfo(); local
    [all...]
  /external/chromium_org/v8/src/ia32/
debug-ia32.cc 17 return Debug::IsDebugBreakAtReturn(rinfo());
27 rinfo()->PatchCodeWithCall(
35 rinfo()->PatchCode(original_rinfo()->pc(),
42 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
43 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
44 return rinfo->IsPatchedReturnSequence();
51 return rinfo()->IsPatchedDebugBreakSlotSequence();
58 rinfo()->PatchCodeWithCall(
66 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
deoptimizer-ia32.cc 78 RelocInfo rinfo(0, RelocInfo::COMMENT, comment_string, NULL);
83 reloc_info_writer.Write(&rinfo);
144 RelocInfo rinfo(call_address + 1, // 1 after the call opcode.
148 reloc_info_writer.Write(&rinfo);
  /external/chromium_org/v8/src/mips64/
debug-mips64.cc 18 return Debug::IsDebugBreakAtReturn(rinfo());
34 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
49 rinfo()->PatchCode(original_rinfo()->pc(),
56 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
57 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
58 return rinfo->IsPatchedReturnSequence();
65 return rinfo()->IsPatchedDebugBreakSlotSequence();
81 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
92 rinfo()->PatchCode(original_rinfo()->pc(),
  /external/chromium_org/v8/src/x64/
debug-x64.cc 18 return Debug::IsDebugBreakAtReturn(rinfo());
27 rinfo()->PatchCodeWithCall(
35 rinfo()->PatchCode(original_rinfo()->pc(),
42 bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
43 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
44 return rinfo->IsPatchedReturnSequence();
51 return rinfo()->IsPatchedDebugBreakSlotSequence();
57 rinfo()->PatchCodeWithCall(
65 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
  /external/chromium_org/v8/src/x87/
debug-x87.cc 17 return Debug::IsDebugBreakAtReturn(rinfo());
27 rinfo()->PatchCodeWithCall(
35 rinfo()->PatchCode(original_rinfo()->pc(),
42 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
43 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
44 return rinfo->IsPatchedReturnSequence();
51 return rinfo()->IsPatchedDebugBreakSlotSequence();
58 rinfo()->PatchCodeWithCall(
66 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
deoptimizer-x87.cc 78 RelocInfo rinfo(0, RelocInfo::COMMENT, comment_string, NULL);
83 reloc_info_writer.Write(&rinfo);
144 RelocInfo rinfo(call_address + 1, // 1 after the call opcode.
148 reloc_info_writer.Write(&rinfo);
  /external/strace/test/
mtd.c 16 struct region_info_user rinfo; local
40 ioctl(fd, MEMGETREGIONINFO, &rinfo);
  /external/chromium_org/v8/src/heap/
objects-visiting-inl.h 216 Heap* heap, RelocInfo* rinfo) {
217 DCHECK(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT);
218 HeapObject* object = HeapObject::cast(rinfo->target_object());
219 heap->mark_compact_collector()->RecordRelocSlot(rinfo, object);
223 if (!rinfo->host()->IsWeakObject(object)) {
231 RelocInfo* rinfo) {
232 DCHECK(rinfo->rmode() == RelocInfo::CELL);
233 Cell* cell = rinfo->target_cell();
235 if (!rinfo->host()->IsWeakObject(cell)) {
243 RelocInfo* rinfo) {
    [all...]
incremental-marking-inl.h 58 void IncrementalMarking::RecordWriteIntoCode(HeapObject* obj, RelocInfo* rinfo,
61 RecordWriteIntoCodeSlow(obj, rinfo, value);
objects-visiting.h 366 INLINE(static void VisitEmbeddedPointer(Heap* heap, RelocInfo* rinfo));
367 INLINE(static void VisitCell(Heap* heap, RelocInfo* rinfo));
368 INLINE(static void VisitDebugTarget(Heap* heap, RelocInfo* rinfo));
369 INLINE(static void VisitCodeTarget(Heap* heap, RelocInfo* rinfo));
370 INLINE(static void VisitCodeAgeSequence(Heap* heap, RelocInfo* rinfo));
371 INLINE(static void VisitExternalReference(RelocInfo* rinfo)) {}
372 INLINE(static void VisitRuntimeEntry(RelocInfo* rinfo)) {}
incremental-marking.h 111 INLINE(void RecordWriteIntoCode(HeapObject* obj, RelocInfo* rinfo,
118 void RecordWriteIntoCodeSlow(HeapObject* obj, RelocInfo* rinfo,
mark-compact.cc 72 void VisitEmbeddedPointer(RelocInfo* rinfo) {
73 DCHECK(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT);
74 if (!rinfo->host()->IsWeakObject(rinfo->target_object())) {
75 Object* p = rinfo->target_object();
80 void VisitCell(RelocInfo* rinfo) {
81 Code* code = rinfo->host();
82 DCHECK(rinfo->rmode() == RelocInfo::CELL);
83 if (!code->IsWeakObject(rinfo->target_cell())) {
84 ObjectVisitor::VisitCell(rinfo);
    [all...]
  /external/chromium_org/v8/src/arm/
debug-arm.cc 16 return Debug::IsDebugBreakAtReturn(rinfo());
31 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
42 rinfo()->PatchCode(original_rinfo()->pc(),
49 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
50 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
51 return rinfo->IsPatchedReturnSequence();
58 return rinfo()->IsPatchedDebugBreakSlotSequence();
72 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
82 rinfo()->PatchCode(original_rinfo()->pc(),
assembler-arm.cc     [all...]
  /external/chromium_org/v8/src/arm64/
debug-arm64.cc 19 return Debug::IsDebugBreakAtReturn(rinfo());
43 PatchingAssembler patcher(reinterpret_cast<Instruction*>(rinfo()->pc()), 5);
64 rinfo()->PatchCode(original_rinfo()->pc(),
69 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
70 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
71 return rinfo->IsPatchedReturnSequence();
78 return rinfo()->IsPatchedDebugBreakSlotSequence();
102 PatchingAssembler patcher(reinterpret_cast<Instruction*>(rinfo()->pc()), 4);
122 rinfo()->PatchCode(original_rinfo()->pc(),
  /external/chromium_org/v8/src/mips/
debug-mips.cc 18 return Debug::IsDebugBreakAtReturn(rinfo());
34 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
50 rinfo()->PatchCode(original_rinfo()->pc(),
57 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
58 DCHECK(RelocInfo::IsJSReturn(rinfo->rmode()));
59 return rinfo->IsPatchedReturnSequence();
66 return rinfo()->IsPatchedDebugBreakSlotSequence();
80 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
89 rinfo()->PatchCode(original_rinfo()->pc(),
  /external/strace/
mtd.c 57 struct region_info_user rinfo; local
124 if (!verbose(tcp) || umove(tcp, arg, &rinfo) < 0)
128 rinfo.offset, rinfo.erasesize);
130 rinfo.numblocks, rinfo.regionindex);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine.cc 381 // Populate |rinfo| based on previously-set data in |*this|.
382 void ExportTo(VideoReceiverInfo* rinfo) {
384 rinfo->framerate_rcvd = framerate_;
385 rinfo->decode_ms = decode_ms_;
386 rinfo->max_decode_ms = max_decode_ms_;
387 rinfo->current_delay_ms = current_delay_ms_;
388 rinfo->target_delay_ms = target_delay_ms_;
389 rinfo->jitter_buffer_ms = jitter_buffer_ms_;
390 rinfo->min_playout_delay_ms = min_playout_delay_ms_;
391 rinfo->render_delay_ms = render_delay_ms_
2618 VideoReceiverInfo rinfo; local
    [all...]

Completed in 486 milliseconds

1 2 3