Lines Matching refs:thread_context

351   lldb_private::minidump::MinidumpContext_x86_64 thread_context = {};  in GetThreadContext_64()  local
352 thread_context.p1_home = {}; in GetThreadContext_64()
353 thread_context.context_flags = static_cast<uint32_t>( in GetThreadContext_64()
358 thread_context.rax = read_register_u64(reg_ctx, "rax"); in GetThreadContext_64()
359 thread_context.rbx = read_register_u64(reg_ctx, "rbx"); in GetThreadContext_64()
360 thread_context.rcx = read_register_u64(reg_ctx, "rcx"); in GetThreadContext_64()
361 thread_context.rdx = read_register_u64(reg_ctx, "rdx"); in GetThreadContext_64()
362 thread_context.rdi = read_register_u64(reg_ctx, "rdi"); in GetThreadContext_64()
363 thread_context.rsi = read_register_u64(reg_ctx, "rsi"); in GetThreadContext_64()
364 thread_context.rbp = read_register_u64(reg_ctx, "rbp"); in GetThreadContext_64()
365 thread_context.rsp = read_register_u64(reg_ctx, "rsp"); in GetThreadContext_64()
366 thread_context.r8 = read_register_u64(reg_ctx, "r8"); in GetThreadContext_64()
367 thread_context.r9 = read_register_u64(reg_ctx, "r9"); in GetThreadContext_64()
368 thread_context.r10 = read_register_u64(reg_ctx, "r10"); in GetThreadContext_64()
369 thread_context.r11 = read_register_u64(reg_ctx, "r11"); in GetThreadContext_64()
370 thread_context.r12 = read_register_u64(reg_ctx, "r12"); in GetThreadContext_64()
371 thread_context.r13 = read_register_u64(reg_ctx, "r13"); in GetThreadContext_64()
372 thread_context.r14 = read_register_u64(reg_ctx, "r14"); in GetThreadContext_64()
373 thread_context.r15 = read_register_u64(reg_ctx, "r15"); in GetThreadContext_64()
374 thread_context.rip = read_register_u64(reg_ctx, "rip"); in GetThreadContext_64()
375 thread_context.eflags = read_register_u32(reg_ctx, "rflags"); in GetThreadContext_64()
376 thread_context.cs = read_register_u16(reg_ctx, "cs"); in GetThreadContext_64()
377 thread_context.fs = read_register_u16(reg_ctx, "fs"); in GetThreadContext_64()
378 thread_context.gs = read_register_u16(reg_ctx, "gs"); in GetThreadContext_64()
379 thread_context.ss = read_register_u16(reg_ctx, "ss"); in GetThreadContext_64()
380 thread_context.ds = read_register_u16(reg_ctx, "ds"); in GetThreadContext_64()
381 return thread_context; in GetThreadContext_64()
437 auto thread_context = GetThreadContext_64(reg_ctx); in AddThreadList() local
471 static_cast<llvm::support::ulittle32_t>(sizeof(thread_context)); in AddThreadList()
476 &thread_context, in AddThreadList()
523 auto thread_context = GetThreadContext_64(reg_ctx); in AddException() local
530 static_cast<llvm::support::ulittle32_t>(sizeof(thread_context)); in AddException()
535 &thread_context, sizeof(lldb_private::minidump::MinidumpContext_x86_64)); in AddException()