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

  /external/skia/src/sksl/
SkSLSPIRVCodeGenerator.h 54 class LValue {
56 virtual ~LValue() {}
58 // returns a pointer to the lvalue, if possible. If the lvalue cannot be directly referenced
135 std::unique_ptr<LValue> getLValue(const Expression& value, SkWStream& out);
  /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 207 if (Optional<Loc> LValue = RetVal.getAs<Loc>())
208 RetVal = State->getSVal(*LValue);
261 Optional<Loc> LValue;
263 if ((LValue = V.getAs<Loc>())) {
264 SVal RValue = State->getRawSVal(*LValue, RetE->getType());
311 if (LValue) {
312 if (const MemRegion *MR = LValue->getAsRegion()) {
    [all...]
ExprEngine.cpp 503 SVal LValue = State->getSVal(Init, stackFrame);
504 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/swiftshader/src/Reactor/
Nucleus.cpp 829 LValue::LValue(llvm::Type *type, int arraySize)
834 llvm::Value *LValue::loadValue(unsigned int alignment) const
839 llvm::Value *LValue::storeValue(llvm::Value *value, unsigned int alignment) const
844 llvm::Value *LValue::getAddress(llvm::Value *index) const
    [all...]
Nucleus.hpp 275 class LValue
278 LValue(llvm::Type *type, int arraySize = 0);
294 class Variable : public LValue
364 RValue(const T &lvalue);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 59 struct LValue;
88 /// Get an LValue path entry, which is known to not be an array index, as a
97 /// Get an LValue path entry, which is known to not be an array index, as a
102 /// Get an LValue path entry, which is known to not be an array index, as a
107 /// Determine whether this LValue path entry for a base class names a virtual
160 /// and we cannot perform lvalue-to-rvalue conversions on them.
324 const LValue *This;
338 const FunctionDecl *Callee, const LValue *This,
352 ThisOverrideRAII(CallStackFrame &Frame, const LValue *NewThis, bool Enable)
362 const LValue *OldThis
    [all...]

Completed in 428 milliseconds