reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/unittests/Process/minidump/RegisterContextMinidumpTest.cpp
   31   Context.context_flags =
   36   Context.eax = 0x00010203;
   37   Context.ebx = 0x04050607;
   38   Context.ecx = 0x08090a0b;
   39   Context.edx = 0x0c0d0e0f;
   40   Context.edi = 0x10111213;
   41   Context.esi = 0x14151617;
   42   Context.ebp = 0x18191a1b;
   43   Context.esp = 0x1c1d1e1f;
   44   Context.eip = 0x20212223;
   45   Context.eflags = 0x24252627;
   46   Context.cs = 0x2829;
   47   Context.fs = 0x2a2b;
   48   Context.gs = 0x2c2d;
   49   Context.ss = 0x2e2f;
   50   Context.ds = 0x3031;
   51   Context.es = 0x3233;
   52   llvm::ArrayRef<uint8_t> ContextRef(reinterpret_cast<uint8_t *>(&Context),
   53                                      sizeof(Context));
   64   EXPECT_EQ(Context.eax, reg32(*Buf, Info[lldb_eax_i386]));
   65   EXPECT_EQ(Context.ebx, reg32(*Buf, Info[lldb_ebx_i386]));
   66   EXPECT_EQ(Context.ecx, reg32(*Buf, Info[lldb_ecx_i386]));
   67   EXPECT_EQ(Context.edx, reg32(*Buf, Info[lldb_edx_i386]));
   68   EXPECT_EQ(Context.edi, reg32(*Buf, Info[lldb_edi_i386]));
   69   EXPECT_EQ(Context.esi, reg32(*Buf, Info[lldb_esi_i386]));
   70   EXPECT_EQ(Context.ebp, reg32(*Buf, Info[lldb_ebp_i386]));
   71   EXPECT_EQ(Context.esp, reg32(*Buf, Info[lldb_esp_i386]));
   72   EXPECT_EQ(Context.eip, reg32(*Buf, Info[lldb_eip_i386]));
   73   EXPECT_EQ(Context.eflags, reg32(*Buf, Info[lldb_eflags_i386]));
   74   EXPECT_EQ(Context.cs, reg32(*Buf, Info[lldb_cs_i386]));
   75   EXPECT_EQ(Context.fs, reg32(*Buf, Info[lldb_fs_i386]));
   76   EXPECT_EQ(Context.gs, reg32(*Buf, Info[lldb_gs_i386]));
   77   EXPECT_EQ(Context.ss, reg32(*Buf, Info[lldb_ss_i386]));
   78   EXPECT_EQ(Context.ds, reg32(*Buf, Info[lldb_ds_i386]));
   79   EXPECT_EQ(Context.es, reg32(*Buf, Info[lldb_es_i386]));