HomeSort by: relevance | last modified time | path
    Searched refs:TypeTestResolution (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndexYAML.h 18 template <> struct ScalarEnumerationTraits<TypeTestResolution::Kind> {
19 static void enumeration(IO &io, TypeTestResolution::Kind &value) {
20 io.enumCase(value, "Unknown", TypeTestResolution::Unknown);
21 io.enumCase(value, "Unsat", TypeTestResolution::Unsat);
22 io.enumCase(value, "ByteArray", TypeTestResolution::ByteArray);
23 io.enumCase(value, "Inline", TypeTestResolution::Inline);
24 io.enumCase(value, "Single", TypeTestResolution::Single);
25 io.enumCase(value, "AllOnes", TypeTestResolution::AllOnes);
29 template <> struct MappingTraits<TypeTestResolution> {
30 static void mapping(IO &io, TypeTestResolution &res)
    [all...]
ModuleSummaryIndex.h 904 struct TypeTestResolution {
973 TypeTestResolution TTRes;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 418 TypeTestResolution::Kind TheKind = TypeTestResolution::Unsat;
670 if (TIL.TheKind == TypeTestResolution::Inline) {
738 if (TIL.TheKind == TypeTestResolution::Unknown)
740 if (TIL.TheKind == TypeTestResolution::Unsat)
756 if (TIL.TheKind == TypeTestResolution::Single)
782 if (TIL.TheKind == TypeTestResolution::AllOnes)
912 TypeTestResolution &TTRes =
930 if (TIL.TheKind != TypeTestResolution::Unsat)
933 if (TIL.TheKind == TypeTestResolution::ByteArray |
    [all...]
WholeProgramDevirt.cpp 1837 assert(TidSummary->TTRes.TheKind != TypeTestResolution::Unsat);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 2651 void printTypeTestResolution(const TypeTestResolution &TTRes);
3005 static const char *getTTResKindName(TypeTestResolution::Kind K) {
3007 case TypeTestResolution::Unknown:
3009 case TypeTestResolution::Unsat:
3011 case TypeTestResolution::ByteArray:
3013 case TypeTestResolution::Inline:
3015 case TypeTestResolution::Single:
3017 case TypeTestResolution::AllOnes:
3020 llvm_unreachable("invalid TypeTestResolution kind");
3023 void AssemblyWriter::printTypeTestResolution(const TypeTestResolution &TTRes)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLParser.h 381 bool parseTypeTestResolution(TypeTestResolution &TTRes);
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 8079 /// ::= 'summary' ':' '(' TypeTestResolution [',' OptionalWpdResolutions]? ')'
8183 /// TypeTestResolution
8189 bool LLParser::parseTypeTestResolution(TypeTestResolution &TTRes) {
8199 TTRes.TheKind = TypeTestResolution::Unknown;
8202 TTRes.TheKind = TypeTestResolution::Unsat;
8205 TTRes.TheKind = TypeTestResolution::ByteArray;
8208 TTRes.TheKind = TypeTestResolution::Inline;
8211 TTRes.TheKind = TypeTestResolution::Single;
8214 TTRes.TheKind = TypeTestResolution::AllOnes;
8217 return error(Lex.getLoc(), "unexpected TypeTestResolution kind")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 6069 TypeId.TTRes.TheKind = static_cast<TypeTestResolution::Kind>(Record[Slot++]);

Completed in 35 milliseconds