src/share/vm/opto/idealGraphPrinter.cpp

changeset 9325
6ab57fe8b51f
parent 6680
78bbf4d43a14
child 9448
73d689add964
equal deleted inserted replaced
9324:efdbe9b904ad 9325:6ab57fe8b51f
1 /* 1 /*
2 * Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2007, 2018, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
610 } 610 }
611 print_prop("debug_orig", dorigStream.as_string()); 611 print_prop("debug_orig", dorigStream.as_string());
612 } 612 }
613 #endif 613 #endif
614 614
615 if (_chaitin && _chaitin != (PhaseChaitin *)0xdeadbeef) { 615 if (_chaitin && _chaitin != (PhaseChaitin *)((intptr_t)0xdeadbeef)) {
616 buffer[0] = 0; 616 buffer[0] = 0;
617 _chaitin->dump_register(node, buffer); 617 _chaitin->dump_register(node, buffer);
618 print_prop("reg", buffer); 618 print_prop("reg", buffer);
619 uint lrg_id = 0; 619 uint lrg_id = 0;
620 if (node->_idx < _chaitin->_lrg_map.size()) { 620 if (node->_idx < _chaitin->_lrg_map.size()) {

mercurial