| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 143 if (m_context_type == ContextType::RegisterInfo) in GetRegisterInfo() 149 if (m_context_type == ContextType::LLDBType) in GetType() 201 case ContextType::Invalid: in ValueOf() 202 case ContextType::RegisterInfo: // RegisterInfo * in ValueOf() 203 case ContextType::LLDBType: // Type * in ValueOf() 206 case ContextType::Variable: // Variable * in ValueOf() 215 case ContextType::RegisterInfo: // RegisterInfo * in GetValueByteSize() 223 case ContextType::Invalid: in GetValueByteSize() 224 case ContextType::LLDBType: // Type * in GetValueByteSize() 225 case ContextType::Variable: // Variable * in GetValueByteSize() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 56 enum class ContextType { enum 87 ContextType GetContextType() const { return m_context_type; } in GetContextType() 93 m_context_type = ContextType::Invalid; in ClearContext() 96 void SetContext(ContextType context_type, void *p) { in SetContext() 99 if (m_context_type == ContextType::RegisterInfo) { in SetContext() 141 static const char *GetContextTypeAsCString(ContextType context_type); 183 ContextType m_context_type = ContextType::Invalid;
|
| H A D | EmulateInstruction.h | 134 enum ContextType { enum 220 ContextType type = eContextInvalid;
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectVariable.cpp | 139 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue() 143 m_resolved_value.SetContext(Value::ContextType::Invalid, nullptr); in UpdateValue() 168 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue() 234 value.SetContext(Value::ContextType::Variable, variable); in UpdateValue() 247 m_resolved_value.SetContext(Value::ContextType::Invalid, nullptr); in UpdateValue() 350 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) in GetLocationAsCString() 363 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) { in SetValueFromCString() 392 if (m_resolved_value.GetContextType() == Value::ContextType::RegisterInfo) { in SetData()
|
| H A D | ValueObjectMemory.cpp | 61 m_value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in ValueObjectMemory() 219 value.SetContext(Value::ContextType::LLDBType, m_type_sp.get()); in UpdateValue()
|
| H A D | ValueObjectRegister.cpp | 251 m_value.SetContext(Value::ContextType::RegisterInfo, in UpdateValue()
|
| H A D | ValueObject.cpp | 297 if (value.GetContextType() == Value::ContextType::RegisterInfo) { in GetLocationAsCStringImpl() 1080 if (m_value.GetContextType() == Value::ContextType::RegisterInfo) { in GetValueAsCString()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/ |
| H A D | Diagnostics.h | 53 enum ContextType { enum 148 ContextType Type; 179 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 47 const Value::ContextType context_type = value.GetContextType(); in FormatObject() 51 if (context_type == Value::ContextType::RegisterInfo) { in FormatObject()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Diagnostics.cpp | 14 Diagnostics::ArgStream Diagnostics::pushContextFrame(ContextType Type, in pushContextFrame() 76 static StringRef contextTypeToFormatString(Diagnostics::ContextType Type) { in contextTypeToFormatString()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugCrossImpSubsection.h | 39 using ContextType = void;
|
| H A D | DebugChecksumsSubsection.h | 44 using ContextType = void;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | ExpressionVariable.h | 52 Value::ContextType::RegisterInfo, const_cast<RegisterInfo *>(reg_info)); in SetRegisterInfo()
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | TokenAnnotator.cpp | 183 Contexts.back().ContextType = Context::TemplateArgument; in parseAngle() 351 Contexts.back().ContextType = Context::VerilogInstancePortList; in parseParens() 385 Contexts.back().ContextType = Context::C11GenericSelection; in parseParens() 397 Contexts.back().ContextType = Context::ForEachMacro; in parseParens() 686 Contexts.back().ContextType == Context::TemplateArgument); in parseSquare() 1196 Contexts.back().ContextType = Context::StructArrayInitializer; in parseBrace() 1404 } else if (Contexts.back().ContextType == Context::C11GenericSelection) { in consumeToken() 1728 switch (Contexts.back().ContextType) { in consumeToken() 1749 if (Contexts.back().ContextType == Context::ForEachMacro) in consumeToken() 2050 if (ctx.ContextType == Context::StructArrayInitializer) in parseLine() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | FunctionCaller.cpp | 210 arg_value->GetContextType() == Value::ContextType::Invalid && in WriteFunctionArguments()
|
| H A D | DWARFExpression.cpp | 113 value.SetContext(Value::ContextType::RegisterInfo, in ReadRegisterValueAsScalar()
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 422 Type ContextType = getParamType(TypeArgIdx); in Intrinsic() local 427 EltSizeInBits = ContextType.getElementSizeInBits(); in Intrinsic() 429 VecSizeInBits = ContextType.getSizeInBits(); in Intrinsic()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1525 if (var_location.GetContextType() == Value::ContextType::Invalid) in GetVariableValue() 1624 if (var_location.GetContextType() == Value::ContextType::Invalid) in AddOneVariable()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 768 int ContextType; in checkMustTailAttr() local 770 ContextType = 0; in checkMustTailAttr() 772 ContextType = 1; in checkMustTailAttr() 774 ContextType = 2; in checkMustTailAttr() 776 << &MTA << ContextType; in checkMustTailAttr()
|
| H A D | SemaCodeComplete.cpp | 550 static QualType getPreferredTypeOfUnaryArg(Sema &S, QualType ContextType, in getPreferredTypeOfUnaryArg() argument 556 if (!ContextType.isNull() && ContextType->isPointerType()) in getPreferredTypeOfUnaryArg() 557 return ContextType->getPointeeType(); in getPreferredTypeOfUnaryArg() 560 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg() 562 return S.getASTContext().getPointerType(ContextType.getNonReferenceType()); in getPreferredTypeOfUnaryArg() 568 if (ContextType.isNull()) in getPreferredTypeOfUnaryArg() 571 return ContextType; in getPreferredTypeOfUnaryArg()
|