Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: courgette/disassembler_elf_32_x86_unittest.cc

Issue 2583373002: [Courgette] Simple AssemblyProgram and Disassembler cleanups. (Closed)
Patch Set: Sync. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "courgette/disassembler_elf_32_x86.h" 5 #include "courgette/disassembler_elf_32_x86.h"
6 6
7 #include <ctype.h> 7 #include <ctype.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 EXPECT_EQ(file1.length(), disassembler->length()); 82 EXPECT_EQ(file1.length(), disassembler->length());
83 83
84 const uint8_t* offset_p = disassembler->FileOffsetToPointer(0); 84 const uint8_t* offset_p = disassembler->FileOffsetToPointer(0);
85 EXPECT_EQ(reinterpret_cast<const void*>(file1.c_str()), 85 EXPECT_EQ(reinterpret_cast<const void*>(file1.c_str()),
86 reinterpret_cast<const void*>(offset_p)); 86 reinterpret_cast<const void*>(offset_p));
87 EXPECT_EQ(0x7F, offset_p[0]); 87 EXPECT_EQ(0x7F, offset_p[0]);
88 EXPECT_EQ('E', offset_p[1]); 88 EXPECT_EQ('E', offset_p[1]);
89 EXPECT_EQ('L', offset_p[2]); 89 EXPECT_EQ('L', offset_p[2]);
90 EXPECT_EQ('F', offset_p[3]); 90 EXPECT_EQ('F', offset_p[3]);
91 91
92 std::unique_ptr<AssemblyProgram> program(new AssemblyProgram(EXE_ELF_32_X86)); 92 std::unique_ptr<AssemblyProgram> program(
grt (UTC plus 2) 2017/01/12 11:56:41 auto program = base::MakeUnique<...>(...); (may as
huangs 2017/01/12 19:54:42 Done.
93 new AssemblyProgram(EXE_ELF_32_X86, 0));
93 94
94 EXPECT_TRUE(disassembler->Disassemble(program.get())); 95 EXPECT_TRUE(disassembler->Disassemble(program.get()));
95 96
96 const std::vector<RVA>& abs32_list = disassembler->Abs32Locations(); 97 const std::vector<RVA>& abs32_list = disassembler->Abs32Locations();
97 98
98 // Flatten the list typed rel32 to a list of rel32 RVAs. 99 // Flatten the list typed rel32 to a list of rel32 RVAs.
99 std::vector<RVA> rel32_list; 100 std::vector<RVA> rel32_list;
100 rel32_list.reserve(disassembler->Rel32Locations().size()); 101 rel32_list.reserve(disassembler->Rel32Locations().size());
101 for (auto& typed_rel32 : disassembler->Rel32Locations()) 102 for (auto& typed_rel32 : disassembler->Rel32Locations())
102 rel32_list.push_back(typed_rel32->rva()); 103 rel32_list.push_back(typed_rel32->rva());
(...skipping 26 matching lines...) Expand all
129 } 130 }
130 131
131 } // namespace 132 } // namespace
132 133
133 TEST_F(DisassemblerElf32X86Test, All) { 134 TEST_F(DisassemblerElf32X86Test, All) {
134 TestExe("elf-32-1", 200, 3337); 135 TestExe("elf-32-1", 200, 3337);
135 TestExe("elf-32-high-bss", 0, 4); 136 TestExe("elf-32-high-bss", 0, 4);
136 } 137 }
137 138
138 } // namespace courgette 139 } // namespace courgette
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698