diff --git a/mapleall/maple_be/src/be/mmpl/mmpl_mem_layout.cpp b/mapleall/maple_be/src/be/mmpl/mmpl_mem_layout.cpp index 5440ef8e13e7ca270e1f485e33bc0bf4423fc446..0adeb091815b46039858e8671c01b785a37c4acd 100644 --- a/mapleall/maple_be/src/be/mmpl/mmpl_mem_layout.cpp +++ b/mapleall/maple_be/src/be/mmpl/mmpl_mem_layout.cpp @@ -160,8 +160,8 @@ void MmplMemLayout::LayoutStackFrame(void) { seg_FPbased.size -= seg_formal.size; seg_FPbased.size = RoundDown(seg_FPbased.size, SIZEOFPTR); seg_formal.how_alloc.offset = seg_FPbased.size; - LogInfo::MapleLogger() << "LAYOUT: seg_formal at seg_FPbased offset " << seg_formal.how_alloc.offset << " with size " - << seg_formal.size << std::endl; + //LogInfo::MapleLogger() << "LAYOUT: seg_formal at seg_FPbased offset " << seg_formal.how_alloc.offset << " with size " + // << seg_formal.size << std::endl; // allocate the local variables uint32 symtabsize = func->symTab->GetSymbolTableSize(); @@ -194,8 +194,8 @@ void MmplMemLayout::LayoutStackFrame(void) { seg_SPbased.size = RoundUp(seg_SPbased.size, SIZEOFPTR); seg_SPbased.size += seg_actual.size; seg_SPbased.size = RoundUp(seg_SPbased.size, SIZEOFPTR); - LogInfo::MapleLogger() << "LAYOUT: seg_actual at seg_SPbased offset " << seg_actual.how_alloc.offset << " with size " - << seg_actual.size << std::endl; + //LogInfo::MapleLogger() << "LAYOUT: seg_actual at seg_SPbased offset " << seg_actual.how_alloc.offset << " with size " + // << seg_actual.size << std::endl; // go thru the function's symbol table to set typetagged and refcounted bitvectors if (UpformalSize() != 0) { @@ -443,7 +443,7 @@ GlobalMemLayout::GlobalMemLayout(BECommon &be, MapleAllocator *mallocator) sym_alloc_table[stindex].offset = seg_GPbased.size; seg_GPbased.size += be.type_size_table[sym->GetTyIdx().GetIdx()]; // LogInfo::MapleLogger() << "LAYOUT: global %" << GlobalTables::GetStringFromGstridx(sym->GetNameStridx()); - LogInfo::MapleLogger() << " at GPbased offset " << sym_alloc_table[stindex].offset << std::endl; + // LogInfo::MapleLogger() << " at GPbased offset " << sym_alloc_table[stindex].offset << std::endl; } } seg_GPbased.size = RoundUp(seg_GPbased.size, SIZEOFPTR);