| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenModule.cpp | 70 VoidTy = cir::VoidType::get(&getMLIRContext()); 72 SInt8Ty = cir::IntType::get(&getMLIRContext(), 8, /*isSigned=*/true); 73 SInt16Ty = cir::IntType::get(&getMLIRContext(), 16, /*isSigned=*/true); 74 SInt32Ty = cir::IntType::get(&getMLIRContext(), 32, /*isSigned=*/true); 75 SInt64Ty = cir::IntType::get(&getMLIRContext(), 64, /*isSigned=*/true); 76 SInt128Ty = cir::IntType::get(&getMLIRContext(), 128, /*isSigned=*/true); 77 UInt8Ty = cir::IntType::get(&getMLIRContext(), 8, /*isSigned=*/false); 78 UInt16Ty = cir::IntType::get(&getMLIRContext(), 16, /*isSigned=*/false); 79 UInt32Ty = cir::IntType::get(&getMLIRContext(), 32, /*isSigned=*/false); 80 UInt64Ty = cir::IntType::get(&getMLIRContext(), 64, /*isSigned=*/false); [all …]
|
| H A D | CIRGenTypes.cpp | 26 mlir::MLIRContext &CIRGenTypes::getMLIRContext() const { in getMLIRContext() function in CIRGenTypes 302 resultType = cir::BoolType::get(&getMLIRContext()); in convertType() 315 cir::IntType::get(&getMLIRContext(), astContext.getTypeSize(ty), in convertType() 331 cir::IntType::get(&getMLIRContext(), astContext.getTypeSize(ty), in convertType() 481 resultType = cir::IntType::get(&getMLIRContext(), bitIntTy->getNumBits(), in convertType()
|
| H A D | CIRGenOpenACC.cpp | 46 &getMLIRContext(), getContext().getIntWidth(intExpr->getType()), in emitOpenACCIntExpr() 60 mlir::IntegerType::get(&getMLIRContext(), width, in createOpenACCConstantInt()
|
| H A D | CIRGenFunction.cpp | 124 return mlir::FusedLoc::get(locs, metadata, &getMLIRContext()); in getLoc() 136 return mlir::FusedLoc::get(locs, metadata, &getMLIRContext()); in getLoc() 221 allocaOp.setInitAttr(mlir::UnitAttr::get(&getMLIRContext())); in declare() 223 allocaOp.setConstantAttr(mlir::UnitAttr::get(&getMLIRContext())); in declare() 453 &getMLIRContext(), in generateCode()
|
| H A D | CIRGenModule.h | 103 mlir::MLIRContext &getMLIRContext() { return *builder.getContext(); } in getMLIRContext() function 357 f.setLinkageAttr(cir::GlobalLinkageKindAttr::get(&getMLIRContext(), l)); in setFunctionLinkage()
|
| H A D | CIRGenTypes.h | 99 mlir::MLIRContext &getMLIRContext() const;
|
| H A D | CIRGenRecordLayoutBuilder.cpp | 121 return cir::IntType::get(&cirGenTypes.getMLIRContext(), alignedBits, in getUIntNType() 126 return cir::IntType::get(&cirGenTypes.getMLIRContext(), in getCharType()
|
| H A D | CIRGenBuiltin.cpp | 196 probAttr = mlir::FloatAttr::get(mlir::Float64Type::get(&getMLIRContext()), in emitBuiltinExpr()
|
| H A D | CIRGenCall.cpp | 106 mlir::UnitAttr::get(&getMLIRContext())); in constructAttributeList() 132 cir::SideEffectAttr::get(&getMLIRContext(), sideEffect)); in constructAttributeList()
|
| H A D | CIRGenStmtOpenACC.cpp | 195 &getMLIRContext(), getContext().getIntWidth(intExpr->getType()), in emitOpenACCWaitConstruct()
|
| H A D | CIRGenExpr.cpp | 312 srcAlloca.setInitAttr(mlir::UnitAttr::get(&getMLIRContext())); in emitStoreOfScalar() 630 loadOp.setIsDerefAttr(mlir::UnitAttr::get(&getMLIRContext())); in emitUnaryOpLValue() 1441 mlir::Location loc = mlir::FusedLoc::get(&getMLIRContext(), ifLocs); in emitIfOnBoolExpr()
|
| H A D | CIRGenOpenACCClause.cpp | 94 &cgf.getMLIRContext(), /*width=*/1, in createCondition() 105 &cgf.getMLIRContext(), width, in createConstantInt()
|
| H A D | CIRGenDecl.cpp | 163 allocaOp.setInitAttr(mlir::UnitAttr::get(&getMLIRContext())); in emitAutoVarInit()
|
| H A D | CIRGenFunction.h | 130 mlir::MLIRContext &getMLIRContext() { return cgm.getMLIRContext(); } in getMLIRContext() function
|
| /freebsd/contrib/llvm-project/clang/include/clang/CIR/ |
| H A D | CIRGenerator.h | 85 mlir::MLIRContext &getMLIRContext() { return *mlirContext; }; in getMLIRContext() function 86 const mlir::MLIRContext &getMLIRContext() const { return *mlirContext; }; in getMLIRContext() function
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/FrontendAction/ |
| H A D | CIRGenAction.cpp | 105 mlir::MLIRContext &MlirCtx = Gen->getMLIRContext(); in HandleTranslationUnit()
|