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

1 2

  /external/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/v8/src/arm/
debug-arm.cc 40 return Debug::IsDebugBreakAtReturn(rinfo());
60 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
75 rinfo()->PatchCode(original_rinfo()->pc(),
82 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
83 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
84 return rinfo->IsPatchedReturnSequence();
91 return rinfo()->IsPatchedDebugBreakSlotSequence();
110 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
124 rinfo()->PatchCode(original_rinfo()->pc(),
assembler-arm.cc     [all...]
  /external/v8/src/ia32/
debug-ia32.cc 42 return Debug::IsDebugBreakAtReturn(rinfo());
53 rinfo()->PatchCodeWithCall(isolate->debug()->debug_break_return()->entry(),
60 rinfo()->PatchCode(original_rinfo()->pc(),
67 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
68 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
69 return rinfo->IsPatchedReturnSequence();
76 return rinfo()->IsPatchedDebugBreakSlotSequence();
83 rinfo()->PatchCodeWithCall(
91 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
deoptimizer-ia32.cc 102 RelocInfo rinfo(0, RelocInfo::COMMENT, comment_string, NULL);
107 reloc_info_writer.Write(&rinfo);
157 RelocInfo rinfo(call_address + 1, // 1 after the call opcode.
161 reloc_info_writer.Write(&rinfo);
    [all...]
  /external/v8/src/mips/
debug-mips.cc 43 return Debug::IsDebugBreakAtReturn(rinfo());
59 CodePatcher patcher(rinfo()->pc(), Assembler::kJSReturnSequenceInstructions);
76 rinfo()->PatchCode(original_rinfo()->pc(),
83 bool Debug::IsDebugBreakAtReturn(RelocInfo* rinfo) {
84 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
85 return rinfo->IsPatchedReturnSequence();
92 return rinfo()->IsPatchedDebugBreakSlotSequence();
106 CodePatcher patcher(rinfo()->pc(), Assembler::kDebugBreakSlotInstructions);
115 rinfo()->PatchCode(original_rinfo()->pc(),
  /external/v8/src/x64/
debug-x64.cc 43 return Debug::IsDebugBreakAtReturn(rinfo());
53 rinfo()->PatchCodeWithCall(
61 rinfo()->PatchCode(original_rinfo()->pc(),
68 bool Debug::IsDebugBreakAtReturn(v8::internal::RelocInfo* rinfo) {
69 ASSERT(RelocInfo::IsJSReturn(rinfo->rmode()));
70 return rinfo->IsPatchedReturnSequence();
77 return !Assembler::IsNop(rinfo()->pc());
83 rinfo()->PatchCodeWithCall(
91 rinfo()->PatchCode(original_rinfo()->pc(), Assembler::kDebugBreakSlotLength);
  /external/v8/src/
disassembler.cc 153 } else if (it != NULL && !it->done() && it->rinfo()->pc() == pc &&
154 it->rinfo()->rmode() == RelocInfo::INTERNAL_REFERENCE) {
174 while (!it->done() && it->rinfo()->pc() < pc) {
175 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
177 comments.Add(reinterpret_cast<const char*>(it->rinfo()->data()));
180 pcs.Add(it->rinfo()->pc());
181 rmodes.Add(it->rinfo()->rmode());
182 datas.Add(it->rinfo()->data());
304 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
306 reinterpret_cast<const char*>(it->rinfo()->data()))
    [all...]
incremental-marking-inl.h 72 RelocInfo* rinfo,
75 RecordWriteIntoCodeSlow(obj, rinfo, value);
incremental-marking.cc 110 RelocInfo rinfo(pc, RelocInfo::CODE_TARGET, 0, host);
111 RecordWriteIntoCode(host, &rinfo, value);
120 RelocInfo rinfo(pc, RelocInfo::CODE_TARGET, 0, host);
121 RecordWriteIntoCode(host, &rinfo, value);
138 RelocInfo* rinfo,
155 heap_->mark_compact_collector()->RecordRelocSlot(rinfo,
170 void VisitEmbeddedPointer(RelocInfo* rinfo) {
171 ASSERT(rinfo->rmode() == RelocInfo::EMBEDDED_OBJECT);
172 Object* target = rinfo->target_object();
174 heap_->mark_compact_collector()->RecordRelocSlot(rinfo, target)
    [all...]
assembler.cc 312 void RelocInfoWriter::Write(const RelocInfo* rinfo) {
316 ASSERT(rinfo->pc() - last_pc_ >= 0);
320 uint32_t pc_delta = static_cast<uint32_t>(rinfo->pc() - last_pc_);
321 RelocInfo::Mode rmode = rinfo->rmode();
331 ASSERT(static_cast<int>(rinfo->data()) == rinfo->data());
332 int id_delta = static_cast<int>(rinfo->data()) - last_id_;
342 last_id_ = static_cast<int>(rinfo->data());
345 ASSERT(static_cast<int>(rinfo->data()) == rinfo->data())
    [all...]
mark-compact.cc     [all...]
incremental-marking.h 136 RelocInfo* rinfo,
145 RelocInfo* rinfo,
objects-visiting-inl.h 116 it.rinfo()->Visit(v);
148 it.rinfo()->template Visit<StaticVisitor>(heap);
serialize.cc     [all...]
debug.h 114 inline Address pc() { return reloc_iterator_->rinfo()->pc(); }
116 inline RelocInfo* rinfo() { return reloc_iterator_->rinfo(); } function in class:v8::internal::BreakLocationIterator
118 return reloc_iterator_->rinfo()->rmode();
121 return reloc_iterator_original_->rinfo();
124 return reloc_iterator_original_->rinfo()->rmode();
262 static bool IsDebugBreakAtReturn(RelocInfo* rinfo);
    [all...]
liveedit.cc 947 virtual void VisitCodeTarget(RelocInfo* rinfo) {
948 if (RelocInfo::IsCodeTarget(rinfo->rmode()) &&
949 Code::GetCodeFromTargetAddress(rinfo->target_address()) == original_) {
950 reloc_infos_.Add(*rinfo);
954 virtual void VisitDebugTarget(RelocInfo* rinfo) {
955 VisitCodeTarget(rinfo);
1269 RelocInfo* rinfo = it.rinfo(); local
    [all...]
serialize.h 351 virtual void VisitRuntimeEntry(RelocInfo* rinfo) {
512 void VisitExternalReference(RelocInfo* rinfo);
515 void VisitGlobalPropertyCell(RelocInfo* rinfo);
debug.cc 140 rinfo()->data() - debug_info_->shared()->start_position());
145 rinfo()->data() - debug_info_->shared()->start_position());
393 Address target = rinfo()->target_address();
406 rinfo()->set_target_address(stub->entry());
455 return Debug::IsDebugBreak(rinfo()->target_address());
463 original_rinfo()->set_target_address(rinfo()->target_address());
467 Address target = rinfo()->target_address();
473 rinfo()->set_target_address(dbgbrk_code->entry());
480 rinfo()->set_target_address(original_rinfo()->target_address());
    [all...]
spaces.cc     [all...]
objects-debug.cc 555 it.rinfo()->Verify();
557 if (RelocInfo::IsGCRelocMode(it.rinfo()->rmode())) {
558 CHECK(it.rinfo()->pc() != last_gc_pc);
559 last_gc_pc = it.rinfo()->pc();
assembler.h 398 void Write(const RelocInfo* rinfo);
435 // // do something with it.rinfo() here
453 RelocInfo* rinfo() { function in class:v8::internal::RelocIterator
mark-compact.h 526 void RecordRelocSlot(RelocInfo* rinfo, Object* target);
  /hardware/ti/wlan/mac80211/wpa_supplicant_lib/
driver_mac80211_nl.c 64 struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1]; local
86 if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
91 if (rinfo[NL80211_RATE_INFO_BITRATE]) {
93 nla_get_u16(rinfo[
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions-replace.js 35 // Before the change 2 rinfo are 22 characters away from each other. After the
55 // Line long enough to change rinfo encoding.

Completed in 378 milliseconds

1 2