HomeSort by relevance Sort by last modified time
    Searched refs:utostr (Results 1 - 25 of 44) sorted by null

1 2

  /external/llvm/include/llvm/ADT/
StringExtras.h 93 static inline std::string utostr(uint64_t X, bool isNeg = false) { function in namespace:llvm
111 return utostr(static_cast<uint64_t>(-X), true);
113 return utostr(static_cast<uint64_t>(X));
  /external/llvm/utils/TableGen/
CodeEmitterGen.cpp 136 " op = " + EncoderMethodName + "(MI, " + utostr(OpIdx);
143 " op = getMachineOpValue(MI, MI.getOperand(" + utostr(OpIdx) + ")";
176 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) << " +
179 Case += " Value |= (op & UINT64_C(" + utostr(opMask) + ")) >> " +
182 Case += " Value |= op & UINT64_C(" + utostr(opMask) + ");\n";
FixedLenDecoderEmitter.cpp 760 OS << utostr(*I++) << ", ";
761 OS << utostr(*I++) << ", ";
766 OS << utostr(Byte) << ", ";
768 OS << utostr(Byte) << ", ";
781 OS << utostr(*I) << ", ";
782 OS << utostr(*I++) << ", ";
786 OS << utostr(Byte) << ", ";
788 OS << utostr(Byte) << ", ";
797 OS << utostr(*I) << ", ";
798 OS << utostr(*I++) << ", "
    [all...]
AsmWriterInst.cpp 41 Result += ", " + utostr(MIOpNo);
AsmWriterEmitter.cpp 832 Cond = std::string("MI->getNumOperands() == ") + llvm::utostr(NumMIOps);
839 std::string Op = "MI->getOperand(" + llvm::utostr(MIOpNum) + ")";
879 llvm::utostr(IAP->getOpIndex(ROName)) + ").getReg()";
    [all...]
InstrInfoEmitter.cpp 123 Res += utostr(OpR->getValueAsInt("RegClassKind")) + ", ";
161 Res += "((" + utostr(Constraint.getTiedOperand()) +
AsmMatcherEmitter.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 556 S += utostr(ElementBitwidth);
558 S += "x" + utostr(getNumElements());
560 S += "x" + utostr(NumVectors);
610 Ret += "V" + utostr(getNumElements()) + S;
972 S += utostr(T.getElementSizeInBits());
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 34 using llvm::utostr;
    [all...]
RewriteObjC.cpp 33 using llvm::utostr;
    [all...]
  /external/llvm/lib/Support/
Statistic.cpp 107 (unsigned)utostr(Stats.Stats[i]->getValue()).size());
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.cpp 861 return "s3_" + utostr(Op1) + "_c" + utostr(CRn)
862 + "_c" + utostr(CRm) + "_" + utostr(Op2);
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 301 std::string Name = SizeSpec + utostr(Align);
365 std::string Name = std::string(".init_array.") + utostr(Priority);
370 std::string Name = std::string(".ctors.") + utostr(65535 - Priority);
385 std::string Name = std::string(".fini_array.") + utostr(Priority);
390 std::string Name = std::string(".dtors.") + utostr(65535 - Priority);
    [all...]
ShadowStackGC.cpp 231 StructType *STy = StructType::create(EltTys, "gc_map."+utostr(NumMeta));
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 42 return "<<Unknown Machine Node #" + utostr(getOpcode()) + ">>";
48 return "<<Unknown Target Node #" + utostr(getOpcode()) + ">>";
50 return "<<Unknown Node #" + utostr(getOpcode()) + ">>";
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 185 return "int" + utostr(cast<IntegerType>(Ty)->getBitWidth()) + "_";
379 return "IntegerType::get(mod->getContext(), " + utostr(BitWidth) + ")";
416 name = utostr(uniqueNum++);
446 name = std::string("arg_") + utostr(argNum);
449 name += std::string("_") + utostr(uniqueNum++);
461 name += utostr(uniqueNum++);
465 name += std::string("_") + utostr(uniqueNum++);
646 << ", " << utostr(AT->getNumElements()) << ");";
659 << ", " << utostr(PT->getAddressSpace()) << ");";
672 << ", " << utostr(PT->getNumElements()) << ");"
    [all...]
  /external/llvm/lib/IR/
ValueTypes.cpp 110 return "v" + utostr(getVectorNumElements()) +
113 return "i" + utostr(getSizeInBits());
Attributes.cpp 248 Result += utostr(getValueAsInt());
257 Result += utostr(getValueAsInt());
260 Result += utostr(getValueAsInt());
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 126 return Error(Loc, "Cannot set bit #" + utostr(Bit) + " of value '" +
181 + utostr(i) + " (" + TArgs[i]->getAsUnquotedString()
286 + utostr(i) + " (" + SMCTArgs[i]->getAsUnquotedString()
392 return "anonymous_" + utostr(Tmp);
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.cpp 192 llvm::utostr(MsanTrackOrigins)));
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 53 std::string str = utostr(Index);
  /external/llvm/lib/MC/
MCObjectFileInfo.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 681 (*AI)->getName()+"."+utostr(i),
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 337 Description = std::string("8-byte alignment, ") + utostr(1 << Value)
358 Description = std::string("8-byte stack alignment, ") + utostr(1 << Value)
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 369 std::string PrioritySuffix = llvm::utostr(Priority);

Completed in 451 milliseconds

1 2