Lines Matching defs:to

16  * 2 along with this work; if not, write to the Free Software Foundation,
73 // define LIR_OprPtr early so LIR_OprDesc can refer to it
199 // we need 4 bits to represent types
368 // * So you must always check for is_???_xmm prior to is_???_fpu to
492 // must also be equivalent to the ScaleFactor enum in
1137 LIR_Opr _method_handle_invoke_SP_save_opr; // Used in LIR_OpVisitState::visit to store the reference to FrameMap::method_handle_invoke_SP_save_opr.
1362 BlockBegin* _block; // if this is a branch to a block, this is the block
1364 CodeStub* _stub; // if this is a branch to a stub, this is the stub
1919 // insert LIR_Ops in buffer to right places in LIR_List
1972 void negate(LIR_Opr from, LIR_Opr to) { append(new LIR_Op1(lir_neg, from, to)); }
2055 void abs (LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_abs , from, tmp, to)); }
2056 void sqrt(LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_sqrt, from, tmp, to)); }
2057 void log (LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_log, from, LIR_OprFact::illegalOpr, to, tmp)); }
2058 void log10 (LIR_Opr from, LIR_Opr to, LIR_Opr tmp) { append(new LIR_Op2(lir_log10, from, LIR_OprFact::illegalOpr, to, tmp)); }
2059 void sin (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) { append(new LIR_Op2(lir_sin , from, tmp1, to, tmp2)); }
2060 void cos (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) { append(new LIR_Op2(lir_cos , from, tmp1, to, tmp2)); }
2061 void tan (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2) { append(new LIR_Op2(lir_tan , from, tmp1, to, tmp2)); }
2062 void exp (LIR_Opr from, LIR_Opr to, LIR_Opr tmp1, LIR_Opr tmp2, LIR_Opr tmp3, LIR_Opr tmp4, LIR_Opr tmp5) { append(new LIR_Op2(lir_exp , from, tmp1, to, tmp2, tmp3, tmp4, tmp5)); }
2171 // _index_and_count[i * 2 + 1]: the number of ops to be inserted at index
2174 // the LIR_Ops to be inserted
2190 // called automatically when the buffer is appended to the LIR_List
2202 // append an instruction to the buffer
2214 // op to be recorded. It also records whether the op has call semantics
2232 // list, but in a fixed-size array to save time of size checks and resizing
2243 // addresses are decomposed to the base and index registers
2257 // both are always input operands or temp if we want to extend
2345 // LIR_Op visitor functions use these to fill in the state