Home
last modified time | relevance | path

Searched refs:OutputTy (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp3075 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
3076 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
3077 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
3078 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
3080 else if (OutputTy->isFloatingPointTy()) in EmitAsmStmt()
3081 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp5107 types::ID OutputTy; in ConstructPhaseAction() local
5112 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
5114 OutputTy = Input->getType(); in ConstructPhaseAction()
5124 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
5125 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
5128 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
5143 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
5144 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
5150 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
5154 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]