Skip to content

Commit 1e111aa

Browse files
kvakilNo9
authored andcommitted
src: fix warnings
Fix various warnings which show up when compiling with gcc. For the most part this doesn't change any semantics -- the only user-facing change is a bug fix in `Printer::Stringify` caused by a missing `return`.
1 parent 8234105 commit 1e111aa

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

src/llscan.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ bool FindReferencesCmd::DoExecute(SBDebugger d, char** cmd,
494494
return false;
495495
}
496496

497-
ObjectScanner* scanner;
497+
ObjectScanner* scanner = nullptr;
498498

499499
switch (scan_options.scan_type) {
500500
case ScanOptions::ScanType::kFieldValue: {
@@ -596,7 +596,7 @@ bool FindReferencesCmd::DoExecute(SBDebugger d, char** cmd,
596596
void FindReferencesCmd::ScanForReferences(ObjectScanner* scanner) {
597597
// Walk all the object instances and handle them according to their type.
598598
TypeRecordMap mapstoinstances = llscan_->GetMapsToInstances();
599-
for (auto const entry : mapstoinstances) {
599+
for (auto const& entry : mapstoinstances) {
600600
TypeRecord* typerecord = entry.second;
601601

602602
for (uint64_t addr : typerecord->GetInstances()) {

src/llv8.cc

+6-5
Original file line numberDiff line numberDiff line change
@@ -119,22 +119,22 @@ double LLV8::LoadDouble(int64_t addr, Error& err) {
119119
}
120120

121121

122-
std::string LLV8::LoadBytes(int64_t addr, int64_t length, Error& err) {
122+
std::string LLV8::LoadBytes(int64_t addr, size_t length, Error& err) {
123123
uint8_t* buf = new uint8_t[length + 1];
124124
SBError sberr;
125-
process_.ReadMemory(addr, buf, static_cast<size_t>(length), sberr);
125+
process_.ReadMemory(addr, buf, length, sberr);
126126
if (sberr.Fail()) {
127127
err = Error::Failure(
128128
"Failed to load v8 backing store memory, "
129-
"addr=0x%016" PRIx64 ", length=%" PRId64,
129+
"addr=0x%016" PRIx64 ", length=%zu",
130130
addr, length);
131131
delete[] buf;
132132
return std::string();
133133
}
134134

135135
std::string res;
136136
char tmp[10];
137-
for (int i = 0; i < length; ++i) {
137+
for (size_t i = 0; i < length; ++i) {
138138
snprintf(tmp, sizeof(tmp), "%s%02x", (i == 0 ? "" : ", "), buf[i]);
139139
res += tmp;
140140
}
@@ -732,7 +732,8 @@ std::string Symbol::ToString(Error& err) {
732732
return "Symbol()";
733733
}
734734
HeapObject name = Name(err);
735-
RETURN_IF_INVALID(name, "Symbol(???)");
735+
// Use \? so we don't treat this as a trigraph.
736+
RETURN_IF_INVALID(name, "Symbol(\?\?\?)");
736737
return "Symbol('" + String(name).ToString(err) + "')";
737738
}
738739

src/llv8.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ class LLV8 {
669669
inline CheckedType<T> LoadUnsigned(int64_t addr, uint32_t byte_size);
670670
int64_t LoadUnsigned(int64_t addr, uint32_t byte_size, Error& err);
671671
double LoadDouble(int64_t addr, Error& err);
672-
std::string LoadBytes(int64_t addr, int64_t length, Error& err);
672+
std::string LoadBytes(int64_t addr, size_t length, Error& err);
673673
std::string LoadString(int64_t addr, int64_t length, Error& err);
674674
std::string LoadTwoByteString(int64_t addr, int64_t length, Error& err);
675675
uint8_t* LoadChunk(int64_t addr, int64_t length, Error& err);

src/printer.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ std::string Printer::Stringify(v8::JSArrayBuffer js_array_buffer, Error& err) {
365365
} else {
366366
res += " [\n ";
367367

368-
int display_length = std::min<int>(*byte_length, options_.length);
368+
size_t display_length = std::min<size_t>(*byte_length, options_.length);
369369
res += llv8_->LoadBytes(*data, display_length, err);
370370

371371
if (display_length < *byte_length) {
@@ -430,7 +430,7 @@ std::string Printer::Stringify(v8::JSTypedArray js_typed_array, Error& err) {
430430

431431
res += " [\n ";
432432

433-
int display_length = std::min<int>(*byte_length, options_.length);
433+
size_t display_length = std::min<size_t>(*byte_length, options_.length);
434434
res += llv8_->LoadBytes(*data + *byte_offset, display_length, err);
435435

436436
if (display_length < *byte_length) {
@@ -511,7 +511,7 @@ std::string Printer::Stringify(v8::Map map, Error& err) {
511511
return std::string(tmp) + ":" +
512512
Stringify<v8::FixedArray>(descriptors, err) + ">";
513513
} else {
514-
std::string(tmp) + ">";
514+
return std::string(tmp) + ">";
515515
}
516516
}
517517

0 commit comments

Comments
 (0)