Searched refs:Expression (Results 26 - 50 of 100) sorted by relevance

1234

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVN.cpp114 struct llvm::GVN::Expression { struct in class:llvm::GVN
120 Expression(uint32_t o = ~2U) : opcode(o) {} function in struct:llvm::GVN::Expression
122 bool operator==(const Expression &other) const {
134 friend hash_code hash_value(const Expression &Value) {
143 template <> struct DenseMapInfo<GVN::Expression> {
144 static inline GVN::Expression getEmptyKey() { return ~0U; }
145 static inline GVN::Expression getTombstoneKey() { return ~1U; }
147 static unsigned getHashValue(const GVN::Expression &e) {
153 static bool isEqual(const GVN::Expression &LHS, const GVN::Expression
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DARM.h174 StringRef Expression) const override {
175 return Expression;
H A DX86.h222 StringRef Expression) const override {
244 // In case the constraint is 'r' we need to return Expression
246 return Expression;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/AsmParser/
H A DAVRAsmParser.cpp410 MCExpr const *Expression; local
411 if (getParser().parseExpression(Expression))
415 Operands.push_back(AVROperand::CreateImm(Expression, S, E));
494 MCExpr const *Expression = AVRMCExpr::create(ModifierKind, InnerExpression, local
498 Operands.push_back(AVROperand::CreateImm(Expression, S, E));
553 MCExpr const *Expression; local
569 if (getParser().parseExpression(Expression))
575 Operands.push_back(AVROperand::CreateMemri(RegNo, Expression, S, E));
/freebsd-12-stable/lib/clang/liblldb/
H A DMakefile201 SRCS+= Expression/DWARFExpression.cpp
202 SRCS+= Expression/DiagnosticManager.cpp
203 SRCS+= Expression/Expression.cpp
204 SRCS+= Expression/ExpressionVariable.cpp
205 SRCS+= Expression/FunctionCaller.cpp
206 SRCS+= Expression/IRExecutionUnit.cpp
207 SRCS+= Expression/IRInterpreter.cpp
208 SRCS+= Expression/IRMemoryMap.cpp
209 SRCS+= Expression/LLVMUserExpressio
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.h24 #include "lldb/Expression/LLVMUserExpression.h"
25 #include "lldb/Expression/Materializer.h"
33 /// "lldb/Expression/ClangUserExpression.h" Encapsulates a single expression
48 static bool classof(const Expression *obj) { return obj->isA(&ID); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp133 Instructions.back().Expression = DWARFExpression(
146 Instructions.back().Expression = DWARFExpression(
267 assert(Instr.Expression && "missing DWARFExpression object");
269 Instr.Expression->print(OS, MRI, nullptr, IsEH);
H A DDWARFVerifier.cpp484 DWARFExpression Expression(Data, U->getVersion(),
486 bool Error = any_of(Expression, [](DWARFExpression::Operation &Op) {
489 if (Error || !Expression.verify(U))
1293 DWARFExpression Expression(Data, U->getVersion(), U->getAddressByteSize());
1294 bool IsInteresting = any_of(Expression, [](DWARFExpression::Operation &Op) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp176 Expression, enumerator in enum:__anon5284::PPCOperand::KindTy
223 case Expression:
267 assert(Kind == Expression && "Invalid access!");
272 assert(Kind == Expression && "Invalid access!");
308 return Kind == Immediate || Kind == Expression;
333 case Expression:
344 case Expression:
353 bool isS16ImmX4() const { return Kind == Expression ||
356 bool isS16ImmX16() const { return Kind == Expression ||
361 case Expression
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h51 Expression, member in class:lldb_private::IOHandler::Type
192 enum class Completion { None, LLDBCommand, Expression };
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h521 /// isLoopInvariant - Returns true if Expression is loop invariant
523 bool isLoopInvariant(const SCEV *Expression, const Loop *LoopNest) const;
538 /// have a level <= CommonLevels and are referred to by the SCEV Expression.
539 void collectCommonLoops(const SCEV *Expression,
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1070 if (Node.getKind() == TemplateArgument::Expression)
4566 if (const Expr* Expression = Node.getIdx())
4567 return InnerMatcher.matches(*Expression, Finder, Builder);
4583 if (const Expr* Expression = Node.getBase())
4584 return InnerMatcher.matches(*Expression, Finder, Builder);
4897 const Expr *Expression = Node.getTrueExpr(); local
4898 return (Expression != nullptr &&
4899 InnerMatcher.matches(*Expression, Finder, Builder));
4912 const Expr *Expression = Node.getFalseExpr(); local
4913 return (Expression !
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp190 // Extracting the register name from the Expression value,
192 static StringRef extractRegisterName(const Expr *Expression, argument
194 Expression = Expression->IgnoreImpCasts();
195 if (const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(Expression)) {
H A DSemaTemplateDeduction.cpp259 if (Y.getKind() == TemplateArgument::Expression ||
285 case TemplateArgument::Expression: {
286 if (Y.getKind() != TemplateArgument::Expression)
305 if (Y.getKind() == TemplateArgument::Expression)
330 if (Y.getKind() == TemplateArgument::Expression)
2195 if (Arg.getKind() == TemplateArgument::Expression) {
2205 case TemplateArgument::Expression:
2218 if (Arg.getKind() == TemplateArgument::Expression)
2417 case TemplateArgument::Expression: {
2506 case TemplateArgument::Expression
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1018 Metadata *Expression; member in struct:llvm::MDNodeKeyImpl
1020 MDNodeKeyImpl(Metadata *Variable, Metadata *Expression) argument
1021 : Variable(Variable), Expression(Expression) {}
1023 : Variable(N->getRawVariable()), Expression(N->getRawExpression()) {}
1027 Expression == RHS->getRawExpression();
1030 unsigned getHashValue() const { return hash_combine(Variable, Expression); }
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DASTDiagnostic.cpp537 /// Expression difference, this is only when both arguments are
540 Expression, enumerator in enum:__anon2700::TemplateDiff::DiffTree::DiffKind
635 FlatTree[CurrentNode].Kind = Expression;
795 assert(FlatTree[ReadNode].Kind == Expression && "Unexpected kind");
1201 case TemplateArgument::Expression:
1231 case TemplateArgument::Expression:
1477 case DiffTree::Expression: {
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp13 #include "lldb/Expression/REPL.h"
14 #include "lldb/Expression/UserExpression.h"
202 IOHandlerDelegate(IOHandlerDelegate::Completion::Expression),
524 new IOHandlerEditline(debugger, IOHandler::Type::Expression,
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp209 DWARFExpression Expression(Data, U->getVersion(), U->getAddressByteSize());
212 return llvm::any_of(Expression, [](DWARFExpression::Operation &Op) {
/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Daslrules.y747 : Expression {$$ = TrSetOpFlags ($1, OP_COMPILE_TIME_CONST);}
/freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/
H A DFunctionCaller.cpp10 #include "lldb/Expression/FunctionCaller.h"
14 #include "lldb/Expression/DiagnosticManager.h"
15 #include "lldb/Expression/IRExecutionUnit.h"
40 : Expression(exe_scope), m_execution_unit_sp(), m_parser(),
H A DUserExpression.cpp23 #include "lldb/Expression/DiagnosticManager.h"
24 #include "lldb/Expression/ExpressionVariable.h"
25 #include "lldb/Expression/IRExecutionUnit.h"
26 #include "lldb/Expression/IRInterpreter.h"
27 #include "lldb/Expression/Materializer.h"
28 #include "lldb/Expression/UserExpression.h"
56 : Expression(exe_scope), m_expr_text(expr), m_expr_prefix(prefix),
181 "== [UserExpression::Evaluate] Expression may not run, but "
315 "== [UserExpression::Evaluate] Expression may not run, but "
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp159 const DIExpression *Expression; ///< Any complex address expression. member in class:__anon4565::UserValue
191 : Variable(var), Expression(expr), dl(std::move(L)), leader(this),
210 return Var == Variable && Expr == Expression && dl->getInlinedAt() == IA;
1332 const DIExpression *Expr = Expression;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h47 Optional<DWARFExpression> Expression; member in struct:llvm::dwarf::CFIProgram::Instruction
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h91 enum CounterKind { Zero, CounterValueReference, Expression }; enumerator in enum:llvm::coverage::Counter::CounterKind
110 bool isExpression() const { return Kind == Expression; }
139 return Counter(Expression, ExpressionId);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp65 case Counter::Expression:
143 case Counter::Expression: {
173 case Counter::Expression: {

Completed in 217 milliseconds

1234