Home
last modified time | relevance | path

Searched refs:FromValue (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DSequence.h47 static CheckedInt from(Integral FromValue) { in from()
48 if (!canTypeFitValue<intmax_t>(FromValue)) in from()
51 Result.Value = static_cast<intmax_t>(FromValue); in from()
58 static CheckedInt from(Enum FromValue) { in from()
60 return from<type>(static_cast<type>(FromValue)); in from()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DASTImporter.cpp412 Expected<APValue> ImportAPValue(const APValue &FromValue);
9136 llvm::Expected<APValue> ASTImporter::Import(const APValue &FromValue) { in Import() argument
9138 return Importer.ImportAPValue(FromValue); in Import()
9272 ASTNodeImporter::ImportAPValue(const APValue &FromValue) { in ImportAPValue() argument
9281 switch (FromValue.getKind()) { in ImportAPValue()
9289 Result = FromValue; in ImportAPValue()
9294 Result.setVectorUninit(FromValue.getVectorLength()); in ImportAPValue()
9295 ImportLoop(((const APValue::Vec *)(const char *)&FromValue.Data)->Elts, in ImportAPValue()
9296 Elts.data(), FromValue.getVectorLength()); in ImportAPValue()
9300 Result.MakeArray(FromValue.getArrayInitializedElts(), in ImportAPValue()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DASTImporter.h506 llvm::Expected<APValue> Import(const APValue &FromValue);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DAsmWriter.cpp1292 bool FromValue = false);
2359 const Module *Context, bool FromValue = false) { in writeDIArgList() argument
2360 assert(FromValue && in writeDIArgList()
2518 bool FromValue) { in WriteAsOperandInternal() argument
2526 writeDIArgList(Out, ArgList, TypePrinter, Machine, Context, FromValue); in WriteAsOperandInternal()
2559 assert((FromValue || !isa<LocalAsMetadata>(V)) && in WriteAsOperandInternal()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DLocal.cpp1926 Value *FromValue = CI->getOperand(0); in salvageDebugInfoImpl() local
1927 unsigned FromTypeBitSize = FromValue->getType()->getScalarSizeInBits(); in salvageDebugInfoImpl()