/arkcompiler/runtime_core/libpandabase/mem/ |
H A D | malloc_mem_pool-inl.h | 41 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl() 57 LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << size_for_buff in AllocArenaImpl() 65 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << arena->GetSize() in FreeArenaImpl() 77 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl() 80 LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << size << " at addr = " << std::hex in AllocPoolImpl() 88 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " << std::hex << mem; in FreePoolImpl()
|
H A D | mmap_mem_pool-inl.h | 184 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl() 195 LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << pool_for_arena.GetSize() in AllocArenaImpl() 208 LOG_MMAP_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << size << " at addr = " << std::hex in FreeArenaImpl() 224 << std::dec << compiler_space_current_size_; in AllocRawMemCompilerImpl() 238 << std::dec << internal_space_current_size_; in AllocRawMemInternalImpl() 252 << std::dec << code_space_current_size_; in AllocRawMemCodeImpl() 259 LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(type) << " - " << std::dec in AllocRawMemObjectImpl() 401 LOG_MMAP_MEM_POOL(DEBUG) << "Freed " << std::dec << size << " memory for " << SpaceTypeToString(pool_space_type); in FreePoolUnsafe() 408 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl() 411 LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << poo in AllocPoolImpl() [all...] |
/arkcompiler/runtime_core/static_core/libpandabase/mem/ |
H A D | malloc_mem_pool-inl.h | 42 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl() 58 LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << sizeForBuff in AllocArenaImpl() 69 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << arena->GetSize() in FreeArenaImpl() 82 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl() 85 LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << size << " at addr = " << std::hex in AllocPoolImpl() 97 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " << std::hex << mem; in FreePoolImpl()
|
H A D | mmap_mem_pool-inl.h | 278 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl() 291 LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << poolForArena.GetSize() in AllocArenaImpl() 303 LOG_MMAP_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << size << " at addr = " << std::hex in FreeArenaImpl() 320 LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(spaceType) << " - " << std::dec in AllocRawMemNonObjectImpl() 330 LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(type) << " - " << std::dec in AllocRawMemObjectImpl() 482 LOG_MMAP_MEM_POOL(DEBUG) << "Freed " << std::dec << size << " memory for " << SpaceTypeToString(poolSpaceType); in FreePoolUnsafe() 490 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl() 493 LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << pool.GetSize() in AllocPoolImpl() 502 LOG_MMAP_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " << std::hex << mem; in FreePoolImpl()
|
/arkcompiler/toolchain/tooling/utils/ |
H A D | utils.cpp | 62 const int dec = 10; in StrToUInt() local 64 *result = std::strtoul(content, &endPtr, dec); in StrToUInt() 73 const int dec = 10; in StrToInt32() local 75 long long num = std::strtoll(str.c_str(), &endPtr, dec); in StrToInt32() 85 const int dec = 10; in StrToInt32() local 87 long long num = std::strtoll(str.c_str(), &endPtr, dec); in StrToInt32()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | dump.cpp | 489 os << " <TaggedArray[" << std::dec << len << "]>\n"; in DumpArrayClass() 504 os << " <MutantTaggedArray[" << std::dec << len << "]>\n"; in DumpMutantTaggedArray() 517 os << " <COWMutantTaggedArray[" << std::dec << len << "]>\n"; in DumpCOWMutantTaggedArray() 530 os << " <ConstantPool[" << std::dec << len << "]>\n"; in DumpConstantPoolClass() 595 os << " Order: " << std::dec << attr.GetOffset(); in DumpAttr() 596 os << " SortedIndex: " << std::dec << attr.GetSortedIndex(); in DumpAttr() 598 os << " Order: " << std::dec << attr.GetDictionaryOrder(); in DumpAttr() 663 os << "| NumberOfProps :" << std::dec << jshclass->NumberOfProps(); in DumpHClass() 664 os << "| InlinedProperties :" << std::dec << jshclass->GetInlinedProperties(); in DumpHClass() 666 os << "| Level :" << std::dec << static_cas in DumpHClass() [all...] |
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | tlab.cpp | 31 LOG_TLAB_ALLOCATOR(DEBUG) << "Construct a new TLAB at addr " << std::hex << address << " with size " << std::dec in TLAB() 42 LOG_TLAB_ALLOCATOR(DEBUG) << "Fill a TLAB with buffer at addr " << std::hex << address << " with size " << std::dec in Fill() 48 LOG_TLAB_ALLOCATOR(DEBUG) << "Destroy a TLAB at addr " << std::hex << memoryStartAddr_ << " with size " << std::dec in ~TLAB()
|
H A D | freelist_allocator-inl.h | 50 LOG_FREELIST_ALLOCATOR(DEBUG) << "Try to allocate object with size " << std::dec << size; in Alloc() 72 << std::dec << memoryBlock->GetSize(); in Alloc() 97 << std::dec << newFreeBlock->GetSize(); in Alloc() 156 << std::dec << memoryHeader->GetSize() << " (probably with padding)"; in FreeUnsafe() 288 << std::dec << size; in AddMemoryPool() 346 << currentPool << " and size " << std::dec << currentPool->GetSize() in VisitAndRemoveFreePools() 347 << " bytes with the first block at addr " << std::hex << firstBlock << " and size " << std::dec in VisitAndRemoveFreePools() 443 << "first block = " << std::hex << firstBlock << " with size " << std::dec in CoalesceMemoryBlocks() 445 << " with size " << std::dec << secondBlock->GetSize(); in CoalesceMemoryBlocks()
|
H A D | bump-allocator-inl.h | 68 LOG_BUMP_ALLOCATOR(DEBUG) << "Expand memory: Add " << std::dec << size << " bytes of memory at addr " << std::hex in ExpandMemory() 82 LOG_BUMP_ALLOCATOR(DEBUG) << "Try to allocate " << std::dec << size << " bytes of memory"; in Alloc() 118 LOG_BUMP_ALLOCATOR(DEBUG) << "Try to create a TLAB with size " << std::dec << size; in CreateNewTLAB() 130 LOG_BUMP_ALLOCATOR(DEBUG) << "Created new TLAB with size " << std::dec << size << " at addr " << std::hex in CreateNewTLAB() 136 LOG_BUMP_ALLOCATOR(DEBUG) << "Don't have enough memory for new TLAB with size " << std::dec << size; in CreateNewTLAB()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/object_code/ |
H A D | dump.cpp | 52 stream << prefix << "Function Address [uint64]: 0x" << std::hex << function.getFunctionAddress() << std::dec in DumpStackMapFunction() 54 stream << prefix << "Stack Size [uint64]: 0x" << std::hex << function.getStackSize() << std::dec << std::endl; in DumpStackMapFunction() 62 stream << prefix << "Instruction Offset [uint32]: 0x" << std::hex << record.getInstructionOffset() << std::dec in DumpStackMapRecord()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/ |
H A D | mpl_int_val.cpp | 29 os << std::hex << "0x" << val << std::dec; in operator <<() member in maple::std
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
H A D | dump.cpp | 240 (*out) << sep << std::dec << InstId(GetInput(i).GetInst(), allocator); in DumpInputs() 254 (*out) << std::dec << "(vr" << imm.vreg << ")"; in DumpInputs() 271 (*out) << ", 0x" << std::hex << GetImm() << std::dec; in DumpInputs() member in ark::compiler::std 278 (*out) << ", " << GetShiftTypeStr(GetShiftType()) << " 0x" << std::hex << GetImm() << std::dec; in DumpInputs() member in ark::compiler::std 285 (*out) << ", " << GetShiftTypeStr(GetShiftType()) << " 0x" << std::hex << GetImm() << std::dec; in DumpInputs() member in ark::compiler::std 292 (*out) << ", 0x" << std::hex << GetImm() << std::dec; in DumpInputs() member in ark::compiler::std 299 (*out) << ", 0x" << std::hex << GetImm() << std::dec; in DumpInputs() member in ark::compiler::std 331 (*out) << "0x" << std::hex << GetIntValue() << std::dec; in DumpInputs() member in ark::compiler::std 340 (*out) << "0x" << std::hex << GetRawValue() << std::dec; in DumpInputs() member in ark::compiler::std 946 (*out) << ", 0x" << std::hex << GetImm() << std::dec; in DumpInputs() member in ark::compiler::std 959 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 974 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 989 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 997 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1004 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1034 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1042 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1054 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1062 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1078 (*out) << ", 0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std 1086 (*out) << "0x" << std::hex << GetImm() << std::dec; DumpInputs() member in ark::compiler::std [all...] |
H A D | visualizer_printer.cpp | 60 (*output_) << MakeOffset() << std::dec << prop << " " << value << "\n"; in PrintProperty() 121 (*output_) << MakeOffset() << "0 " << std::dec << usersSize << " "; in PrintInst()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | debug.cpp | 27 std::cerr << "IN " << file << ":" << std::dec << line << ": " << function << std::endl; in AssertionFail()
|
H A D | bit_memory_region-inl.h | 54 os << std::dec; in Dump() member in panda::std
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | compiler_queue_interface.h | 34 stream << "(method: " << name << ", is_osr: " << std::dec << ctx.IsOsr() in GetTaskDescription()
|
/arkcompiler/runtime_core/static_core/verification/cflow/ |
H A D | cflow_iterate_inl.h | 43 << inst_.GetOffset() << std::dec << ": " << inst_
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | debug.cpp | 30 std::cerr << "IN " << file << ":" << std::dec << line << ": " << function << std::endl; in AssertionFail()
|
H A D | bit_memory_region-inl.h | 60 os << std::dec; in Dump() member in ark::std
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | printing.cpp | 64 << static_cast<unsigned int>(c) << std::dec; in PrintString() member in maple::std
|
H A D | mir_function.cpp | 315 LogInfo::MapleLogger() << std::dec << "]\n"; in DumpUpFormal() member in maple::std 328 LogInfo::MapleLogger() << std::dec << "]\n"; in DumpUpFormal() member in maple::std 346 LogInfo::MapleLogger() << std::dec << "]\n"; in DumpFrame() member in maple::std 358 LogInfo::MapleLogger() << std::dec << "]\n"; in DumpFrame() member in maple::std
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | verifier.cpp | 46 LOG_COMPILER(ERROR) << "at: " << std::dec << gate; in RunDataIntegrityCheck() 60 LOG_COMPILER(ERROR) << "at: " << std::dec << out; in RunDataIntegrityCheck() 69 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 74 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 84 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 89 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 97 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 102 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck()
|
/arkcompiler/runtime_core/static_core/compiler/code_info/ |
H A D | code_info.cpp | 61 stream << "InlineInfo #" << depth << ": bpc=0x" << std::hex << ii.GetBytecodePc() << std::dec in DumpInlineInfo()
|
/arkcompiler/ets_runtime/ecmascript/deoptimizer/ |
H A D | calleeReg.cpp | 60 LOG_FULL(FATAL) << "reg:" << std::dec << reg; in FindCallRegOrder()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/heap-space-misc/ |
H A D | crossing_map.cpp | 69 LOG_CROSSING_MAP(DEBUG) << "Try to AddObject with addr " << std::hex << objAddr << " and size " << std::dec in AddObject() 148 LOG_CROSSING_MAP(DEBUG) << "Try to RemoveObject with addr " << std::hex << objAddr << " and size " << std::dec in RemoveObject() 182 << std::hex << nextObjAddr << " as INITIALIZED with offset " << std::dec in RemoveObject() 241 LOG_CROSSING_MAP(DEBUG) << "FindFirstObject for maps [" << std::dec << firstMap << ", " << lastMap << "]"; in FindFirstObject()
|