Home
last modified time | relevance | path

Searched refs:DEBUG (Results 1 – 25 of 126) sorted by relevance

123456

/ark/js_runtime/ecmascript/compiler/llvm/
Dllvm_stackmap_parser.h41 LOG_ECMA(DEBUG) << "----- head ----"; in Print()
42 LOG_ECMA(DEBUG) << " version:" << static_cast<int>(stackmapversion); in Print()
43 LOG_ECMA(DEBUG) << "+++++ head ++++"; in Print()
54 LOG_ECMA(DEBUG) << " functionAddress:0x" << std::hex << functionAddress; in Print()
55 LOG_ECMA(DEBUG) << " stackSize:0x" << std::hex << stackSize; in Print()
56 LOG_ECMA(DEBUG) << " recordCount:" << std::hex << recordCount; in Print()
65 LOG_ECMA(DEBUG) << " LargeConstant:0x" << std::hex << LargeConstant; in Print()
76 LOG_ECMA(DEBUG) << " PatchPointID:0x" << std::hex << PatchPointID; in Print()
77 LOG_ECMA(DEBUG) << " instructionOffset:0x" << std::hex << InstructionOffset; in Print()
78 LOG_ECMA(DEBUG) << " Reserved:0x" << std::hex << Reserved; in Print()
[all …]
/ark/runtime_core/runtime/mem/
Dhumongous_obj_allocator-inl.h33 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Initializing HumongousObjAllocator"; in HumongousObjAllocator()
40 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Destroying HumongousObjAllocator"; in ~HumongousObjAllocator()
48 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Try to allocate memory with size " << size; in Alloc()
53 … LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "The align is too big for this allocator. Return nullptr."; in Alloc()
65 … LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "The size is too big for this allocator. Return nullptr."; in Alloc()
72 …LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Find reserved memory block with size " << mem_header->GetPo… in Alloc()
79 …LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Find free memory block with size " << mem_header->GetPoolSi… in Alloc()
84 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Can't find memory for this size"; in Alloc()
108 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Try to free memory at invalid addr 0"; in FreeUnsafe()
111 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Try to free memory at addr " << std::hex << mem; in FreeUnsafe()
[all …]
Drunslots_allocator-inl.h35 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Initializing RunSlotsAllocator"; in RunSlotsAllocator()
42 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Destroying RunSlotsAllocator"; in ~RunSlotsAllocator()
50 …LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Try to allocate " << size << " bytes of memory with align " << a… in Alloc()
52 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Failed to allocate - size of object is null"; in Alloc()
57 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Change size of allocation to " << alignment_size in Alloc()
62 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Failed to allocate - size of object is too big"; in Alloc()
75 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "We don't have free RunSlots for size " << run_slot_size in Alloc()
86 LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Get RunSlots from free list"; in Alloc()
88 LOG_RUNSLOTS_ALLOCATOR(DEBUG) in Alloc()
92 … LOG_RUNSLOTS_ALLOCATOR(DEBUG) << "Failed to allocate an object, couldn't create RunSlots"; in Alloc()
[all …]
Dfreelist_allocator-inl.h33 LOG_FREELIST_ALLOCATOR(DEBUG) << "Initializing FreeListAllocator"; in FreeListAllocator()
41 LOG_FREELIST_ALLOCATOR(DEBUG) << "Destroying FreeListAllocator"; in ~FreeListAllocator()
50 LOG_FREELIST_ALLOCATOR(DEBUG) << "Try to allocate object with size " << std::dec << size; in Alloc()
53 …LOG_FREELIST_ALLOCATOR(DEBUG) << "Try to allocate an object with size less than min for this alloc… in Alloc()
59 … LOG_FREELIST_ALLOCATOR(DEBUG) << "Align size to default alignment. New size = " << alloc_size; in Alloc()
62 …LOG_FREELIST_ALLOCATOR(DEBUG) << "Try allocate too big memory for free list allocator. Return null… in Alloc()
68 LOG_FREELIST_ALLOCATOR(DEBUG) << "Couldn't allocate memory"; in Alloc()
71 …LOG_FREELIST_ALLOCATOR(DEBUG) << "Found memory block at addr = " << std::hex << memory_block << " … in Alloc()
77 …LOG_FREELIST_ALLOCATOR(DEBUG) << "Raw memory is not aligned as we need. Create special header for … in Alloc()
86 … LOG_FREELIST_ALLOCATOR(DEBUG) << "Created padding header at addr " << std::hex << padding_header; in Alloc()
[all …]
Dframe_allocator-inl.h36 LOG_FRAME_ALLOCATOR(DEBUG) << "Initializing of FrameAllocator"; in FrameAllocator()
49 LOG_FRAME_ALLOCATOR(DEBUG) << "Destroying of FrameAllocator"; in ~FrameAllocator()
51 LOG_FRAME_ALLOCATOR(DEBUG) << "Free arena at addr " << std::hex << last_alloc_arena_; in ~FrameAllocator()
64 LOG_FRAME_ALLOCATOR(DEBUG) << "Try to allocate a new arena with size " << arena_size; in TryAllocateNewArena()
68 LOG_FRAME_ALLOCATOR(DEBUG) << "Couldn't get memory for a new arena"; in TryAllocateNewArena()
76 …LOG_FRAME_ALLOCATOR(DEBUG) << "Successfully allocate new arena with addr " << std::hex << new_aren… in TryAllocateNewArena()
88 …LOG_FRAME_ALLOCATOR(DEBUG) << "Can't allocate " << size << " bytes for a new frame in current aren… in Alloc()
90 LOG_FRAME_ALLOCATOR(DEBUG) << "Can't allocate a new arena, return nullptr"; in Alloc()
95 …LOG_FRAME_ALLOCATOR(DEBUG) << "Can't allocate memory in a totally free arena, change default arena… in Alloc()
144 LOG_FRAME_ALLOCATOR(DEBUG) << "TryToPush failed - we don't have a free arena"; in TryToAllocate()
[all …]
Dtlab.cpp31 …LOG_TLAB_ALLOCATOR(DEBUG) << "Construct a new TLAB at addr " << std::hex << address << " with size… in TLAB()
42 …LOG_TLAB_ALLOCATOR(DEBUG) << "Fill a TLAB with buffer at addr " << std::hex << address << " with s… in Fill()
48 …LOG_TLAB_ALLOCATOR(DEBUG) << "Destroy a TLAB at addr " << std::hex << memory_start_addr_ << " with… in ~TLAB()
54 LOG_TLAB_ALLOCATOR(DEBUG) << "Destroy the TLAB at addr " << std::hex << this; in Destroy()
69 LOG_TLAB_ALLOCATOR(DEBUG) << "Alloc size = " << size << " at addr = " << ret; in Alloc()
75 LOG_TLAB_ALLOCATOR(DEBUG) << __func__ << " started"; in IterateOverObjects()
84 LOG_TLAB_ALLOCATOR(DEBUG) << __func__ << " finished"; in IterateOverObjects()
90 LOG_TLAB_ALLOCATOR(DEBUG) << __func__ << " started"; in IterateOverObjectsInRange()
107 LOG_TLAB_ALLOCATOR(DEBUG) << __func__ << " finished"; in IterateOverObjectsInRange()
Drunslots.cpp49 LOG_RUNSLOTS(DEBUG) << "- Memory started from = 0x" << std::hex << ToUintPtr(this); in Initialize()
50 LOG_RUNSLOTS(DEBUG) << "- Pool size = " << RUNSLOTS_SIZE << " bytes"; in Initialize()
51 LOG_RUNSLOTS(DEBUG) << "- Slots size = " << slot_size_ << " bytes"; in Initialize()
52 LOG_RUNSLOTS(DEBUG) << "- First free slot = " << std::hex << static_cast<void *>(next_free_); in Initialize()
53 LOG_RUNSLOTS(DEBUG) << "- First uninitialized slot offset = " << std::hex in Initialize()
55 …LOG_RUNSLOTS(DEBUG) << "- Pool pointer = " << std::hex << static_cast<void *>(ToVoidPtr(pool_point… in Initialize()
56 LOG_RUNSLOTS(DEBUG) << "Successfully finished RunSlots init"; in Initialize()
68 LOG_RUNSLOTS(DEBUG) << "Failed to get free slot - there are no free slots in RunSlots"; in PopFreeSlot()
81 … LOG_RUNSLOTS(DEBUG) << "Successfully get free slot " << std::hex << static_cast<void *>(free_slot) in PopFreeSlot()
91 …LOG_RUNSLOTS(DEBUG) << "Free slot in RunSlots at addr " << std::hex << static_cast<void *>(mem_slo… in PushFreeSlot()
[all …]
Dinternal_allocator.cpp73 LOG_INTERNAL_ALLOCATOR(DEBUG) << "Failed to allocate - size of object is zero"; in Alloc()
125 LOG_INTERNAL_ALLOCATOR(DEBUG) << "Destroying InternalAllocator"; in ~InternalAllocator()
150 … LOG_INTERNAL_ALLOCATOR(DEBUG) << "RunSlotsAllocator didn't allocate memory, try to add new pool"; in AllocInRunSlots()
157 …LOG_INTERNAL_ALLOCATOR(DEBUG) << "RunSlotsAllocator try to allocate memory again after pool adding… in AllocInRunSlots()
173 LOG_INTERNAL_ALLOCATOR(DEBUG) << "Try to use RunSlotsAllocator"; in AllocViaPandaAllocators()
180 LOG_INTERNAL_ALLOCATOR(DEBUG) << "Try to use thread-local RunSlotsAllocator"; in AllocViaPandaAllocators()
189 LOG_INTERNAL_ALLOCATOR(DEBUG) << "Try to use FreeListAllocator"; in AllocViaPandaAllocators()
200 … LOG_INTERNAL_ALLOCATOR(DEBUG) << "FreeListAllocator didn't allocate memory, try to add new pool"; in AllocViaPandaAllocators()
211 LOG_INTERNAL_ALLOCATOR(DEBUG) << "Try to use HumongousObjAllocator"; in AllocViaPandaAllocators()
222 …LOG_INTERNAL_ALLOCATOR(DEBUG) << "HumongousObjAllocator didn't allocate memory, try to add new poo… in AllocViaPandaAllocators()
[all …]
Dbump-allocator-inl.h39 LOG_BUMP_ALLOCATOR(DEBUG) << "Initializing of BumpPointerAllocator"; in BumpPointerAllocator()
48 LOG_BUMP_ALLOCATOR(DEBUG) << "Destroying of BumpPointerAllocator"; in ~BumpPointerAllocator()
69 …LOG_BUMP_ALLOCATOR(DEBUG) << "Expand memory: Add " << std::dec << size << " bytes of memory at add… in ExpandMemory()
83 LOG_BUMP_ALLOCATOR(DEBUG) << "Try to allocate " << std::dec << size << " bytes of memory"; in Alloc()
102 LOG_BUMP_ALLOCATOR(DEBUG) << "Couldn't allocate memory"; in Alloc()
119 LOG_BUMP_ALLOCATOR(DEBUG) << "Try to create a TLAB with size " << std::dec << size; in CreateNewTLAB()
136 LOG_BUMP_ALLOCATOR(DEBUG) << "Reached the limit of TLABs inside the allocator"; in CreateNewTLAB()
139 …LOG_BUMP_ALLOCATOR(DEBUG) << "Don't have enough memory for new TLAB with size " << std::dec << siz… in CreateNewTLAB()
165 LOG_BUMP_ALLOCATOR(DEBUG) << "Iteration over objects started"; in IterateOverObjects()
176 LOG_BUMP_ALLOCATOR(DEBUG) << "Iterate over TLABs"; in IterateOverObjects()
[all …]
Drendezvous.cpp28 LOG(DEBUG, GC) << "Rendezvous: SafepointBegin"; in SafepointBegin()
38 LOG(DEBUG, GC) << "Rendezvous: SafepointEnd"; in SafepointEnd()
43 LOG(DEBUG, GC) << "Rendezvous: SafepointEnd exit"; in SafepointEnd()
/ark/runtime_core/runtime/mem/gc/
Dcrossing_map.cpp33 LOG_CROSSING_MAP(DEBUG) << "Create CrossingMap with start_addr 0x" << std::hex << start_addr_; in CrossingMap()
69 …LOG_CROSSING_MAP(DEBUG) << "Try to AddObject with addr " << std::hex << obj_addr << " and size " <… in AddObject()
76 LOG_CROSSING_MAP(DEBUG) << "AddObject - state of the map num " << first_map_num in AddObject()
81 LOG_CROSSING_MAP(DEBUG) << "AddObject - state of the map num " << first_map_num in AddObject()
87 LOG_CROSSING_MAP(DEBUG) << "AddObject - state of the map num " << first_map_num in AddObject()
95 LOG_CROSSING_MAP(DEBUG) << "AddObject - state of the map num " << first_map_num in AddObject()
119 …LOG_CROSSING_MAP(DEBUG) << "AddObject - set CROSSED_BORDER to map num " << i << " with offset " <<… in UpdateCrossedBorderOnAdding()
140 …LOG_CROSSING_MAP(DEBUG) << "AddObject - set CROSSED_BORDER or INITIALIZED_AND_CROSSED_BORDERS to f… in UpdateCrossedBorderOnAdding()
147 …LOG_CROSSING_MAP(DEBUG) << "Try to RemoveObject with addr " << std::hex << obj_addr << " and size … in RemoveObject()
160 … LOG_CROSSING_MAP(DEBUG) << "RemoveObject - it is the first object in map num " << first_map_num in RemoveObject()
[all …]
Dgc_queue.cpp31 LOG(DEBUG, GC) << "GetTask() Return INVALID_CAUSE"; in GetTask()
34 LOG(DEBUG, GC) << "Empty " << queue_name_ << ", waiting..."; in GetTask()
43 LOG(DEBUG, GC) << "GetTask TimedWait"; in GetTask()
49 LOG(DEBUG, GC) << "Extract a task from a " << queue_name_; in GetTask()
57 … LOG(DEBUG, GC) << "Skip AddTask to queue: " << queue_name_ << " cause it's finalized already"; in AddTask()
61 LOG(DEBUG, GC) << "Add task to a " << queue_name_; in AddTask()
78 LOG(DEBUG, GC) << "Clear a " << queue_name_; in Finalize()
Dgc_root.cpp143 LOG(DEBUG, GC) << "Start collecting roots for thread " << thread->GetId(); in VisitRootsForThread()
146 LOG(DEBUG, GC) << " Found root for thread" << GetDebugInfoAboutObject(obj); in VisitRootsForThread()
149 LOG(DEBUG, GC) << "Finish collecting roots for thread " << thread->GetId(); in VisitRootsForThread()
158 LOG(DEBUG, GC) << " VisitRoots frame " << std::hex << stack.GetFp(); in VisitLocalRoots()
180 LOG(DEBUG, GC) << " Found root for register" << GetDebugInfoAboutObject(object_header); in VisitRegisterRoot()
212 LOG(DEBUG, GC) << "Start collecting roots for classes"; in VisitClassRoots()
216 LOG(DEBUG, GC) << " Found class root " << GetDebugInfoAboutObject(cls->GetManagedObject()); in VisitClassRoots()
221 LOG(DEBUG, GC) << "Finish collecting roots for classes"; in VisitClassRoots()
227 LOG(DEBUG, GC) << "=== ThreadLocals Update moved. BEGIN ==="; in UpdateThreadLocals()
238 LOG(DEBUG, GC) << "=== ThreadLocals Update moved. END ==="; in UpdateThreadLocals()
[all …]
Dgc_trigger.cpp44 …LOG(DEBUG, GC_TRIGGER) << "GCTriggerHeap created, min heap size " << min_heap_size << ", percent t… in GCTriggerHeap()
51 LOG(DEBUG, GC_TRIGGER) << "SetTempTargetFootprint target_footprint = " << target_size; in SetMinTargetFootprint()
82 LOG(DEBUG, GC_TRIGGER) << "ComputeNewTargetFootprint target_footprint = " << target; in ComputeNewTargetFootprint()
93 LOG(DEBUG, GC_TRIGGER) << "GCTriggerHeap triggered"; in IsGcTriggered()
112 trigger_type = GCTriggerType::DEBUG; in CreateGCTrigger()
130 case GCTriggerType::DEBUG: in CreateGCTrigger()
154 LOG(DEBUG, GC_TRIGGER) << "GCTriggerDebug created"; in GCTriggerDebug()
161 LOG(DEBUG, GC_TRIGGER) << "GCTriggerDebug counter " << counter; in IsGcTriggered()
163 LOG(DEBUG, GC_TRIGGER) << "GCTriggerDebug triggered"; in IsGcTriggered()
/ark/js_runtime/ecmascript/compiler/
Dllvm_ir_builder.cpp225 …COMPILER_LOG(DEBUG) << "Basicblock id :" << bb->GetId() << "impl:" << bb->GetImpl<LLVMTFBuilderBas… in StartBuilder()
346 LOG_ECMA(DEBUG) << "store value:" << value << " " in GenPrologue()
396 …COMPILER_LOG(DEBUG) << "create LLVMBB = " << buf << " impl:" << bb->GetImpl<LLVMTFBuilderBasicBloc… in EnsureBasicBlock()
646 COMPILER_LOG(DEBUG) << LLVMPrintTypeToString(dataType); in VisitAlloca()
647 COMPILER_LOG(DEBUG) << LLVMPrintTypeToString(ConvertLLVMTypeFromGate(gate)); in VisitAlloca()
667 …COMPILER_LOG(DEBUG) << "srcGate: " << srcGates[i] << " dominated gateId:" << gateId << "dominated … in VisitPhi()
673 COMPILER_LOG(DEBUG) << "bb : " << bb; in VisitPhi()
711 COMPILER_LOG(DEBUG) << " gate: " << gate << " popCount: " << popCount; in VisitReturn()
712 COMPILER_LOG(DEBUG) << " return: " << operand << " gateId: " << circuit_->GetId(operand); in VisitReturn()
714 COMPILER_LOG(DEBUG) << LLVMValueToString(returnValue); in VisitReturn()
[all …]
/ark/runtime_core/libpandabase/mem/
Dmalloc_mem_pool-inl.h33 LOG_MALLOC_MEM_POOL(DEBUG) << "Successfully initialized MallocMemPool"; in MallocMemPool()
41 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 << size_for_buff in AllocArenaImpl()
66 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << arena->GetSize() in FreeArenaImpl()
76 LOG_MALLOC_MEM_POOL(DEBUG) << "Free arena call finished"; in FreeArenaImpl()
84 LOG_MALLOC_MEM_POOL(DEBUG) << "Try to get new pool with size " << std::dec << size << " for " in AllocPoolImpl()
88 …LOG_MALLOC_MEM_POOL(DEBUG) << "Allocated new pool with size " << std::dec << size << " at addr = "… in AllocPoolImpl()
96 …LOG_MALLOC_MEM_POOL(DEBUG) << "Try to free pool with size " << std::dec << size << " at addr = " <… in FreePoolImpl()
98 LOG_MALLOC_MEM_POOL(DEBUG) << "Free pool call finished"; in FreePoolImpl()
Dmmap_mem_pool-inl.h133 … LOG_MMAP_MEM_POOL(DEBUG) << "Successfully initialized MMapMemPool. Object memory start from addr " in MmapMemPool()
159 LOG_MMAP_MEM_POOL(DEBUG) << "Try to get new arena with size " << std::dec << size << " for " in AllocArenaImpl()
171 …LOG_MMAP_MEM_POOL(DEBUG) << "Allocated new arena with size " << std::dec << pool_for_arena.GetSize… in AllocArenaImpl()
185 …LOG_MMAP_MEM_POOL(DEBUG) << "Try to free arena with size " << std::dec << size << " at addr = " <<… in FreeArenaImpl()
188 LOG_MMAP_MEM_POOL(DEBUG) << "Free arena call finished"; in FreeArenaImpl()
200 …LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(SpaceType::SPACE_TYPE_COMP… in AllocRawMemCompilerImpl()
214 …LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(SpaceType::SPACE_TYPE_INTE… in AllocRawMemInternalImpl()
228 …LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(SpaceType::SPACE_TYPE_CODE… in AllocRawMemCodeImpl()
236 … LOG_MMAP_MEM_POOL(DEBUG) << "Occupied memory for " << SpaceTypeToString(type) << " - " << std::dec in AllocRawMemObjectImpl()
270 …LOG_MMAP_MEM_POOL(DEBUG) << "OOM when trying to allocate " << size << " bytes for " << SpaceTypeTo… in AllocRawMemImpl()
[all …]
/ark/runtime_core/libpandabase/utils/
Djson_parser.cpp51 LOG_JSON(DEBUG) << "Parsing object"; in GetJsonObject()
64 LOG_JSON(DEBUG) << "Got a comma-separator, getting a new \"key-value\" pair"; in GetJsonObject()
107 LOG_JSON(DEBUG) << "Added entry with key \"" << key << "\""; in InsertKeyValuePairIn()
108 LOG_JSON(DEBUG) << "Parsed `key: value` pair:"; in InsertKeyValuePairIn()
109 LOG_JSON(DEBUG) << "- key: \"" << key << '"'; in InsertKeyValuePairIn()
111 LOG_JSON(DEBUG) << "- value: \"" << *obj->GetValueSourceString(key) << '"'; in InsertKeyValuePairIn()
132 LOG_JSON(DEBUG) << "Got a string: \"" << string << '"'; in GetString()
148 LOG_JSON(DEBUG) << "Got an number: " << num; in GetNum()
161 LOG_JSON(DEBUG) << "Got a boolean: " << std::boolalpha << boolean; in GetBool()
203 LOG_JSON(DEBUG) << "Got an inner JSON-object"; in GetValue()
[all …]
/ark/runtime_core/verification/debug/handlers/
Dconfig_handler_method_options.cpp64 LOG(DEBUG, VERIFIER) << "Wrong set of messages: '" << lines << "'"; in ProcessSectionMsg()
89 LOG(DEBUG, VERIFIER) << "Wrong options: '" << lines << "'"; in ProcessSectionShow()
102 LOG(DEBUG, VERIFIER) << "Wrong option: '" << option << "'"; in ProcessSectionShow()
121 LOG(DEBUG, VERIFIER) << "Wrong uplevel options: '" << lines << "'"; in ProcessSectionUplevel()
126 LOG(DEBUG, VERIFIER) << "Cannot find uplevel options: '" << uplevel << "'"; in ProcessSectionUplevel()
143 LOG(DEBUG, VERIFIER) << "Wrong checks section: '" << lines << "'"; in ProcessSectionCheck()
158 LOG(DEBUG, VERIFIER) << "Wrong check type: '" << c << "'"; in ProcessSectionCheck()
205 LOG(DEBUG, VERIFIER) << "Wrong section: '" << s.name << "'"; in MethodOptionsProcessor()
210 LOG(DEBUG, VERIFIER) << options.Image(VerifierMessageToString<PandaString>); in MethodOptionsProcessor()
232 LOG(DEBUG, VERIFIER) << "Cannot parse default internal config. Internal error."; in RegisterConfigHandlerMethodOptions()
[all …]
Dconfig_handler_allowlist.cpp75 … LOG(DEBUG, VERIFIER) << "Wrong debug verifier allowlist section: '" << s.name << "'"; in RegisterConfigHandlerAllowlist()
83 LOG(DEBUG, VERIFIER) << "Wrong allowlist line: '" << i << "'"; in RegisterConfigHandlerAllowlist()
90 … LOG(DEBUG, VERIFIER) << "Added to allowlist config '" << s.name << "' methods from class '" << c in RegisterConfigHandlerAllowlist()
94 … LOG(DEBUG, VERIFIER) << "Added to allowlist config '" << s.name << "' method '" << c in RegisterConfigHandlerAllowlist()
/ark/runtime_core/assembler/
Dlexer.cpp149 LOG(DEBUG, ASSEMBLER) << "element of class Lexer initialized"; in Lexer()
154 LOG(DEBUG, ASSEMBLER) << "element of class Lexer destructed"; in ~Lexer()
159 LOG(DEBUG, ASSEMBLER) << "started tokenizing of line " << lines_.size() + 1 << ": "; in TokenizeString()
165 LOG(DEBUG, ASSEMBLER) << std::string_view(&*(curr_line_->buffer.begin() + curr_line_->pos), in TokenizeString()
170 LOG(DEBUG, ASSEMBLER) << "tokenization of line " << lines_.size() << " is successful"; in TokenizeString()
171 LOG(DEBUG, ASSEMBLER) << " tokens identified: "; in TokenizeString()
174 LOG(DEBUG, ASSEMBLER) << "\n " in TokenizeString()
179 LOG(DEBUG, ASSEMBLER); in TokenizeString()
180 LOG(DEBUG, ASSEMBLER); in TokenizeString()
273 LOG(DEBUG, ASSEMBLER) << "token search started (line " << lines_.size() << "): " in LexTokens()
[all …]
/ark/runtime_core/runtime/
Dlocks.cpp49 LOG(DEBUG, RUNTIME) << "MutatorLock::ReadLock"; in ReadLock()
57 LOG(DEBUG, RUNTIME) << "MutatorLock::WriteLock"; in WriteLock()
64 LOG(DEBUG, RUNTIME) << "MutatorLock::TryReadLock"; in TryReadLock()
74 LOG(DEBUG, RUNTIME) << "MutatorLock::TryWriteLock"; in TryWriteLock()
85 LOG(DEBUG, RUNTIME) << "MutatorLock::Unlock"; in Unlock()
Dmonitor.cpp127 …LOG(DEBUG, RUNTIME) << "Try to enter monitor " << std::hex << obj << " with state " << std::dec <… in MonitorEnter()
151 … LOG(DEBUG, RUNTIME) << "The lightweight monitor was successfully recursively acquired"; in MonitorEnter()
257 … LOG(DEBUG, RUNTIME) << "The lightweight monitor was successfully acquired for the first time"; in MonitorEnter()
288 …LOG(DEBUG, RUNTIME) << "Try to exit monitor " << std::hex << obj << " with state " << std::dec <<… in MonitorExit()
300 … LOG(DEBUG, RUNTIME) << "Calling MonitorEnter on object which isn't owned by this thread"; in MonitorExit()
311 LOG(DEBUG, RUNTIME) << "Exited lightweight lock"; in MonitorExit()
353 LOG(DEBUG, RUNTIME) << "Try to wait with state " << state; in Wait()
448 LOG(DEBUG, RUNTIME) << "Try to notify with state " << state; in Notify()
496 LOG(DEBUG, RUNTIME) << "Try to notify all with state " << state; in NotifyAll()
546 LOG(DEBUG, RUNTIME) << "The fat monitor was successfully recursively acquired"; in Acquire()
[all …]
/ark/js_runtime/ecmascript/tooling/backend/
Djs_pt_hooks.cpp23 LOG(DEBUG, DEBUGGER) << "JSPtHooks: Breakpoint => " << location.GetMethodId() << ": " in Breakpoint()
32 LOG(DEBUG, DEBUGGER) << "JSPtHooks: Exception"; in Exception()
40 LOG(DEBUG, DEBUGGER) << "JSPtHooks: SingleStep => " << location.GetBytecodeOffset(); in SingleStep()
76 LOG(DEBUG, DEBUGGER) << "JSPtHooks: PendingJobEntry"; in PendingJobEntry()
/ark/runtime_core/verification/gen/templates/
Djob_fill_gen.h.erb17 …LOG(DEBUG, VERIFIER) << "JOBFILL: " << std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill…
32 …LOG(DEBUG, VERIFIER) << "JOBFILL: Filling Job cache for method '" << job.JobCachedMethod().name <<…
71 …LOG(DEBUG, VERIFIER) << "JOBFILL: Cannot get literal tag with id=" << std::hex << id << " for offs…
102 …LOG(DEBUG, VERIFIER) << "JOBFILL: Cannot find class for literal with id=" << std::hex << id << " f…
114 LOG(DEBUG, VERIFIER) << "JOBFILL: Cannot resolve method";
124 LOG(DEBUG, VERIFIER) << "JOBFILL: Cannot resolve field";
134 LOG(DEBUG, VERIFIER) << "JOBFILL: Cannot resolve field";
143 LOG(DEBUG, VERIFIER) << "JOBFILL: Cannot resolve string class";
157 LOG(DEBUG, VERIFIER) << "Opcode value is out of range. "
165 LOG(DEBUG, VERIFIER) << "Invalid instruction. "
[all …]

123456