本文整理汇总了C++中Object_p::first_byte_address方法的典型用法代码示例。如果您正苦于以下问题:C++ Object_p::first_byte_address方法的具体用法?C++ Object_p::first_byte_address怎么用?C++ Object_p::first_byte_address使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Object_p
的用法示例。
在下文中一共展示了Object_p::first_byte_address方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: copy_elements
void Execution_Tracer::copy_elements(int src_offset, void* dst, int dst_offset, int num_elems, Object_p dst_obj) {
lprintf( "copy_elements src_offset %d, buffer 0x%x, dst 0x%x, dst_offset %d, num_elems %d, dst_obj 0x%x, next %d\n",
src_offset, buffer, dst, dst_offset, num_elems, (Object*)dst_obj, next);
Oop* dst_oop = (Oop*)dst + dst_offset * e_N;
// zero-fill for GC sake
for (int i = 0; i < num_elems; ++i)
for (int j = 0; j < e_N; ++j)
dst_oop[i * e_N + j] = Oop::from_int(0);
for (int i = 0; i < num_elems; ++i, dst_oop += e_N) {
bc* bcp = (bc*)entry_ptr(i); gc* gcp = (gc*)bcp; proc* procp = (proc*)bcp; rcved_interp* rip = (rcved_interp*)bcp; aux* auxp = (aux*)bcp;
dst_oop[e_kind] = Oop::from_int(bcp->kind);
switch (bcp->kind) {
default: fatal(); break;
case k_aux: {
dst_oop[e_id ] = Oop::from_int(auxp->id);
dst_oop[e_aux1 ] = Oop::from_int(auxp->aux1);
dst_oop[e_aux2 ] = Oop::from_int(auxp->aux2);
dst_oop[e_rank ] = Oop::from_int(auxp->rank);
}
break;
case k_bc: {
dst_oop[e_method ] = bcp->method; Object_p mo = dst_oop[e_method].as_object();
dst_oop[e_rcvr ] = bcp->rcvr;
dst_oop[e_rank ] = Oop::from_int(bcp->rank);
dst_oop[e_bcCount ] = Oop::from_int(bcp->bcCount);
dst_oop[e_pc ] = Oop::from_int(bcp->pc - (mo->first_byte_address() - mo->as_char_p()));
dst_oop[e_aux1 ] = Oop::from_int(bcp->aux1);
dst_oop[e_aux2 ] = Oop::from_int(bcp->aux2);
dst_oop[e_is_block] = bcp->is_block ? The_Squeak_Interpreter()->roots.trueObj : The_Squeak_Interpreter()->roots.falseObj;
assert_always(dst_oop[e_method ].is_mem());
assert_always(dst_oop[e_pc ].is_int());
assert_always(dst_oop[e_rank].is_int());
assert_always(dst_oop[e_is_block] == The_Squeak_Interpreter()->roots.trueObj || dst_oop[e_is_block] == The_Squeak_Interpreter()->roots.falseObj);
assert_always( (int(dst_oop) - int(dst_obj) - Object::BaseHeaderSize) % e_N == 0 );
}
break;
case k_gc:
dst_oop[e_gc ] = Oop::from_int(gcp->gc);
dst_oop[e_rank] = Oop::from_int(gcp->rank);
break;
case k_proc:
dst_oop[e_rank] = Oop::from_int(procp->rank);
dst_oop[e_process ] = procp->process;
break;
case k_rcved_interp:
dst_oop[e_rank] = Oop::from_int(rip->to_rank);
break;
}
}
dst_obj->my_heap()->check_multiple_stores_for_generations_only(dst_oop, num_elems * e_N);
}
示例2: print_entries
void Execution_Tracer::print_entries(Oop ents, Printer* p) {
Object_p eo = ents.as_object();
int n = eo->fetchWordLength() / e_N;
int x;
for (int i = 0; i < n; ++i) {
int rank = eo->fetchPointer(x = i * e_N + e_rank).integerValue();
p->printf("%3d on %2d: ", i - n, rank);
switch (eo->fetchPointer(i * e_N + e_kind).integerValue()) {
default: fatal(); break;
case k_proc: {
Oop process = eo->fetchPointer(i * e_N + e_process); assert(process.is_mem());
p->printf("switch to process 0x%x", process.as_untracked_object_ptr());
}
break;
case k_aux: {
int rank = eo->fetchPointer(i * e_N + e_rank).integerValue();
int aux1 = eo->fetchPointer(i * e_N + e_aux1).integerValue();
//int aux2 = eo->fetchPointer(i * e_N + e_aux2).integerValue();
int id = eo->fetchPointer(i * e_N + e_id ).integerValue();
// p->printf("on %d: aux1 0x%x aux2 0x%x id %d", rank, aux1, aux2, id);
p->printf("on %d: aux1 %s id %d", rank, aux1, id);
}
break;
case k_gc:
p->printf("gc: %d", eo->fetchPointer(i * e_N + e_gc).integerValue());
break;
case k_rcved_interp:
p->printf("received interp");
break;
case k_bc: {
Oop meth = eo->fetchPointer(i * e_N + e_method); assert(meth.is_mem());
Oop rcvr = eo->fetchPointer(i * e_N + e_rcvr);
int pc = eo->fetchPointer(i * e_N + e_pc ).integerValue();
bool is_block = eo->fetchPointer(i * e_N + e_is_block) == The_Squeak_Interpreter()->roots.trueObj;
int aux1 = eo->fetchPointer(i * e_N + e_aux1).integerValue();
int aux2 = eo->fetchPointer(i * e_N + e_aux2).integerValue();
Oop klass = rcvr.fetchClass();
Oop sel, mclass;
bool have_sel_and_mclass = klass.as_object()->selector_and_class_of_method_in_me_or_ancestors(meth, &sel, &mclass);
if (!have_sel_and_mclass) continue;
if (mclass == The_Squeak_Interpreter()->roots.nilObj)
mclass = rcvr.fetchClass();
p->printf("rcvr: "); rcvr.print(p);
if (mclass != klass) {
p->printf("(");
bool is_meta;
Oop mclassName = mclass.as_object()->name_of_class_or_metaclass(&is_meta);
if (is_meta) p->printf("class ");
mclassName.as_object()->print_bytes(p);
p->printf(")");
}
p->printf(" >> ");
sel.as_object()->print_bytes(p);
p->printf(is_block ? " [] " : " ");
p->printf(", pc: %d, ", pc);
Object_p mo = meth.as_object();
u_char bc = mo->first_byte_address()[pc];
The_Squeak_Interpreter()->printBC(bc, p);
p->printf(", bcCount %d", eo->fetchPointer(i * e_N + e_bcCount).integerValue());
if (aux1) p->printf(", aux1 = 0x%x", aux1);
if (aux1) p->printf(", aux1 = 0x%x", aux2);
}
break;
}
p->nl();
}
}