Home | History | Annotate | Download | only in src

Lines Matching refs:opcode

381   Translation::Opcode opcode =
382 static_cast<Translation::Opcode>(iterator.Next());
383 ASSERT(Translation::BEGIN == opcode);
384 USE(opcode);
443 Translation::Opcode opcode =
444 static_cast<Translation::Opcode>(iterator->Next());
445 while (opcode == Translation::DUPLICATE) {
446 opcode = static_cast<Translation::Opcode>(iterator->Next());
447 iterator->Skip(Translation::NumberOfOperandsFor(opcode));
448 opcode = static_cast<Translation::Opcode>(iterator->Next());
451 switch (opcode) {
626 Translation::Opcode opcode =
627 static_cast<Translation::Opcode>(iterator->Next());
628 bool duplicate = (opcode == Translation::DUPLICATE);
630 opcode = static_cast<Translation::Opcode>(iterator->Next());
633 switch (opcode) {
1085 int Translation::NumberOfOperandsFor(Opcode opcode) {
1086 switch (opcode) {
1109 const char* Translation::StringFor(Opcode opcode) {
1110 switch (opcode) {
1163 Translation::Opcode opcode =
1164 static_cast<Translation::Opcode>(iterator->Next());
1166 switch (opcode) {
1223 Translation::Opcode opcode = static_cast<Translation::Opcode>(it.Next());
1224 ASSERT(opcode == Translation::BEGIN);
1230 opcode = static_cast<Translation::Opcode>(it.Next());
1231 // Skip over operands to advance to the next opcode.
1232 it.Skip(Translation::NumberOfOperandsFor(opcode));
1233 if (opcode == Translation::FRAME) {
1241 static_cast<Translation::Opcode>(it.Next())));