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

Side by Side Diff: test/cctest/test-reloc-info.cc

Issue 2001073002: [build] Fix a clang warning (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 7 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
« no previous file with comments | « test/cctest/test-log.cc ('k') | test/cctest/trace-extension.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 byte* pc = buffer.get(); 51 byte* pc = buffer.get();
52 byte* buffer_end = buffer.get() + buffer_size; 52 byte* buffer_end = buffer.get() + buffer_size;
53 53
54 RelocInfoWriter writer(buffer_end, pc); 54 RelocInfoWriter writer(buffer_end, pc);
55 byte* relocation_info_end = buffer_end - relocation_info_size; 55 byte* relocation_info_end = buffer_end - relocation_info_size;
56 for (int i = 0, pos = 0; i < 100; i++, pc += i, pos += i) { 56 for (int i = 0, pos = 0; i < 100; i++, pc += i, pos += i) {
57 RelocInfo::Mode mode = (i % 2 == 0) ? 57 RelocInfo::Mode mode = (i % 2 == 0) ?
58 RelocInfo::STATEMENT_POSITION : RelocInfo::POSITION; 58 RelocInfo::STATEMENT_POSITION : RelocInfo::POSITION;
59 if (mode == RelocInfo::STATEMENT_POSITION) { 59 if (mode == RelocInfo::STATEMENT_POSITION) {
60 printf("TEST WRITING STATEMENT %p %d\n", pc, pos); 60 printf("TEST WRITING STATEMENT %p %d\n", static_cast<void*>(pc), pos);
61 } else { 61 } else {
62 printf("TEST WRITING POSITION %p %d\n", pc, pos); 62 printf("TEST WRITING POSITION %p %d\n", static_cast<void*>(pc), pos);
63 } 63 }
64 WriteRinfo(&writer, pc, mode, pos); 64 WriteRinfo(&writer, pc, mode, pos);
65 CHECK(writer.pos() - RelocInfoWriter::kMaxSize >= relocation_info_end); 65 CHECK(writer.pos() - RelocInfoWriter::kMaxSize >= relocation_info_end);
66 } 66 }
67 67
68 writer.Finish(); 68 writer.Finish();
69 relocation_info_size = static_cast<int>(buffer_end - writer.pos()); 69 relocation_info_size = static_cast<int>(buffer_end - writer.pos());
70 MacroAssembler assm(CcTest::i_isolate(), nullptr, 0, CodeObjectRequired::kNo); 70 MacroAssembler assm(CcTest::i_isolate(), nullptr, 0, CodeObjectRequired::kNo);
71 CodeDesc desc = {buffer.get(), buffer_size, code_size, 71 CodeDesc desc = {buffer.get(), buffer_size, code_size,
72 relocation_info_size, 0, &assm}; 72 relocation_info_size, 0, &assm};
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 CHECK_EQ(mode, it.rinfo()->rmode()); 117 CHECK_EQ(mode, it.rinfo()->rmode());
118 CHECK_EQ(pos, static_cast<int>(it.rinfo()->data())); 118 CHECK_EQ(pos, static_cast<int>(it.rinfo()->data()));
119 it.next(); 119 it.next();
120 } 120 }
121 CHECK(it.done()); 121 CHECK(it.done());
122 } 122 }
123 } 123 }
124 124
125 } // namespace internal 125 } // namespace internal
126 } // namespace v8 126 } // namespace v8
OLDNEW
« no previous file with comments | « test/cctest/test-log.cc ('k') | test/cctest/trace-extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698