Home
last modified time | relevance | path

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

/external/clang/lib/Driver/
DDriver.cpp1722 types::ID OutputTy; in ConstructPhaseAction() local
1725 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
1727 OutputTy = Input->getType(); in ConstructPhaseAction()
1731 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
1732 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
1735 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
1738 types::ID OutputTy = types::TY_PCH; in ConstructPhaseAction() local
1741 OutputTy = types::TY_Nothing; in ConstructPhaseAction()
1743 return C.MakeAction<PrecompileJobAction>(Input, OutputTy); in ConstructPhaseAction()
/external/clang/lib/CodeGen/
DCGStmt.cpp1986 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
1987 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
1988 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
1989 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
1992 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()
1993 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()
/external/llvm-project/clang/lib/Driver/
DDriver.cpp3767 types::ID OutputTy; in ConstructPhaseAction() local
3772 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
3774 OutputTy = Input->getType(); in ConstructPhaseAction()
3780 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
3781 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3784 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
3787 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
3788 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3794 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
3798 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]
/external/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp2410 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2411 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
2412 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
2413 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
2416 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()
2417 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()