Searched defs:sigch (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java1706 char sigch = (char) signature.getByteAt(0);
1708 CellTypeState[] eff = sigcharToEffect(sigch, bci, temp);
1873 CellTypeState[] sigcharToEffect (char sigch, int bci, CellTypeState[] out) { argument
1875 if (sigch=='L' || sigch=='[') {
1880 if (sigch == 'J' || sigch == 'D' ) return vvCTS; // Long and Double
1881 if (sigch == 'V' ) return epsilonCTS; // Void
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp1909 char sigch = (char)*(signature->base()); local
1911 CellTypeState *eff = sigchar_to_effect(sigch, bci, temp);
1967 CellTypeState *GenerateOopMap::sigchar_to_effect(char sigch, int bci, CellTypeState *out) { argument
1969 if (sigch=='L' || sigch=='[') {
1974 if (sigch == 'J' || sigch == 'D' ) return vvCTS; // Long and Double
1975 if (sigch == 'V' ) return epsilonCTS; // Void

Completed in 49 milliseconds