Lines Matching refs:fGenerator
1204 fGenerator.write(vector_instruction(ByteCodeInstruction::kReadExternal, fCount)); in load()
1205 fGenerator.write8(fIndex); in load()
1210 fGenerator.write(vector_instruction(ByteCodeInstruction::kDup, fCount)); in store()
1212 fGenerator.write(vector_instruction(ByteCodeInstruction::kWriteExternal, fCount)); in store()
1213 fGenerator.write8(fIndex); in store()
1231 fGenerator.writeSwizzle(fSwizzle); in load()
1237 fGenerator.write(vector_instruction(ByteCodeInstruction::kDup, count)); in store()
1240 int location = fGenerator.getLocation(*fSwizzle.fBase, &storage); in store()
1243 fGenerator.write(isGlobal ? ByteCodeInstruction::kStoreSwizzleIndirectGlobal in store()
1247 fGenerator.write(isGlobal ? ByteCodeInstruction::kStoreSwizzleGlobal in store()
1250 fGenerator.write8(location); in store()
1252 fGenerator.write8(count); in store()
1254 fGenerator.write8(c); in store()
1271 fGenerator.writeVariableExpression(fExpression); in load()
1278 fGenerator.write(ByteCodeInstruction::kDupN, count); in store()
1279 fGenerator.write8(count); in store()
1281 fGenerator.write(vector_instruction(ByteCodeInstruction::kDup, count)); in store()
1285 int location = fGenerator.getLocation(fExpression, &storage); in store()
1289 fGenerator.write(ByteCodeInstruction::kPushImmediate); in store()
1290 fGenerator.write32(location); in store()
1292 fGenerator.write(isGlobal ? ByteCodeInstruction::kStoreExtendedGlobal in store()
1295 fGenerator.write8(count); in store()
1297 fGenerator.write(vector_instruction(isGlobal ? ByteCodeInstruction::kStoreGlobal in store()
1300 fGenerator.write8(location); in store()