Searched refs:ValueLoc (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfDebug.h | 122 std::unique_ptr<DbgValueLoc> ValueLoc = nullptr; variable 142 assert(!ValueLoc.get() && "Already initialized?"); in initializeMMI() 153 assert(!ValueLoc && "Already initialized?"); in initializeDbgValue() 156 ValueLoc = std::make_unique<DbgValueLoc>(Value); in initializeDbgValue() 157 if (auto *E = ValueLoc->getExpression()) in initializeDbgValue() 171 assert(ValueLoc.get() && FrameIndexExprs.size() <= 1); in getSingleExpression() 180 const DbgValueLoc *getValueLoc() const { return ValueLoc.get(); } in getValueLoc() 213 assert(ValueLoc.get() && "Expected DBG_VALUE, not MMI variable"); in hasComplexAddress()
|
| H A D | DwarfDebug.cpp | 260 assert(!ValueLoc.get() && "Already initialized?"); in initializeDbgValue() 266 ValueLoc = std::make_unique<DbgValueLoc>(getDebugLocValue(DbgValue)); in initializeDbgValue() 291 assert(DebugLocListIndex == ~0U && !ValueLoc.get() && "not an MMI entry"); in addMMIEntry() 292 assert(V.DebugLocListIndex == ~0U && !V.ValueLoc.get() && "not an MMI entry"); in addMMIEntry()
|
| /llvm-project-15.0.7/clang/lib/Analysis/FlowSensitive/Models/ |
| H A D | UncheckedOptionalAccessModel.cpp | 247 auto &ValueLoc = ValueRef->getReferentLoc(); in maybeInitializeOptionalValueMember() local 248 if (Env.getValue(ValueLoc) == nullptr) { in maybeInitializeOptionalValueMember() 260 auto *ValueVal = Env.createValue(ValueLoc.getType()); in maybeInitializeOptionalValueMember() 263 Env.setValue(ValueLoc, *ValueVal); in maybeInitializeOptionalValueMember() 265 return &ValueLoc; in maybeInitializeOptionalValueMember() 272 auto &ValueLoc = Env.createStorageLocation(Ty); in maybeInitializeOptionalValueMember() local 273 Env.setValue(ValueLoc, *ValueVal); in maybeInitializeOptionalValueMember() 274 auto ValueRef = std::make_unique<ReferenceValue>(ValueLoc); in maybeInitializeOptionalValueMember() 276 return &ValueLoc; in maybeInitializeOptionalValueMember()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 1928 SMLoc ValueLoc = Tok.getLoc(); in ParseIntelExpression() local 1935 return Error(ValueLoc, "expected absolute value"); in ParseIntelExpression() 1937 return Error(ValueLoc, ErrMsg); in ParseIntelExpression()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 368 SourceLocation ValueLoc, in ActOnObjCBoolLiteral() argument 372 Inner = ActOnCXXBoolLiteral(ValueLoc, Value? tok::kw_true : tok::kw_false); in ActOnObjCBoolLiteral() 376 Inner = ActOnIntegerConstant(ValueLoc, Value? 1 : 0); in ActOnObjCBoolLiteral()
|
| /llvm-project-15.0.7/llvm/lib/TableGen/ |
| H A D | TGParser.cpp | 2831 SMLoc ValueLoc = Lex.getLoc(); in ParseForeachDeclaration() local 2849 Error(ValueLoc, "expected a list, got '" + I->getAsString() + "'"); in ParseForeachDeclaration()
|
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 1735 SMLoc ValueLoc = getTok().getLoc(); in parsePrimaryExpr() local 1740 return Error(ValueLoc, "literal value out of range"); in parsePrimaryExpr()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 6496 SMLoc ValueLoc = getLoc(); in parseDelay() local 6543 Error(ValueLoc, "invalid value name " + ValueName); in parseDelay()
|
| /llvm-project-15.0.7/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 4386 LocTy ValueLoc = Lex.getLoc(); in parseMDField() local 4392 return error(ValueLoc, "'" + Name + "' cannot be empty"); in parseMDField()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 7220 ExprResult ActOnObjCBoolLiteral(SourceLocation AtLoc, SourceLocation ValueLoc,
|