Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DXCOFF.cpp172 SmallString<32> ParmsType; in parseParmsType() local
189 ParmsType += ", "; in parseParmsType()
192 ParmsType += "i"; in parseParmsType()
199 ParmsType += "f"; in parseParmsType()
202 ParmsType += "d"; in parseParmsType()
211 ParmsType += ", ..."; in parseParmsType()
218 return ParmsType; in parseParmsType()
250 SmallString<32> ParmsType; in parseParmsTypeWithVecInfo() local
260 ParmsType += ", "; in parseParmsTypeWithVecInfo()
264 ParmsType += "i"; in parseParmsTypeWithVecInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h911 std::optional<SmallString<32>> ParmsType;
974 return ParmsType;
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp2554 Expected<SmallString<32>> ParmsType = in emitTracebackTable() local
2562 assert(ParmsType && toString(ParmsType.takeError()).c_str()); in emitTracebackTable()
2563 if (ParmsType) { in emitTracebackTable()
2564 CommentOS << "Parameter type = " << ParmsType.get(); in emitTracebackTable()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp587 PRINTOPTIONAL(ParmsType); in dumpTracebackTable()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp1538 ParmsType = ParmsTypeOrError.get(); in XCOFFTracebackTable()