Searched refs:has_index (Results 1 - 5 of 5) sorted by relevance
| /openjdk7/hotspot/src/cpu/sparc/vm/ |
| H A D | assembler_sparc.inline.hpp | 174 if (a.has_index()) { assert(offset == 0, ""); ld( a.base(), a.index(), d); } 178 if (a.has_index()) { assert(offset == 0, ""); ldsb(a.base(), a.index(), d); } 182 if (a.has_index()) { assert(offset == 0, ""); ldsh(a.base(), a.index(), d); } 186 if (a.has_index()) { assert(offset == 0, ""); ldsw(a.base(), a.index(), d); } 190 if (a.has_index()) { assert(offset == 0, ""); ldub(a.base(), a.index(), d); } 194 if (a.has_index()) { assert(offset == 0, ""); lduh(a.base(), a.index(), d); } 198 if (a.has_index()) { assert(offset == 0, ""); lduw(a.base(), a.index(), d); } 202 if (a.has_index()) { assert(offset == 0, ""); ldd( a.base(), a.index(), d); } 206 if (a.has_index()) { assert(offset == 0, ""); ldx( a.base(), a.index(), d); } 222 if (a.has_index()) ad [all...] |
| H A D | assembler_sparc.hpp | 316 bool has_index() const { return _index_or_disp.is_register(); } function in class:VALUE_OBJ_CLASS_SPEC 319 bool uses(Register reg) const { return base() == reg || (has_index() && index() == reg); } 337 return base() == a.base() && (has_index() ? index() == a.index() : disp() == a.disp());
|
| /openjdk7/hotspot/src/share/vm/c1/ |
| H A D | c1_LIRGenerator.cpp | 2032 if (x->has_index()) { 2040 if (x->has_index()) { 2045 assert(!x->has_index() || idx.value() == x->index(), "should match"); 2110 if (x->has_index()) { 2120 if (x->has_index()) {
|
| H A D | c1_InstructionPrinter.cpp | 272 if (op->has_index()) {
|
| H A D | c1_Instruction.hpp | 2160 bool has_index() { return (_index != NULL); } 2171 if (has_index()) f->visit(&_index); }
|
Completed in 71 milliseconds