HomeSort by relevance Sort by last modified time
    Searched defs:LValue (Results 1 - 9 of 9) sorted by null

  /external/clang/include/clang/AST/
APValue.h 48 LValue,
186 bool isLValue() const { return Kind == LValue; }
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 92 static SVal makeZeroElementRegion(ProgramStateRef State, SVal LValue,
99 LValue = State->getLValue(Ty, SVB.makeZeroArrayIndex(), LValue);
102 return LValue;
120 SVal LValue = State->getLValue(Var, LCtx);
122 LValue = makeZeroElementRegion(State, LValue, Ty);
123 return LValue.getAsRegion();
BugReporterVisitors.cpp 206 if (Optional<Loc> LValue = RetVal.getAs<Loc>())
207 RetVal = State->getSVal(*LValue);
260 Optional<Loc> LValue;
262 if ((LValue = V.getAs<Loc>())) {
263 SVal RValue = State->getRawSVal(*LValue, RetE->getType());
310 if (LValue) {
311 if (const MemRegion *MR = LValue->getAsRegion()) {
916 // Alternately, if we hit a known lvalue for the statement, we know we've
917 // gone too far (though we can likely track the lvalue better anyway).
    [all...]
ExprEngine.cpp 502 SVal LValue = State->getSVal(Init, stackFrame);
503 if (Optional<Loc> LValueLoc = LValue.getAs<Loc>())
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 225 LValue::LValue(Function *fn, DataFile file)
240 LValue::LValue(Function *fn, LValue *lval)
257 LValue *
258 LValue::clone(ClonePolicy<Function>& pol) const
260 LValue *that = new_LValue(pol.context(), reg.file);
272 LValue::isUniform() const
1002 mem_LValue(sizeof(LValue), 8)
    [all...]
nv50_ir.h 308 class LValue;
417 int8_t indirect[2]; // >= 0 if relative to lvalue in insn->src(indirect[i])
448 inline void setSSA(LValue *);
449 inline const LValue *preSSA() const;
452 Value *value; // should make this LValue * ...
453 LValue *origin; // pre SSA value
478 inline LValue *asLValue();
498 // TODO: these should be in LValue:
503 class LValue : public Value
506 LValue(Function *, DataFile file)
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 149 /// LValue - This represents an lvalue references. Because C/C++ allow
152 class LValue {
179 // The alignment to use when accessing this lvalue. (For vector elements,
189 // LValue is non-gc'able for any reason, including being a parameter or local
193 // Lvalue is a global reference of an objective-c object
196 // Lvalue is a thread local reference
199 // Lvalue has ARC imprecise lifetime. We store this inverted to try
206 // this lvalue.
216 /// TBAAInfo - TBAA information to attach to dereferences of this LValue
    [all...]
  /external/v8/src/arm/
constants-arm.h 608 inline int LValue() const { return Bit(20); }
651 inline bool HasL() const { return LValue() == 1; }
  /external/clang/lib/AST/
ExprConstant.cpp 58 struct LValue;
87 /// Get an LValue path entry, which is known to not be an array index, as a
96 /// Get an LValue path entry, which is known to not be an array index, as a
101 /// Get an LValue path entry, which is known to not be an array index, as a
106 /// Determine whether this LValue path entry for a base class names a virtual
159 /// and we cannot perform lvalue-to-rvalue conversions on them.
323 const LValue *This;
337 const FunctionDecl *Callee, const LValue *This,
351 ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable)
361 const LValue *OldThis
    [all...]

Completed in 313 milliseconds