Lines Matching refs:Local
426 M(Local) \
1040 // A local in the graph. Corresponds to a Dex register.
1045 DECLARE_INSTRUCTION(Local);
1056 // Load a given local. The local is an input of this instruction.
1059 explicit HLoadLocal(HLocal* local, Primitive::Type type) : HExpression(type) {
1060 SetRawInputAt(0, local);
1071 // Store a value in a given local. This instruction has two inputs: the value
1072 // and the local.
1075 HStoreLocal(HLocal* local, HInstruction* value) {
1076 SetRawInputAt(0, local);