| Index: src/profile-generator-inl.h
|
| diff --git a/src/profile-generator-inl.h b/src/profile-generator-inl.h
|
| index 7a70b013bb2b861c2529563e782ace4f95eb3fbd..4fa159f9b09b0b1b55ee02ee19dca257c0fc4983 100644
|
| --- a/src/profile-generator-inl.h
|
| +++ b/src/profile-generator-inl.h
|
| @@ -95,7 +95,7 @@ CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
|
| }
|
|
|
|
|
| -uint64_t HeapObjectsMap::GetNthGcSubrootId(int delta) {
|
| +ObjectId HeapObjectsMap::GetNthGcSubrootId(int delta) {
|
| return kGcRootsFirstSubrootId + delta * kObjectIdStep;
|
| }
|
|
|
| @@ -115,10 +115,10 @@ int V8HeapExplorer::GetGcSubrootOrder(HeapObject* subroot) {
|
| }
|
|
|
|
|
| -uint64_t HeapEntry::id() {
|
| +ObjectId HeapEntry::id() {
|
| union {
|
| Id stored_id;
|
| - uint64_t returned_id;
|
| + ObjectId returned_id;
|
| } id_adaptor = {id_};
|
| return id_adaptor.returned_id;
|
| }
|
|
|