Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp3918 types::ID OutputTy; in ConstructPhaseAction() local
3923 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
3925 OutputTy = Input->getType(); in ConstructPhaseAction()
3931 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
3932 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3935 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
3938 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
3939 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3945 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
3949 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2484 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2485 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
2486 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
2487 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
2490 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()
2491 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()