Home
last modified time | relevance | path

Searched refs:LVal (Results 1 – 9 of 9) sorted by relevance

/external/clang/lib/CodeGen/
DCGAtomic.cpp40 LValue LVal; member in __anond5645c670111::AtomicInfo
74 LVal = lvalue; in AtomicInfo()
96 LVal = LValue::MakeBitfield(Addr, BFI, lvalue.getType(), in AtomicInfo()
98 LVal.setTBAAInfo(lvalue.getTBAAInfo()); in AtomicInfo()
114 LVal = lvalue; in AtomicInfo()
126 LVal = lvalue; in AtomicInfo()
140 const LValue &getAtomicLValue() const { return LVal; } in getAtomicLValue()
142 if (LVal.isSimple()) in getAtomicAddress()
143 return LVal.getAddress(); in getAtomicAddress()
144 else if (LVal.isBitField()) in getAtomicAddress()
[all …]
DCGStmtOpenMP.cpp1104 auto LVal = CGF.MakeNaturalAlignAddrLValue(CGF.CreateMemTemp(Ty, Name), Ty); in createSectionLVal() local
1106 CGF.EmitScalarInit(Init, LVal); in createSectionLVal()
1107 return LVal; in createSectionLVal()
DCGOpenMPRuntime.cpp406 auto LVal = OMPRegionInfo->getThreadIDVariableLValue(CGF); in getThreadID() local
407 ThreadID = CGF.EmitLoadOfLValue(LVal, Loc).getScalarVal(); in getThreadID()
DCodeGenFunction.h2232 void EmitAtomicUpdate(LValue LVal, llvm::AtomicOrdering AO,
/external/clang/lib/AST/
DAPValue.cpp575 const LV &LVal = *((const LV*)(const char*)Data.buffer); in getLValuePath() local
576 return llvm::makeArrayRef(LVal.getPath(), LVal.PathLength); in getLValuePath()
587 LV &LVal = *((LV*)(char*)Data.buffer); in setLValue() local
588 LVal.BaseAndIsOnePastTheEnd.setPointer(B); in setLValue()
589 LVal.BaseAndIsOnePastTheEnd.setInt(false); in setLValue()
590 LVal.Offset = O; in setLValue()
591 LVal.CallIndex = CallIndex; in setLValue()
592 LVal.resizePath((unsigned)-1); in setLValue()
599 LV &LVal = *((LV*)(char*)Data.buffer); in setLValue() local
600 LVal.BaseAndIsOnePastTheEnd.setPointer(B); in setLValue()
[all …]
DExprConstant.cpp1247 QualType Type, const LValue &LVal) { in CheckLValueConstantExpression() argument
1250 APValue::LValueBase Base = LVal.getLValueBase(); in CheckLValueConstantExpression()
1251 const SubobjectDesignator &Designator = LVal.getLValueDesignator(); in CheckLValueConstantExpression()
1270 LVal.getLValueCallIndex() == 0) && in CheckLValueConstantExpression()
1400 LValue LVal; in CheckConstantExpression() local
1401 LVal.setFrom(Info.Ctx, Value); in CheckConstantExpression()
1402 return CheckLValueConstantExpression(Info, DiagLoc, Type, LVal); in CheckConstantExpression()
1409 static const ValueDecl *GetLValueBaseDecl(const LValue &LVal) { in GetLValueBaseDecl() argument
1410 return LVal.Base.dyn_cast<const ValueDecl*>(); in GetLValueBaseDecl()
1853 static bool HandleLValueMember(EvalInfo &Info, const Expr *E, LValue &LVal, in HandleLValueMember() argument
[all …]
/external/clang/lib/Sema/
DSemaStmtAsm.cpp181 const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context); in ActOnGCCAsmStmt() local
183 Diag(LVal->getLocStart(), diag::err_invalid_asm_cast_lvalue) in ActOnGCCAsmStmt()
186 Diag(LVal->getLocStart(), diag::warn_invalid_asm_cast_lvalue) in ActOnGCCAsmStmt()
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp961 SVal LVal = LVState->getSVal(Inner, LVNode->getLocationContext()); in trackNullOrUndefValue() local
963 if (LVState->isNull(LVal).isConstrainedTrue()) { in trackNullOrUndefValue()
977 if (Optional<KnownSVal> KV = LVal.getAs<KnownSVal>()) in trackNullOrUndefValue()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2471 static bool isCompatibleIVType(Value *LVal, Value *RVal) { in isCompatibleIVType() argument
2472 Type *LType = LVal->getType(); in isCompatibleIVType()