Searched refs:ParamValue (Results 1 - 4 of 4) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | NullabilityChecker.cpp | 347 auto ParamValue = State->getSVal(RegVal->getRegion()) local 349 if (!ParamValue) 352 if (getNullConstraint(*ParamValue, State) == NullConstraint::IsNull) {
|
/external/clang/lib/CodeGen/ |
H A D | CGCall.cpp | 1869 SmallVector<ParamValue, 16> ArgVals; 1900 ArgVals.push_back(ParamValue::forIndirect(V)); 1927 ArgVals.push_back(ParamValue::forIndirect(V)); 1935 ArgVals.push_back(ParamValue::forDirect(V)); 2040 ArgVals.push_back(ParamValue::forDirect(V)); 2097 ArgVals.push_back(ParamValue::forDirect(V)); 2099 ArgVals.push_back(ParamValue::forIndirect(Alloca)); 2110 ArgVals.push_back(ParamValue::forIndirect(Alloca)); 2126 ArgVals.push_back(ParamValue::forIndirect(CreateMemTemp(Ty))); 2129 ArgVals.push_back(ParamValue [all...] |
H A D | CodeGenFunction.h | 2061 class ParamValue { class in class:clang::CodeGen::CodeGenFunction 2064 ParamValue(llvm::Value *V, unsigned A) : Value(V), Alignment(A) {} function in class:clang::CodeGen::CodeGenFunction::ParamValue 2066 static ParamValue forDirect(llvm::Value *value) { 2067 return ParamValue(value, 0); 2069 static ParamValue forIndirect(Address addr) { 2071 return ParamValue(addr.getPointer(), addr.getAlignment().getQuantity()); 2089 void EmitParmDecl(const VarDecl &D, ParamValue Arg, unsigned ArgNo);
|
H A D | CGDecl.cpp | 1738 void CodeGenFunction::EmitParmDecl(const VarDecl &D, ParamValue Arg,
|
Completed in 145 milliseconds