├── .gitignore ├── COPYING ├── README.md ├── irhydra ├── .analysis_options ├── build.dart ├── lib │ └── src │ │ ├── formatting.dart │ │ ├── modes │ │ ├── art │ │ │ ├── art.dart │ │ │ └── cfg_parser.dart │ │ ├── code.dart │ │ ├── dartvm │ │ │ ├── code_parser.dart │ │ │ ├── dartvm.dart │ │ │ ├── ir_parser.dart │ │ │ ├── name_parser.dart │ │ │ └── preparser.dart │ │ ├── ir.dart │ │ ├── mode.dart │ │ ├── perf.dart │ │ └── v8 │ │ │ ├── code_parser.dart │ │ │ ├── hydrogen_parser.dart │ │ │ ├── name_parser.dart │ │ │ ├── source_annotator.dart │ │ │ ├── ui │ │ │ ├── dependent-code-deopt-reasons.html │ │ │ ├── descriptions.dart │ │ │ └── descriptions.html │ │ │ └── v8.dart │ │ ├── spinner.dart │ │ └── ui │ │ ├── _ui.scss │ │ ├── compilation-timeline.dart │ │ ├── compilation-timeline.html │ │ ├── deopt-links.dart │ │ ├── deopt-links.html │ │ ├── dropdown-element.dart │ │ ├── dropdown-element.html │ │ ├── dropdown-element.scss │ │ ├── hydra.dart │ │ ├── hydra.html │ │ ├── hydra.scss │ │ ├── ir-pane.css │ │ ├── ir-pane.dart │ │ ├── ir-pane.html │ │ ├── method-list.dart │ │ ├── method-list.html │ │ ├── method-list.scss │ │ ├── method-name.dart │ │ ├── method-name.html │ │ ├── method-name.scss │ │ ├── open-file-button.dart │ │ ├── open-file-button.html │ │ ├── open-file-button.scss │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── source-pane.dart │ │ ├── source-pane.html │ │ ├── source-path.dart │ │ ├── source-path.html │ │ ├── source-path.scss │ │ ├── spinner-element.dart │ │ ├── spinner-element.html │ │ └── util │ │ ├── code-mirror │ │ ├── code-mirror.dart │ │ ├── code-mirror.html │ │ └── deps │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ └── modes │ │ │ └── javascript.js │ │ ├── switching-scope.dart │ │ └── switching-scope.html ├── pubspec.lock ├── pubspec.yaml └── web │ ├── css │ └── hydra.css │ ├── demos │ ├── dart │ │ ├── code.asm │ │ └── demo.dart │ ├── v8 │ │ ├── deopt-eager │ │ │ ├── code.asm │ │ │ ├── demo.js │ │ │ └── hydrogen.cfg │ │ ├── deopt-lazy │ │ │ ├── code.asm │ │ │ ├── demo.js │ │ │ └── hydrogen.cfg │ │ └── deopt-soft │ │ │ ├── code.asm │ │ │ ├── demo.js │ │ │ └── hydrogen.cfg │ └── webrebels2014 │ │ ├── 1-concat │ │ ├── concat.js │ │ └── data.tar.bz2 │ │ ├── 2-concat-fixed │ │ ├── concat.js │ │ └── data.tar.bz2 │ │ ├── 3-prototype-node │ │ ├── data.tar.bz2 │ │ └── prototype.js │ │ ├── 4-prototype-node-getter │ │ ├── data.tar.bz2 │ │ └── prototype.js │ │ ├── 5-prototype │ │ ├── data.tar.bz2 │ │ └── prototype.js │ │ ├── 6-prototype-tostring │ │ ├── data.tar.bz2 │ │ └── prototype.js │ │ ├── 7-method-function │ │ ├── data.tar.bz2 │ │ └── method-function.js │ │ ├── 8-method-function-hack │ │ ├── data.tar.bz2 │ │ └── method-function.js │ │ ├── README.md │ │ ├── benchmark.js │ │ ├── jsperf.js │ │ └── lodash.js │ ├── deps │ ├── bunzip2.js │ ├── esprima.js │ ├── estraverse.js │ ├── fa │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ └── spin.min.js │ ├── favicon.ico │ └── index.html ├── saga ├── .gitignore ├── lib │ └── src │ │ ├── flow │ │ ├── compact_likely.dart │ │ ├── cpu_register.dart │ │ ├── dce.dart │ │ ├── flow.dart │ │ ├── fold.dart │ │ ├── fuse_branches.dart │ │ ├── interference.dart │ │ ├── liveness.dart │ │ ├── loads.dart │ │ ├── locals.dart │ │ ├── node.dart │ │ ├── ssa.dart │ │ └── types.dart │ │ ├── parser.dart │ │ ├── ui │ │ ├── code_pane.dart │ │ ├── graph_pane.dart │ │ ├── ir_pane.dart │ │ └── tooltip.dart │ │ └── util.dart ├── pubspec.yaml └── web │ ├── code.asm │ ├── index.html │ ├── main.dart │ ├── post.dart │ └── styles.css ├── ui_components ├── .gitignore ├── lib │ └── components │ │ ├── graph-pane.dart │ │ └── graph-pane.html └── pubspec.yaml └── ui_utils ├── .analysis_options ├── .gitignore ├── lib ├── assets │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── jquery │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.4.css │ │ │ │ └── jquery-ui-1.10.4.min.css │ │ └── js │ │ │ ├── jquery-2.0.3.js │ │ │ ├── jquery-ui-1.10.4.js │ │ │ └── jquery-ui-1.10.4.min.js │ ├── tooltip.css │ └── xref.css ├── bootstrap.dart ├── brewer.dart ├── delayed_reaction.dart ├── graph.dart ├── graph_layout.dart ├── havlak.dart ├── html_utils.dart ├── parsing.dart ├── src │ └── draw2d │ │ ├── BreakCycles.dart │ │ ├── CollapsedEdges.dart │ │ ├── CompoundBreakCycles.dart │ │ ├── CompoundDirectedGraph.dart │ │ ├── CompoundDirectedGraphLayout.dart │ │ ├── CompoundHorizontalPlacement.dart │ │ ├── CompoundPopulateRanks.dart │ │ ├── CompoundRankSolver.dart │ │ ├── CompoundTransposeMetrics.dart │ │ ├── CompoundVerticalPlacement.dart │ │ ├── ConvertCompoundGraph.dart │ │ ├── Dimension.dart │ │ ├── DirectedGraph.dart │ │ ├── DirectedGraphLayout.dart │ │ ├── Edge.dart │ │ ├── EdgeList.dart │ │ ├── Geometry.dart │ │ ├── GraphUtilities.dart │ │ ├── GraphVisitor.dart │ │ ├── HorizontalPlacement.dart │ │ ├── InitialRankSolver.dart │ │ ├── Insets.dart │ │ ├── InvertEdges.dart │ │ ├── LocalOptimizer.dart │ │ ├── MinCross.dart │ │ ├── NestingTree.dart │ │ ├── Node.dart │ │ ├── NodeCluster.dart │ │ ├── NodeList.dart │ │ ├── NodePair.dart │ │ ├── Obstacle.dart │ │ ├── Path.dart │ │ ├── Point.dart │ │ ├── PointList.dart │ │ ├── PopulateRanks.dart │ │ ├── PositionConstants.dart │ │ ├── README │ │ ├── Rank.dart │ │ ├── RankAssignmentSolver.dart │ │ ├── RankList.dart │ │ ├── RankSorter.dart │ │ ├── Rectangle.dart │ │ ├── RevertableChange.dart │ │ ├── RouteEdges.dart │ │ ├── Segment.dart │ │ ├── ShortestPathRouter.dart │ │ ├── SortSubgraphs.dart │ │ ├── SpanningTreeVisitor.dart │ │ ├── Subgraph.dart │ │ ├── SubgraphBoundary.dart │ │ ├── TightSpanningTreeSolver.dart │ │ ├── Transform.dart │ │ ├── TransposeMetrics.dart │ │ ├── Vertex.dart │ │ ├── VerticalPlacement.dart │ │ ├── VirtualNodeCreation.dart │ │ └── graph.dart ├── task.dart ├── tooltip.dart └── xref.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/README.md -------------------------------------------------------------------------------- /irhydra/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /irhydra/build.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/build.dart -------------------------------------------------------------------------------- /irhydra/lib/src/formatting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/formatting.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/art/art.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/art/art.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/art/cfg_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/art/cfg_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/code.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/dartvm/code_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/dartvm/code_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/dartvm/dartvm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/dartvm/dartvm.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/dartvm/ir_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/dartvm/ir_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/dartvm/name_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/dartvm/name_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/dartvm/preparser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/dartvm/preparser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/ir.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/ir.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/mode.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/perf.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/perf.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/code_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/code_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/hydrogen_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/hydrogen_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/name_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/name_parser.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/source_annotator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/source_annotator.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/ui/dependent-code-deopt-reasons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/ui/dependent-code-deopt-reasons.html -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/ui/descriptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/ui/descriptions.dart -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/ui/descriptions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/ui/descriptions.html -------------------------------------------------------------------------------- /irhydra/lib/src/modes/v8/v8.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/modes/v8/v8.dart -------------------------------------------------------------------------------- /irhydra/lib/src/spinner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/spinner.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/_ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/_ui.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/compilation-timeline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/compilation-timeline.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/compilation-timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/compilation-timeline.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/deopt-links.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/deopt-links.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/deopt-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/deopt-links.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/dropdown-element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/dropdown-element.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/dropdown-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/dropdown-element.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/dropdown-element.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/dropdown-element.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/hydra.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/hydra.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/hydra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/hydra.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/hydra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/hydra.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/ir-pane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/ir-pane.css -------------------------------------------------------------------------------- /irhydra/lib/src/ui/ir-pane.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/ir-pane.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/ir-pane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/ir-pane.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/method-list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/method-list.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/method-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/method-list.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/method-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/method-list.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/method-name.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/method-name.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/method-name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/method-name.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/method-name.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/method-name.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/open-file-button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/open-file-button.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/open-file-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/open-file-button.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/open-file-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/open-file-button.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/prettify.css -------------------------------------------------------------------------------- /irhydra/lib/src/ui/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/prettify.js -------------------------------------------------------------------------------- /irhydra/lib/src/ui/source-pane.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/source-pane.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/source-pane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/source-pane.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/source-path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/source-path.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/source-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/source-path.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/source-path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/source-path.scss -------------------------------------------------------------------------------- /irhydra/lib/src/ui/spinner-element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/spinner-element.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/spinner-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/spinner-element.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/code-mirror/code-mirror.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/code-mirror/code-mirror.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/code-mirror/code-mirror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/code-mirror/code-mirror.html -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/code-mirror/deps/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/code-mirror/deps/codemirror.css -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/code-mirror/deps/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/code-mirror/deps/codemirror.js -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/code-mirror/deps/modes/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/code-mirror/deps/modes/javascript.js -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/switching-scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/switching-scope.dart -------------------------------------------------------------------------------- /irhydra/lib/src/ui/util/switching-scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/lib/src/ui/util/switching-scope.html -------------------------------------------------------------------------------- /irhydra/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/pubspec.lock -------------------------------------------------------------------------------- /irhydra/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/pubspec.yaml -------------------------------------------------------------------------------- /irhydra/web/css/hydra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/css/hydra.css -------------------------------------------------------------------------------- /irhydra/web/demos/dart/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/dart/code.asm -------------------------------------------------------------------------------- /irhydra/web/demos/dart/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/dart/demo.dart -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-eager/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-eager/code.asm -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-eager/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-eager/demo.js -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-eager/hydrogen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-eager/hydrogen.cfg -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-lazy/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-lazy/code.asm -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-lazy/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-lazy/demo.js -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-lazy/hydrogen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-lazy/hydrogen.cfg -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-soft/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-soft/code.asm -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-soft/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-soft/demo.js -------------------------------------------------------------------------------- /irhydra/web/demos/v8/deopt-soft/hydrogen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/v8/deopt-soft/hydrogen.cfg -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/1-concat/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/1-concat/concat.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/1-concat/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/1-concat/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/2-concat-fixed/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/2-concat-fixed/concat.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/2-concat-fixed/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/2-concat-fixed/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/3-prototype-node/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/3-prototype-node/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/3-prototype-node/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/3-prototype-node/prototype.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/4-prototype-node-getter/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/4-prototype-node-getter/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/4-prototype-node-getter/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/4-prototype-node-getter/prototype.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/5-prototype/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/5-prototype/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/5-prototype/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/5-prototype/prototype.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/6-prototype-tostring/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/6-prototype-tostring/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/6-prototype-tostring/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/6-prototype-tostring/prototype.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/7-method-function/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/7-method-function/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/7-method-function/method-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/7-method-function/method-function.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/8-method-function-hack/data.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/8-method-function-hack/data.tar.bz2 -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/8-method-function-hack/method-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/8-method-function-hack/method-function.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/README.md -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/benchmark.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/jsperf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/jsperf.js -------------------------------------------------------------------------------- /irhydra/web/demos/webrebels2014/lodash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/demos/webrebels2014/lodash.js -------------------------------------------------------------------------------- /irhydra/web/deps/bunzip2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/bunzip2.js -------------------------------------------------------------------------------- /irhydra/web/deps/esprima.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/esprima.js -------------------------------------------------------------------------------- /irhydra/web/deps/estraverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/estraverse.js -------------------------------------------------------------------------------- /irhydra/web/deps/fa/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/fa/css/font-awesome.min.css -------------------------------------------------------------------------------- /irhydra/web/deps/fa/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/fa/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /irhydra/web/deps/fa/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/fa/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /irhydra/web/deps/fa/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/fa/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /irhydra/web/deps/fa/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/fa/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /irhydra/web/deps/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/deps/spin.min.js -------------------------------------------------------------------------------- /irhydra/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/favicon.ico -------------------------------------------------------------------------------- /irhydra/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/irhydra/web/index.html -------------------------------------------------------------------------------- /saga/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/.gitignore -------------------------------------------------------------------------------- /saga/lib/src/flow/compact_likely.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/compact_likely.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/cpu_register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/cpu_register.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/dce.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/dce.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/flow.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/flow.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/fold.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/fold.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/fuse_branches.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/fuse_branches.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/interference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/interference.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/liveness.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/liveness.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/loads.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/loads.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/locals.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/locals.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/node.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/ssa.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/ssa.dart -------------------------------------------------------------------------------- /saga/lib/src/flow/types.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/flow/types.dart -------------------------------------------------------------------------------- /saga/lib/src/parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/parser.dart -------------------------------------------------------------------------------- /saga/lib/src/ui/code_pane.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/ui/code_pane.dart -------------------------------------------------------------------------------- /saga/lib/src/ui/graph_pane.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/ui/graph_pane.dart -------------------------------------------------------------------------------- /saga/lib/src/ui/ir_pane.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/ui/ir_pane.dart -------------------------------------------------------------------------------- /saga/lib/src/ui/tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/ui/tooltip.dart -------------------------------------------------------------------------------- /saga/lib/src/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/lib/src/util.dart -------------------------------------------------------------------------------- /saga/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/pubspec.yaml -------------------------------------------------------------------------------- /saga/web/code.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/web/code.asm -------------------------------------------------------------------------------- /saga/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/web/index.html -------------------------------------------------------------------------------- /saga/web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/web/main.dart -------------------------------------------------------------------------------- /saga/web/post.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/web/post.dart -------------------------------------------------------------------------------- /saga/web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/saga/web/styles.css -------------------------------------------------------------------------------- /ui_components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_components/.gitignore -------------------------------------------------------------------------------- /ui_components/lib/components/graph-pane.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_components/lib/components/graph-pane.dart -------------------------------------------------------------------------------- /ui_components/lib/components/graph-pane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_components/lib/components/graph-pane.html -------------------------------------------------------------------------------- /ui_components/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_components/pubspec.yaml -------------------------------------------------------------------------------- /ui_utils/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /ui_utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/.gitignore -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /ui_utils/lib/assets/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/jquery-ui-1.10.4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/jquery-ui-1.10.4.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/css/ui-lightness/jquery-ui-1.10.4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/css/ui-lightness/jquery-ui-1.10.4.min.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/js/jquery-2.0.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/js/jquery-2.0.3.js -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/js/jquery-ui-1.10.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/js/jquery-ui-1.10.4.js -------------------------------------------------------------------------------- /ui_utils/lib/assets/jquery/js/jquery-ui-1.10.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/jquery/js/jquery-ui-1.10.4.min.js -------------------------------------------------------------------------------- /ui_utils/lib/assets/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/tooltip.css -------------------------------------------------------------------------------- /ui_utils/lib/assets/xref.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/assets/xref.css -------------------------------------------------------------------------------- /ui_utils/lib/bootstrap.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/bootstrap.dart -------------------------------------------------------------------------------- /ui_utils/lib/brewer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/brewer.dart -------------------------------------------------------------------------------- /ui_utils/lib/delayed_reaction.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/delayed_reaction.dart -------------------------------------------------------------------------------- /ui_utils/lib/graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/graph.dart -------------------------------------------------------------------------------- /ui_utils/lib/graph_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/graph_layout.dart -------------------------------------------------------------------------------- /ui_utils/lib/havlak.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/havlak.dart -------------------------------------------------------------------------------- /ui_utils/lib/html_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/html_utils.dart -------------------------------------------------------------------------------- /ui_utils/lib/parsing.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/parsing.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/BreakCycles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/BreakCycles.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CollapsedEdges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CollapsedEdges.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundBreakCycles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundBreakCycles.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundDirectedGraph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundDirectedGraph.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundDirectedGraphLayout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundDirectedGraphLayout.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundHorizontalPlacement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundHorizontalPlacement.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundPopulateRanks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundPopulateRanks.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundRankSolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundRankSolver.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundTransposeMetrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundTransposeMetrics.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/CompoundVerticalPlacement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/CompoundVerticalPlacement.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/ConvertCompoundGraph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/ConvertCompoundGraph.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Dimension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Dimension.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/DirectedGraph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/DirectedGraph.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/DirectedGraphLayout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/DirectedGraphLayout.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Edge.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Edge.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/EdgeList.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/EdgeList.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Geometry.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Geometry.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/GraphUtilities.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/GraphUtilities.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/GraphVisitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/GraphVisitor.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/HorizontalPlacement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/HorizontalPlacement.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/InitialRankSolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/InitialRankSolver.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Insets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Insets.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/InvertEdges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/InvertEdges.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/LocalOptimizer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/LocalOptimizer.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/MinCross.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/MinCross.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/NestingTree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/NestingTree.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Node.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Node.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/NodeCluster.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/NodeCluster.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/NodeList.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/NodeList.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/NodePair.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/NodePair.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Obstacle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Obstacle.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Path.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Path.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Point.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/PointList.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/PointList.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/PopulateRanks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/PopulateRanks.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/PositionConstants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/PositionConstants.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/README -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Rank.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Rank.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/RankAssignmentSolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/RankAssignmentSolver.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/RankList.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/RankList.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/RankSorter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/RankSorter.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Rectangle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Rectangle.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/RevertableChange.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/RevertableChange.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/RouteEdges.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/RouteEdges.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Segment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Segment.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/ShortestPathRouter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/ShortestPathRouter.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/SortSubgraphs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/SortSubgraphs.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/SpanningTreeVisitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/SpanningTreeVisitor.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Subgraph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Subgraph.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/SubgraphBoundary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/SubgraphBoundary.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/TightSpanningTreeSolver.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/TightSpanningTreeSolver.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Transform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Transform.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/TransposeMetrics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/TransposeMetrics.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/Vertex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/Vertex.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/VerticalPlacement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/VerticalPlacement.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/VirtualNodeCreation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/VirtualNodeCreation.dart -------------------------------------------------------------------------------- /ui_utils/lib/src/draw2d/graph.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/src/draw2d/graph.dart -------------------------------------------------------------------------------- /ui_utils/lib/task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/task.dart -------------------------------------------------------------------------------- /ui_utils/lib/tooltip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/tooltip.dart -------------------------------------------------------------------------------- /ui_utils/lib/xref.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mraleph/irhydra/HEAD/ui_utils/lib/xref.dart -------------------------------------------------------------------------------- /ui_utils/pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: ui_utils 2 | version: 0.0.1 3 | --------------------------------------------------------------------------------