Lines Matching full:arg1
180 char arg1[ARG_SIZE + 1];
182 char* argv[3] = {cmd, arg1, arg2};
186 arg1[ARG_SIZE] = 0;
223 cmd, arg1, arg2);
242 if (GetValue(arg1, &value)) {
263 if (!strcmp(arg1, mnemonic)) break;
288 if (strcmp(arg1, "all") == 0) {
303 } else if (strcmp(arg1, "alld") == 0) {
318 } else if (strcmp(arg1, "allf") == 0) {
326 } else if (strcmp(arg1, "alld") == 0) {
335 } else if (arg1[0] == 'r' &&
336 (arg1[1] >= '0' && arg1[1] <= '2' &&
337 (arg1[2] == '\0' || (arg1[2] >= '0' && arg1[2] <= '5' &&
338 arg1[3] == '\0')))) {
339 int regnum = strtoul(&arg1[1], 0, 10);
342 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value,
345 PrintF("%s unrecognized\n", arg1);
348 if (GetValue(arg1, &value)) {
349 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value,
351 } else if (GetFPDoubleValue(arg1, &dvalue)) {
353 PrintF("%s: %f 0x%08x %08x\n", arg1, dvalue,
357 PrintF("%s unrecognized\n", arg1);
368 if (GetValue(arg1, &value)) {
370 os << arg1 << ": \n";
378 os << arg1 << " unrecognized\n";
386 if (!GetValue(arg1, &value)) {
387 PrintF("%s unrecognized\n", arg1);
400 if (!GetValue(arg1, &value)) {
401 PrintF("%s unrecognized\n", arg1);
449 int regnum = Registers::Number(arg1);
450 if (regnum != kNoRegister || strncmp(arg1, "0x", 2) == 0) {
453 if (GetValue(arg1, &value)) {
459 if (GetValue(arg1, &value)) {
461 // Disassemble <arg1> instructions.
468 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
489 if (GetValue(arg1, &value)) {
494 PrintF("%s unrecognized\n", arg1);
512 if ((argc == 2) && (strcmp(arg1, "unstop") == 0)) {
522 if (strcmp(arg1, "info") == 0) {
533 } else if (strcmp(arg1, "enable") == 0) {
544 } else if (strcmp(arg1, "disable") == 0) {
1913 typedef intptr_t (*SimulatorRuntimeCall)(intptr_t arg0, intptr_t arg1,
1916 typedef ObjectPair (*SimulatorRuntimePairCall)(intptr_t arg0, intptr_t arg1,
1919 typedef ObjectTriple (*SimulatorRuntimeTripleCall)(intptr_t arg0, intptr_t arg1,
1933 typedef void (*SimulatorRuntimeProfilingApiCall)(intptr_t arg0, void* arg1);
1936 typedef void (*SimulatorRuntimeDirectGetterCall)(intptr_t arg0, intptr_t arg1);
1938 intptr_t arg1, void* arg2);