Home | History | Annotate | Download | only in ppc

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);
236 if (argc == 2 && last_pc != sim_->get_pc() && GetValue(arg1, &value)) {
266 if (strcmp(arg1, "all") == 0) {
285 } else if (strcmp(arg1, "alld") == 0) {
304 } else if (strcmp(arg1, "allf") == 0) {
313 } else if (arg1[0] == 'r' &&
314 (arg1[1] >= '0' && arg1[1] <= '9' &&
315 (arg1[2] == '\0' || (arg1[2] >= '0' && arg1[2] <= '9' &&
316 arg1[3] == '\0')))) {
317 int regnum = strtoul(&arg1[1], 0, 10);
320 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value,
323 PrintF("%s unrecognized\n", arg1);
326 if (GetValue(arg1, &value)) {
327 PrintF("%s: 0x%08" V8PRIxPTR " %" V8PRIdPTR "\n", arg1, value,
329 } else if (GetFPDoubleValue(arg1, &dvalue)) {
331 PrintF("%s: %f 0x%08x %08x\n", arg1, dvalue,
335 PrintF("%s unrecognized\n", arg1);
346 if (GetValue(arg1, &value)) {
348 os << arg1 << ": \n";
356 os << arg1 << " unrecognized\n";
364 if (!GetValue(arg1, &value)) {
365 PrintF("%s unrecognized\n", arg1);
378 if (!GetValue(arg1, &value)) {
379 PrintF("%s unrecognized\n", arg1);
429 int regnum = Registers::Number(arg1);
430 if (regnum != kNoRegister || strncmp(arg1, "0x", 2) == 0) {
433 if (GetValue(arg1, &value)) {
435 // Disassemble 10 instructions at <arg1>.
441 if (GetValue(arg1, &value)) {
443 // Disassemble <arg1> instructions.
450 if (GetValue(arg1, &value1) && GetValue(arg2, &value2)) {
469 if (GetValue(arg1
474 PrintF("%s unrecognized\n", arg1);
500 if ((argc == 2) && (strcmp(arg1, "unstop") == 0)) {
510 if (strcmp(arg1, "info") == 0) {
521 } else if (strcmp(arg1, "enable") == 0) {
532 } else if (strcmp(arg1, "disable") == 0) {
1159 typedef intptr_t (*SimulatorRuntimeCall)(intptr_t arg0, intptr_t arg1,
1162 typedef ObjectPair (*SimulatorRuntimePairCall)(intptr_t arg0, intptr_t arg1,
1165 typedef ObjectTriple (*SimulatorRuntimeTripleCall)(intptr_t arg0, intptr_t arg1,
1179 typedef void (*SimulatorRuntimeProfilingApiCall)(intptr_t arg0, void* arg1);
1182 typedef void (*SimulatorRuntimeDirectGetterCall)(intptr_t arg0, intptr_t arg1);
1184 intptr_t arg1, void* arg2);