reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Type.h
  418   static Type *getTokenTy(LLVMContext &C);

References

include/llvm/IR/Constants.h
  821       : ConstantData(Type::getTokenTy(Context), ConstantTokenNoneVal) {}
lib/AsmParser/LLLexer.cpp
  826   TYPEKEYWORD("token",     Type::getTokenTy(Context));
lib/AsmParser/LLParser.cpp
 6184   if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
 6213   if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
 6237   if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
 6286   if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
 6309   if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
lib/Bitcode/Reader/BitcodeReader.cpp
 1753       ResultTy = Type::getTokenTy(Context);
 4258           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
 4277           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
 4296           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
 4335           getValue(Record, Idx++, NextValueNo, Type::getTokenTy(Context));
lib/IR/Core.cpp
  787   return wrap(Type::getTokenTy(*unwrap(C)));
 3154     Type *Ty = Type::getTokenTy(unwrap(B)->getContext());
 3170     Type *Ty = Type::getTokenTy(unwrap(B)->getContext());
lib/IR/Function.cpp
  957   case IITDescriptor::Token: return Type::getTokenTy(Context);
lib/IR/Type.cpp
   51   case TokenTyID     : return getTokenTy(C);