HomeSort by: relevance | last modified time | path
    Searched refs:RVal (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 385 Value *RVal = RI->getReturnValue();
386 if (!RVal) continue;
394 Type *T = RVal->getType();
403 Value *Params[] = {RVal};
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IteratorModeling.cpp 101 const SVal &LVal, const SVal &RVal,
270 const SVal RVal = State->getSVal(RHS, C.getLocationContext());
274 handleComparison(C, BO, Result, LVal, RVal,
286 const SVal &AmountVal = IsIterOnLHS ? RVal : LVal;
451 const SVal &RVal,
459 const auto *RPos = getIteratorPosition(State, RVal);
484 State = setIteratorPosition(State, RVal,
486 RPos = getIteratorPosition(State, RVal);
MismatchedIteratorChecker.cpp 199 SVal RVal = State->getSVal(BO->getRHS(), C.getLocationContext());
200 verifyMatch(C, LVal, RVal);
IteratorRangeChecker.cpp 171 SVal RVal = State->getSVal(BO->getRHS(), C.getLocationContext());
175 RVal);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGAtomic.cpp 190 llvm::Value *convertRValueToInt(RValue RVal) const;
1659 llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const {
1662 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) {
1663 llvm::Value *Value = RVal.getScalarVal();
1678 Address Addr = materializeRValue(RVal);
CGStmtOpenMP.cpp 5355 LValue LVal, RValue RVal) {
5357 CGF.EmitStoreThroughGlobalRegLValue(RVal, LVal);
5359 CGF.EmitAtomicStore(RVal, LVal, AO, LVal.isVolatile(), /*isInit=*/false);
5372 void CodeGenFunction::emitOMPSimpleStore(LValue LVal, RValue RVal,
5377 *this, RVal, RValTy, LVal.getType(), Loc)),
5382 convertToComplexValue(*this, RVal, RValTy, LVal.getType(), Loc), LVal,
CodeGenFunction.h 3290 void emitOMPSimpleStore(LValue LVal, RValue RVal, QualType RValTy,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 2173 SVal RVal;
2175 RVal = LVState->getRawSVal(L.getValue(), Inner->getType());
2177 RVal = LVState->getSVal(L->getRegion());
2183 if (auto KV = RVal.getAs<KnownSVal>())
2188 const MemRegion *RegionRVal = RVal.getAsRegion();
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 4204 /// \param RVal - The produced value will be placed here.
4210 const LValue &LVal, APValue &RVal,
4234 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal, AK);
4255 RVal = APValue(extractStringLiteralCharacter(Info, Base, CharIndex));
4261 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal, AK);
4403 /// Perform a compound assignment of LVal <op>= RVal.
4409 const APValue &RVal) {
4420 RVal };
7807 APValue RVal;
7810 LVal, RVal))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 675 SDValue RVal = SDValue(Node, 0);
687 std::tie(RVal, RChain) = TLI.expandUnalignedLoad(LD, DAG);
692 if (SDValue Res = TLI.LowerOperation(RVal, DAG)) {
693 RVal = Res;
704 RVal = DAG.getNode(ISD::BITCAST, dl, VT, Res);
710 assert(RVal.getNode() != Node && "Load must be completely replaced");
711 DAG.ReplaceAllUsesOfValueWith(SDValue(Node, 0), RVal);
714 UpdatedNodes->insert(RVal.getNode());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 2749 static bool isCompatibleIVType(Value *LVal, Value *RVal) {
2751 Type *RType = RVal->getType();

Completed in 127 milliseconds