< prev index next >

src/share/vm/opto/superword.hpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 597,607 **** Node_Stack* node_stack() { return _nstack; } // Comparable? int cmp(SWPointer& q) { if (valid() && q.valid() && ! (_adr == q._adr || _base == _adr && q._base == q._adr) && _scale == q._scale && _invar == q._invar && _negate_invar == q._negate_invar) { bool overlap = q._offset < _offset + memory_size() && _offset < q._offset + q.memory_size(); --- 597,607 ---- Node_Stack* node_stack() { return _nstack; } // Comparable? int cmp(SWPointer& q) { if (valid() && q.valid() && ! (_adr == q._adr || (_base == _adr && q._base == q._adr)) && _scale == q._scale && _invar == q._invar && _negate_invar == q._negate_invar) { bool overlap = q._offset < _offset + memory_size() && _offset < q._offset + q.memory_size();
< prev index next >