Searched defs:intcon (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.hpp42 Node* intcon(jint con) const { return _igvn.intcon(con); } function in class:PhaseMacroExpand
H A DphaseX.cpp590 case Type::Int: return intcon( t->is_int()->get_con() );
618 //------------------------------intcon-----------------------------------------
620 ConINode* PhaseTransform::intcon(int i) { function in class:PhaseTransform
H A DgraphKit.hpp100 Node* intcon(jint con) const { return _gvn.intcon(con); } function in class:GraphKit
104 // (See also macro MakeConX in type.hpp, which uses intcon or longcon.)
H A Dmemnode.cpp1275 if (result->Opcode() == Op_LShiftX && result->in(2) == phase->intcon(shift)) {
1278 result = new (phase->C) RShiftXNode(result->in(1), phase->intcon(0));
1280 result = new (phase->C) RShiftXNode(result, phase->intcon(shift));
1797 Node *result = phase->transform( new (phase->C) LShiftINode(value, phase->intcon(24)) );
1798 return new (phase->C) RShiftINode(result, phase->intcon(24));
1829 return new (phase->C) AndINode(value, phase->intcon(0xFF));
1859 return new (phase->C) AndINode(value,phase->intcon(0xFFFF));
1889 Node *result = phase->transform( new (phase->C) LShiftINode(value, phase->intcon(16)) );
1890 return new (phase->C) RShiftINode(result, phase->intcon(16));
2737 Node* shift = phase->intcon(exact_log
3522 jint* intcon = (jint*) &tiles[j]; local
3567 { union { jlong con; jint intcon[2]; } u; member in union:__anon344
[all...]

Completed in 61 milliseconds