Home | History | Annotate | Download | only in Expression

Lines Matching refs:Printf

109         ss.Printf("%s", PrintValue(value).c_str());
117 ss.Printf(" 0x%llx", (unsigned long long)addr);
309 log->Printf("Made an allocation for argument %s", PrintValue(value).c_str());
310 log->Printf(" Data region : %llx", (unsigned long long)address);
311 log->Printf(" Ref region : %llx", (unsigned long long)data_address);
379 ss.Printf("%02hhx - ", buf.GetBytes()[i]);
381 ss.Printf("%02hhx ", buf.GetBytes()[i]);
458 log->Printf("Unsupported instruction: %s", PrintValue(ii).c_str());
485 log->Printf("Unsupported ICmp predicate: %s", PrintValue(ii).c_str());
541 log->Printf("Unsupported operand type: %s", PrintType(operand_type).c_str());
573 log->Printf("Module as passed in to IRInterpreter::Interpret: \n\"%s\"", s.c_str());
611 log->Printf("Interpreting %s", PrintValue(inst).c_str());
636 log->Printf("getOpcode() returns %s, but instruction is not a BinaryOperator", inst->getOpcodeName());
651 log->Printf("Couldn't evaluate %s", PrintValue(lhs).c_str());
660 log->Printf("Couldn't evaluate %s", PrintValue(rhs).c_str());
722 log->Printf("Interpreted a %s", inst->getOpcodeName());
723 log->Printf(" L : %s", frame.SummarizeValue(lhs).c_str());
724 log->Printf(" R : %s", frame.SummarizeValue(rhs).c_str());
725 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
736 log->Printf("getOpcode() returns Alloca, but instruction is not an AllocaInst");
745 log->Printf("AllocaInsts are not handled if isArrayAllocation() is true");
764 log->Printf("Couldn't allocate memory for an AllocaInst");
775 log->Printf("Couldn't allocate the result pointer for an AllocaInst");
788 log->Printf("Couldn't write the result pointer for an AllocaInst");
801 log->Printf("Interpreted an AllocaInst");
802 log->Printf(" R : 0x%" PRIx64, R);
803 log->Printf(" P : 0x%" PRIx64, P);
815 log->Printf("getOpcode() returns %s, but instruction is not a BitCastInst", cast_inst->getOpcodeName());
828 log->Printf("Couldn't evaluate %s", PrintValue(source).c_str());
844 log->Printf("getOpcode() returns %s, but instruction is not a BitCastInst", cast_inst->getOpcodeName());
857 log->Printf("Couldn't evaluate %s", PrintValue(source).c_str());
877 log->Printf("getOpcode() returns Br, but instruction is not a BranchInst");
892 log->Printf("Couldn't evaluate %s", PrintValue(condition).c_str());
905 log->Printf("Interpreted a BrInst with a condition");
906 log->Printf(" cond : %s", frame.SummarizeValue(condition).c_str());
915 log->Printf("Interpreted a BrInst with no condition");
927 log->Printf("getOpcode() returns GetElementPtr, but instruction is not a GetElementPtrInst");
941 log->Printf("Couldn't evaluate %s", PrintValue(pointer_operand).c_str());
968 log->Printf("Couldn't evaluate %s", PrintValue(*ii).c_str());
975 log->Printf("Evaluated constant index %s as %llu", PrintValue(*ii).c_str(), I.ULongLong(LLDB_INVALID_ADDRESS));
991 log->Printf("Interpreted a GetElementPtrInst");
992 log->Printf(" P : %s", frame.SummarizeValue(pointer_operand).c_str());
993 log->Printf(" Poffset : %s", frame.SummarizeValue(inst).c_str());
1004 log->Printf("getOpcode() returns ICmp, but instruction is not an ICmpInst");
1021 log->Printf("Couldn't evaluate %s", PrintValue(lhs).c_str());
1030 log->Printf("Couldn't evaluate %s", PrintValue(rhs).c_str());
1086 log->Printf("Interpreted an ICmpInst");
1087 log->Printf(" L : %s", frame.SummarizeValue(lhs).c_str());
1088 log->Printf(" R : %s", frame.SummarizeValue(rhs).c_str());
1089 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
1100 log->Printf("getOpcode() returns IntToPtr, but instruction is not an IntToPtrInst");
1113 log->Printf("Couldn't evaluate %s", PrintValue(src_operand).c_str());
1123 log->Printf("Interpreted an IntToPtr");
1124 log->Printf(" Src : %s", frame.SummarizeValue(src_operand).c_str());
1125 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
1136 log->Printf("getOpcode() returns PtrToInt, but instruction is not an PtrToIntInst");
1149 log->Printf("Couldn't evaluate %s", PrintValue(src_operand).c_str());
1159 log->Printf("Interpreted a PtrToInt");
1160 log->Printf(" Src : %s", frame.SummarizeValue(src_operand).c_str());
1161 log->Printf(" = : %s", frame.SummarizeValue(inst).c_str());
1172 log->Printf("getOpcode() returns Load, but instruction is not a LoadInst");
1191 log->Printf("getPointerOperand()->getType() is not a PointerType");
1204 log->Printf("LoadInst's value doesn't resolve to anything");
1213 log->Printf("LoadInst's pointer doesn't resolve to anything");
1226 log->Printf("Couldn't read the address to be loaded for a LoadInst");
1240 log->Printf("Couldn't read from a region on behalf of a LoadInst");
1251 log->Printf("Couldn't write to a region on behalf of a LoadInst");
1259 log->Printf("Interpreted a LoadInst");
1260 log->Printf(" P : 0x%" PRIx64, P);
1261 log->Printf(" R : 0x%" PRIx64, R);
1262 log->Printf(" D : 0x%" PRIx64, D);
1277 log->Printf("getOpcode() returns Store, but instruction is not a StoreInst");
1304 log->Printf("StoreInst's value doesn't resolve to anything");
1313 log->Printf
1326 log->Printf("Couldn't read the address to be loaded for a LoadInst");
1340 log->Printf("Couldn't read from a region on behalf of a StoreInst");
1351 log->Printf("Couldn't write to a region on behalf of a StoreInst");
1359 log->Printf("Interpreted a StoreInst");
1360 log->Printf(" D : 0x%" PRIx64, D);
1361 log->Printf(" P : 0x%" PRIx64, P);
1362 log->Printf(" R : 0x%" PRIx64, R);