Home
last modified time | relevance | path

Searched refs:isInit (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprComplex.cpp82 void EmitStoreOfComplex(ComplexPairTy Val, LValue LV, bool isInit);
376 bool isInit) { in EmitStoreOfComplex() argument
378 (!isInit && CGF.LValueIsSuitableForInlineAtomic(lvalue))) in EmitStoreOfComplex()
379 return CGF.EmitAtomicStore(RValue::getComplex(Val), lvalue, isInit); in EmitStoreOfComplex()
1130 bool isInit) { in EmitComplexExprIntoLValue() argument
1135 Emitter.EmitStoreOfComplex(Val, dest, isInit); in EmitComplexExprIntoLValue()
1140 bool isInit) { in EmitStoreOfComplex() argument
1141 ComplexExprEmitter(*this).EmitStoreOfComplex(V, dest, isInit); in EmitStoreOfComplex()
H A DCodeGenFunction.h3792 void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
3795 bool IsVolatile, bool isInit);
3852 bool isInit = false, bool isNontemporal = false) {
3854 CGM.getTBAAAccessInfo(Ty), isInit, isNontemporal);
3860 bool isInit = false, bool isNontemporal = false);
3867 void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
3880 void EmitStoreThroughLValue(RValue Src, LValue Dst, bool isInit = false);
4403 void EmitComplexExprIntoLValue(const Expr *E, LValue dest, bool isInit);
4406 void EmitStoreOfComplex(ComplexPairTy V, LValue dest, bool isInit);
H A DCGAtomic.cpp2029 bool isInit) { in EmitAtomicStore() argument
2038 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit); in EmitAtomicStore()
2048 bool isInit) { in EmitAtomicStore() argument
2060 if (isInit) { in EmitAtomicStore()
2100 if (!isInit) in EmitAtomicStore()
H A DCGExpr.cpp1874 bool isInit, CodeGenFunction &CGF) { in EmitStoreOfMatrixScalar() argument
1886 bool isInit, bool isNontemporal) { in EmitStoreOfScalar() argument
1917 (!isInit && LValueIsSuitableForInlineAtomic(AtomicLValue))) { in EmitStoreOfScalar()
1918 EmitAtomicStore(RValue::get(Value), AtomicLValue, isInit); in EmitStoreOfScalar()
1934 bool isInit) { in EmitStoreOfScalar() argument
1936 EmitStoreOfMatrixScalar(value, lvalue, isInit, *this); in EmitStoreOfScalar()
1942 lvalue.getTBAAInfo(), isInit, lvalue.isNontemporal()); in EmitStoreOfScalar()
2129 bool isInit) { in EmitStoreThroughLValue() argument
2191 if (isInit) { in EmitStoreThroughLValue()
2199 if (isInit) in EmitStoreThroughLValue()
[all …]
/llvm-project-15.0.7/mlir/lib/Dialect/SparseTensor/Transforms/
H A DSparsification.cpp476 bool isInit = op.isInitTensor(lhs); in genOutputBuffer() local
485 if (!isInit) { in genOutputBuffer()