HomeSort by relevance Sort by last modified time
    Searched refs:Expr (Results 1 - 25 of 394) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 33 const MCExpr *Expr = 0;
35 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_None, OutContext);
39 Expr = AArch64MCExpr::CreateGOT(Expr, OutContext);
42 Expr = AArch64MCExpr::CreateGOTLo12(Expr, OutContext);
45 Expr = AArch64MCExpr::CreateLo12(Expr, OutContext);
48 Expr = AArch64MCExpr::CreateDTPREL_G1(Expr, OutContext)
    [all...]
  /bootable/recovery/edify/
expr.h 30 typedef struct Expr Expr;
58 int argc, Expr* argv[]);
60 struct Expr {
64 Expr** argv;
68 // Take one of the Expr*s passed to the function as an argument,
71 Value* EvaluateValue(State* state, Expr* expr);
73 // Take one of the Expr*s passed to the function as an argument,
78 char* Evaluate(State* state, Expr* expr)
    [all...]
parser.y 22 #include "expr.h"
29 void yyerror(Expr** root, int* error_count, const char* s);
30 int yyparse(Expr** root, int* error_count);
38 Expr* expr;
41 Expr** argv;
47 %type <expr> expr
50 %parse-param {Expr** root}
65 input: expr { *root = $1;
68 expr: STRING { label
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.h 71 const MCExpr *Expr;
74 : Kind(_Kind), Expr(_Expr) {}
80 static const AArch64MCExpr *Create(VariantKind Kind, const MCExpr *Expr,
83 static const AArch64MCExpr *CreateLo12(const MCExpr *Expr, MCContext &Ctx) {
84 return Create(VK_AARCH64_LO12, Expr, Ctx);
87 static const AArch64MCExpr *CreateGOT(const MCExpr *Expr, MCContext &Ctx) {
88 return Create(VK_AARCH64_GOT, Expr, Ctx);
91 static const AArch64MCExpr *CreateGOTLo12(const MCExpr *Expr,
93 return Create(VK_AARCH64_GOT_LO12, Expr, Ctx);
96 static const AArch64MCExpr *CreateDTPREL_G1(const MCExpr *Expr,
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.h 27 const MCExpr *Expr;
30 : Kind(_Kind), Expr(_Expr) {}
36 static const ARMMCExpr *Create(VariantKind Kind, const MCExpr *Expr,
39 static const ARMMCExpr *CreateUpper16(const MCExpr *Expr, MCContext &Ctx) {
40 return Create(VK_ARM_HI16, Expr, Ctx);
43 static const ARMMCExpr *CreateLower16(const MCExpr *Expr, MCContext &Ctx) {
44 return Create(VK_ARM_LO16, Expr, Ctx);
55 const MCExpr *getSubExpr() const { return Expr; }
ARMMCExpr.cpp 17 ARMMCExpr::Create(VariantKind Kind, const MCExpr *Expr,
19 return new (Ctx) ARMMCExpr(Kind, Expr);
29 const MCExpr *Expr = getSubExpr();
30 if (Expr->getKind() != MCExpr::SymbolRef)
32 Expr->print(OS);
33 if (Expr->getKind() != MCExpr::SymbolRef)
48 llvm_unreachable("Can't handle nested target expr!");
  /external/clang/lib/AST/
ExprClassification.cpp 10 // This file implements Expr::classify.
14 #include "clang/AST/Expr.h"
24 typedef Expr::Classification Cl;
26 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E);
32 const Expr *trueExpr,
33 const Expr *falseExpr);
34 static Cl::ModifiableType IsModifiable(ASTContext &Ctx, const Expr *E,
37 Cl Expr::ClassifyImpl(ASTContext &Ctx, SourceLocation *Loc) const {
89 const Expr *E,
102 static Cl::Kinds ClassifyInternal(ASTContext &Ctx, const Expr *E)
    [all...]
DeclOpenMP.cpp 18 #include "clang/AST/Expr.h"
31 ArrayRef<Expr *> VL) {
33 (VL.size() * sizeof(Expr *));
46 unsigned Size = sizeof(OMPThreadPrivateDecl) + (N * sizeof(Expr *));
55 void OMPThreadPrivateDecl::setVars(ArrayRef<Expr *> VL) {
58 Expr **Vars = reinterpret_cast<Expr **>(this + 1);
  /external/chromium_org/third_party/sqlite/src/test/
fuzz_common.tcl 16 set i [expr {int(rand()*$n)}]
27 # Expr
68 proc Expr { {c {}} } {
74 {[Expr $c] [BinaryOp] [Expr $c]} \
75 {[UnaryOp] [Expr $c]} \
76 {[Expr $c] ISNULL} \
77 {[Expr $c] NOTNULL} \
78 {CAST([Expr $c] AS blob)} \
79 {CAST([Expr $c] AS text)}
    [all...]
  /external/clang/include/clang/AST/
DeclOpenMP.h 44 ArrayRef<const Expr *> getVars() const {
45 return ArrayRef<const Expr *>(
46 reinterpret_cast<const Expr * const *>(this + 1),
50 llvm::MutableArrayRef<Expr *> getVars() {
51 return llvm::MutableArrayRef<Expr *>(
52 reinterpret_cast<Expr **>(this + 1),
56 void setVars(ArrayRef<Expr *> VL);
61 ArrayRef<Expr *> VL);
65 typedef llvm::MutableArrayRef<Expr *>::iterator varlist_iterator;
66 typedef ArrayRef<const Expr *>::iterator varlist_const_iterator
    [all...]
ParentMap.h 19 class Expr;
59 bool isConsumedExpr(Expr *E) const;
61 bool isConsumedExpr(const Expr *E) const {
62 return isConsumedExpr(const_cast<Expr*>(E));
Expr.h 1 //===--- Expr.h - Classes for representing expressions ----------*- C++ -*-===//
10 // This file defines the Expr interface and subclasses.
71 Expr *RHS;
92 SubobjectAdjustment(const MemberPointerType *MPT, Expr *RHS)
99 /// Expr - This represents one expression. Note that Expr's are subclasses of
103 class Expr : public Stmt {
107 Expr(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK,
121 explicit Expr(StmtClass SC, EmptyShell) : Stmt(SC) { }
128 // reference type (C++ [expr]p6). Us
    [all...]
ExprCXX.h 11 /// \brief Defines the clang::Expr interface and subclasses for C++ expressions.
19 #include "clang/AST/Expr.h"
66 CXXOperatorCallExpr(ASTContext& C, OverloadedOperatorKind Op, Expr *fn,
67 ArrayRef<Expr*> args, QualType t, ExprValueKind VK,
119 CXXMemberCallExpr(ASTContext &C, Expr *fn, ArrayRef<Expr*> args,
129 Expr *getImplicitObjectArgument() const;
153 CUDAKernelCallExpr(ASTContext &C, Expr *fn, CallExpr *Config,
154 ArrayRef<Expr*> args, QualType t, ExprValueKind VK,
188 CastKind kind, Expr *op, unsigned PathSize
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCExpr.h 34 const MCExpr *Expr;
39 : Kind(_Kind), Expr(_Expr), IsDarwin(_IsDarwin) {}
45 static const PPCMCExpr *Create(VariantKind Kind, const MCExpr *Expr,
48 static const PPCMCExpr *CreateLo(const MCExpr *Expr,
50 return Create(VK_PPC_LO, Expr, isDarwin, Ctx);
53 static const PPCMCExpr *CreateHi(const MCExpr *Expr,
55 return Create(VK_PPC_HI, Expr, isDarwin, Ctx);
58 static const PPCMCExpr *CreateHa(const MCExpr *Expr,
60 return Create(VK_PPC_HA, Expr, isDarwin, Ctx);
71 const MCExpr *getSubExpr() const { return Expr; }
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86ELFRelocationInfo.cpp 42 const MCExpr *Expr = 0;
43 // If hasAddend is true, then we need to add Addend (r_addend) to Expr.
79 Expr = MCSymbolRefExpr::Create(Sym, Ctx);
88 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOT, Ctx);
93 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_PLT, Ctx);
98 Expr = MCSymbolRefExpr::Create(Sym, Ctx);
104 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Ctx);
108 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTOFF, Ctx);
116 Expr = MCConstantExpr::Create(SymSize, Ctx);
119 Expr = MCSymbolRefExpr::Create(Sym, Ctx)
    [all...]
X86MachORelocationInfo.cpp 43 const MCExpr *Expr = 0;
47 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_TLVP, Ctx);
50 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx),
55 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx),
60 Expr = MCBinaryExpr::CreateAdd(MCSymbolRefExpr::Create(Sym, Ctx),
65 Expr = MCSymbolRefExpr::Create(Sym, MCSymbolRefExpr::VK_GOTPCREL, Ctx);
68 Expr = MCSymbolRefExpr::Create(Sym, isPCRel ?
101 Expr = MCBinaryExpr::CreateSub(LHS, RHS, Ctx);
105 Expr = MCSymbolRefExpr::Create(Sym, Ctx);
108 return Expr;
    [all...]
  /external/llvm/utils/TableGen/
SetTheory.cpp 30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
31 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
37 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) {
38 if (Expr->arg_size() < 2)
40 Expr->getAsString());
42 ST.evaluate(*Expr->arg_begin(), Add, Loc);
43 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
52 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc)
    [all...]
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 51 bool ConversionFixItGenerator::tryToFixConversion(const Expr *FullExpr,
66 const Expr* Expr = FullExpr->IgnoreImpCasts();
69 if (isa<ArraySubscriptExpr>(Expr) ||
70 isa<CallExpr>(Expr) ||
71 isa<DeclRefExpr>(Expr) ||
72 isa<CastExpr>(Expr) ||
73 isa<CXXNewExpr>(Expr) ||
74 isa<CXXConstructExpr>(Expr) ||
75 isa<CXXDeleteExpr>(Expr) ||
    [all...]
SemaExceptionSpec.cpp 16 #include "clang/AST/Expr.h"
736 bool Sema::CheckExceptionSpecCompatibility(Expr *From, QualType ToType)
785 static CanThrowResult canSubExprsThrow(Sema &S, const Expr *CE) {
786 Expr *E = const_cast<Expr*>(CE);
788 for (Expr::child_range I = E->children(); I && R != CT_Can; ++I)
789 R = mergeCanThrow(R, S.canThrow(cast<Expr>(*I)));
793 static CanThrowResult canCalleeThrow(Sema &S, const Expr *E, const Decl *D) {
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Expr.java 24 public class Expr extends ASTList implements TokenId {
33 Expr(int op, ASTree _head, ASTList _tail) {
38 Expr(int op, ASTree _head) {
43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) {
44 return new Expr(op, oprand1, new ASTList(oprand2));
47 public static Expr make(int op, ASTree oprand1) {
48 return new Expr(op, oprand1);
57 public void setOprand1(ASTree expr) {
58 setLeft(expr);
63 public void setOprand2(ASTree expr) {
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 28 const MCExpr *Expr;
31 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
38 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
40 Expr = ARMMCExpr::CreateLower16(Expr, OutContext);
43 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_None,
45 Expr = ARMMCExpr::CreateUpper16(Expr, OutContext);
52 Expr = MCSymbolRefExpr::Create(Symbol, MCSymbolRefExpr::VK_ARM_PLT,
58 Expr = MCBinaryExpr::CreateAdd(Expr
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 18 #include "clang/AST/Expr.h"
51 BinaryOperator *makeAssignment(const Expr *LHS, const Expr *RHS, QualType Ty);
54 BinaryOperator *makeComparison(const Expr *LHS, const Expr *RHS,
64 UnaryOperator *makeDereference(const Expr *Arg, QualType Ty);
67 Expr *makeIntegralCast(const Expr *Arg, QualType Ty);
70 ImplicitCastExpr *makeIntegralCastToBoolean(const Expr *Arg);
73 ImplicitCastExpr *makeLvalueToRvalue(const Expr *Arg, QualType Ty)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
TaintTesterChecker.cpp 23 class TaintTesterChecker : public Checker< check::PostStmt<Expr> > {
31 const Expr* Arg,
35 void checkPostStmt(const Expr *E, CheckerContext &C) const;
44 void TaintTesterChecker::checkPostStmt(const Expr *E,
UndefBranchChecker.cpp 36 const Expr *FindExpr(const Expr *Ex) {
42 if (const Expr *ExI = dyn_cast_or_null<Expr>(*I)) {
43 const Expr *E2 = FindExpr(ExI);
50 bool MatchesCriteria(const Expr *Ex) {
88 const Expr *Ex = cast<Expr>(Condition);
CStringSyntaxChecker.cpp 16 #include "clang/AST/Expr.h"
38 inline bool sameDecl(const Expr *A1, const Expr *A2) {
46 inline bool isSizeof(const Expr *E, const Expr *WithArg) {
55 inline bool isStrlen(const Expr *E, const Expr *WithArg) {
67 inline bool isOne(const Expr *E) {
73 inline StringRef getPrintableName(const Expr *E) {
106 const Expr *DstArg = CE->getArg(0)
    [all...]

Completed in 392 milliseconds

1 2 3 4 5 6 7 8 91011>>