Searched refs:ValueLoc (Results 1 – 11 of 11) sorted by relevance
| /openbsd-src/gnu/llvm/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() 182 const DbgValueLoc *getValueLoc() const { return ValueLoc.get(); } in getValueLoc() 215 assert(ValueLoc.get() && "Expected DBG_VALUE, not MMI variable"); in hasComplexAddress()
|
| H A D | DwarfDebug.cpp | 261 assert(!ValueLoc.get() && "Already initialized?"); in initializeDbgValue() 267 ValueLoc = std::make_unique<DbgValueLoc>(getDebugLocValue(DbgValue)); in initializeDbgValue() 292 assert(DebugLocListIndex == ~0U && !ValueLoc.get() && "not an MMI entry"); in addMMIEntry() 293 assert(V.DebugLocListIndex == ~0U && !V.ValueLoc.get() && "not an MMI entry"); in addMMIEntry()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/Models/ |
| H A D | UncheckedOptionalAccessModel.cpp | 288 auto &ValueLoc = ValueRef->getReferentLoc(); in maybeInitializeOptionalValueMember() local 289 if (Env.getValue(ValueLoc) == nullptr) { in maybeInitializeOptionalValueMember() 301 auto *ValueVal = Env.createValue(ValueLoc.getType()); in maybeInitializeOptionalValueMember() 304 Env.setValue(ValueLoc, *ValueVal); in maybeInitializeOptionalValueMember() 306 return &ValueLoc; in maybeInitializeOptionalValueMember() 313 auto &ValueLoc = Env.createStorageLocation(Ty); in maybeInitializeOptionalValueMember() local 314 Env.setValue(ValueLoc, *ValueVal); in maybeInitializeOptionalValueMember() 315 auto ValueRef = std::make_unique<ReferenceValue>(ValueLoc); in maybeInitializeOptionalValueMember() 317 return &ValueLoc; in maybeInitializeOptionalValueMember()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/ |
| H A D | InstrRefBasedImpl.cpp | 1700 for (auto ValueLoc : FoundLocs) { in transferDebugInstrRef() local 1701 ValueIDNum NewID = ValueLoc.first; in transferDebugInstrRef() 1702 LocIdx FoundLoc = ValueLoc.second.getLoc(); in transferDebugInstrRef()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 369 SourceLocation ValueLoc, in ActOnObjCBoolLiteral() argument 373 Inner = ActOnCXXBoolLiteral(ValueLoc, Value? tok::kw_true : tok::kw_false); in ActOnObjCBoolLiteral() 377 Inner = ActOnIntegerConstant(ValueLoc, Value? 1 : 0); in ActOnObjCBoolLiteral()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 1929 SMLoc ValueLoc = Tok.getLoc(); in ParseIntelExpression() local 1936 return Error(ValueLoc, "expected absolute value"); in ParseIntelExpression() 1938 return Error(ValueLoc, ErrMsg); in ParseIntelExpression()
|
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | TGParser.cpp | 2893 SMLoc ValueLoc = Lex.getLoc(); in ParseForeachDeclaration() local 2911 Error(ValueLoc, "expected a list, got '" + I->getAsString() + "'"); in ParseForeachDeclaration()
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/ |
| H A D | MasmParser.cpp | 1755 SMLoc ValueLoc = getTok().getLoc(); in parsePrimaryExpr() local 1760 return Error(ValueLoc, "literal value out of range"); in parsePrimaryExpr()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 6613 SMLoc ValueLoc = getLoc(); in parseDelay() local 6660 Error(ValueLoc, "invalid value name " + ValueName); in parseDelay()
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 4645 LocTy ValueLoc = Lex.getLoc(); in parseMDField() local 4651 return error(ValueLoc, "'" + Name + "' cannot be empty"); in parseMDField()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 7466 ExprResult ActOnObjCBoolLiteral(SourceLocation AtLoc, SourceLocation ValueLoc,
|