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

Issue 1475083002: [Refinery] Introduce TypePropagatorAnalyzer - pointer types. (Closed)

Created:
5 years ago by manzagop (departed)
Modified:
5 years ago
CC:
syzygy-changes_googlegroups.com
Base URL:
https://github.com/google/syzygy.git@master
Target Ref:
refs/heads/master
Project:
syzygy
Visibility:
Public.

Description

[Refinery] Introduce TypePropagatorAnalyzer - pointer types. The TypePropagatorAnalyzer processes the typed block layer looking for pointer types to generate new typed block information. BUG= R=siggi@chromium.org Committed: https://github.com/google/syzygy/commit/70e0f5fcdaab6aef1d56cac83e65b5c42d0754dc

Patch Set 1 #

Patch Set 2 : Clean up #

Patch Set 3 : Working state #

Patch Set 4 : Nits #

Total comments: 22

Patch Set 5 : Address comments #

Total comments: 2

Patch Set 6 : Comments round 2 #

Total comments: 2

Patch Set 7 : Final nit #

Unified diffs Side-by-side diffs Delta from patch set Stats (+664 lines, -91 lines) Patch
M syzygy/refinery/analyzers/analyzers.gyp View 1 chunk +2 lines, -0 lines 0 comments Download
M syzygy/refinery/analyzers/stack_analysis_unittest.cc View 1 2 5 chunks +77 lines, -51 lines 0 comments Download
M syzygy/refinery/analyzers/stack_frame_analyzer.h View 1 2 1 chunk +2 lines, -3 lines 0 comments Download
M syzygy/refinery/analyzers/stack_frame_analyzer.cc View 1 3 chunks +8 lines, -1 line 0 comments Download
M syzygy/refinery/analyzers/stack_frame_analyzer_impl.h View 1 3 chunks +7 lines, -2 lines 0 comments Download
M syzygy/refinery/analyzers/stack_frame_analyzer_impl.cc View 1 6 chunks +13 lines, -12 lines 0 comments Download
A syzygy/refinery/analyzers/type_propagator_analyzer.h View 1 2 3 4 5 1 chunk +63 lines, -0 lines 0 comments Download
A syzygy/refinery/analyzers/type_propagator_analyzer.cc View 1 2 3 4 5 6 1 chunk +171 lines, -0 lines 0 comments Download
A syzygy/refinery/analyzers/type_propagator_analyzer_unittest.cc View 1 2 3 4 1 chunk +146 lines, -0 lines 0 comments Download
M syzygy/refinery/process_state/layer_data.h View 1 1 chunk +5 lines, -0 lines 0 comments Download
M syzygy/refinery/process_state/process_state.gyp View 1 chunk +1 line, -0 lines 0 comments Download
M syzygy/refinery/process_state/process_state_util.h View 1 2 3 chunks +31 lines, -3 lines 0 comments Download
M syzygy/refinery/process_state/process_state_util.cc View 1 2 3 chunks +29 lines, -8 lines 0 comments Download
M syzygy/refinery/process_state/process_state_util_unittest.cc View 1 2 5 chunks +56 lines, -5 lines 0 comments Download
M syzygy/refinery/process_state/refinery.proto View 1 chunk +4 lines, -2 lines 0 comments Download
M syzygy/refinery/refinery.gyp View 1 chunk +1 line, -0 lines 0 comments Download
M syzygy/refinery/symbols/dia_symbol_provider.h View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M syzygy/refinery/symbols/symbol_provider.h View 1 2 3 2 chunks +8 lines, -3 lines 0 comments Download
M syzygy/refinery/types/type_repository.h View 1 2 3 4 4 chunks +10 lines, -0 lines 0 comments Download
M syzygy/refinery/types/type_repository.cc View 1 2 3 2 chunks +14 lines, -1 line 0 comments Download
M syzygy/refinery/types/type_repository_unittest.cc View 1 2 2 chunks +13 lines, -0 lines 0 comments Download

Messages

Total messages: 12 (3 generated)
manzagop (departed)
Please have a look! This only looks at pointer typed blocks.
5 years ago (2015-11-26 21:05:43 UTC) #3
Sigurður Ásgeirsson
First batch of comments - more tomorrow. This is very exciting! https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer.cc File syzygy/refinery/analyzers/type_propagator_analyzer.cc (right): ...
5 years ago (2015-11-26 21:45:12 UTC) #4
Sigurður Ásgeirsson
nice - here's the balance of my comments. https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer_unittest.cc File syzygy/refinery/analyzers/type_propagator_analyzer_unittest.cc (right): https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer_unittest.cc#newcode45 syzygy/refinery/analyzers/type_propagator_analyzer_unittest.cc:45: class ...
5 years ago (2015-11-27 14:45:31 UTC) #5
manzagop (departed)
Please have another look! https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer.cc File syzygy/refinery/analyzers/type_propagator_analyzer.cc (right): https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer.cc#newcode49 syzygy/refinery/analyzers/type_propagator_analyzer.cc:49: return ANALYSIS_ERROR; On 2015/11/26 21:45:12, ...
5 years ago (2015-11-27 15:20:28 UTC) #6
Sigurður Ásgeirsson
nice - it's fine to address these comments with TODO if you prefer at this ...
5 years ago (2015-11-27 15:33:40 UTC) #7
manzagop (departed)
Please have another look. Punted most of it to TODOs. https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer.cc File syzygy/refinery/analyzers/type_propagator_analyzer.cc (right): https://codereview.chromium.org/1475083002/diff/60001/syzygy/refinery/analyzers/type_propagator_analyzer.cc#newcode86 ...
5 years ago (2015-11-27 18:17:03 UTC) #8
Sigurður Ásgeirsson
lgtm - most exciting! https://codereview.chromium.org/1475083002/diff/100001/syzygy/refinery/analyzers/type_propagator_analyzer.cc File syzygy/refinery/analyzers/type_propagator_analyzer.cc (right): https://codereview.chromium.org/1475083002/diff/100001/syzygy/refinery/analyzers/type_propagator_analyzer.cc#newcode138 syzygy/refinery/analyzers/type_propagator_analyzer.cc:138: // TODO(manzagop): have a better ...
5 years ago (2015-11-27 18:19:37 UTC) #9
manzagop (departed)
Thanks! Committing. https://codereview.chromium.org/1475083002/diff/100001/syzygy/refinery/analyzers/type_propagator_analyzer.cc File syzygy/refinery/analyzers/type_propagator_analyzer.cc (right): https://codereview.chromium.org/1475083002/diff/100001/syzygy/refinery/analyzers/type_propagator_analyzer.cc#newcode138 syzygy/refinery/analyzers/type_propagator_analyzer.cc:138: // TODO(manzagop): have a better way to ...
5 years ago (2015-11-27 18:49:54 UTC) #10
manzagop (departed)
5 years ago (2015-11-27 18:56:47 UTC) #12
Message was sent while issue was closed.
Committed patchset #7 (id:120001) manually as
70e0f5fcdaab6aef1d56cac83e65b5c42d0754dc (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698