Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp3369 types::ID OutputTy; in ConstructPhaseAction() local
3372 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
3374 OutputTy = Input->getType(); in ConstructPhaseAction()
3380 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
3381 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3384 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
3387 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
3388 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3394 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
3398 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp2082 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2083 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
2084 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
2085 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
2088 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()
2089 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()