Searched defs:Expr (Results 26 - 50 of 95) sorted by relevance

1234

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp57 static bool VerifySubExpr(Value *Expr, argument
60 Instruction *I = dyn_cast<Instruction>(Expr);
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp311 const MCExpr *Expr = Op.getExpr(); local
312 switch (Expr->getKind()) {
314 O << '#' << *Expr; local
320 const MCConstantExpr *Constant = cast<MCConstantExpr>(Expr);
323 O << '#' << *Expr; local
333 O << *Expr; local
/external/llvm/lib/Target/Mips/InstPrinter/
H A DMipsInstPrinter.cpp125 static void printExpr(const MCExpr *Expr, raw_ostream &OS) { argument
129 if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) {
134 } else if (const MipsMCExpr *ME = dyn_cast<MipsMCExpr>(Expr)) {
137 } else if (!(SRE = dyn_cast<MCSymbolRefExpr>(Expr)))
/external/llvm/lib/Target/NVPTX/InstPrinter/
H A DNVPTXInstPrinter.cpp287 const MCExpr *Expr = Op.getExpr(); local
288 const MCSymbol &Sym = cast<MCSymbolRefExpr>(Expr)->getSymbol();
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCExpr.h34 const MCExpr *Expr; member in class:llvm::PPCMCExpr
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, argument
50 return Create(VK_PPC_LO, Expr, isDarwin, Ctx);
53 static const PPCMCExpr *CreateHi(const MCExpr *Expr, argument
55 return Create(VK_PPC_HI, Expr, isDarwin, Ctx);
58 static const PPCMCExpr *CreateHa(const MCExpr *Expr, argument
60 return Create(VK_PPC_HA, Expr, isDarwin, Ctx);
71 const MCExpr *getSubExpr() const { return Expr; }
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCMCInstLower.cpp139 const MCExpr *Expr = MCSymbolRefExpr::Create(Symbol, RefKind, Ctx); local
142 Expr = MCBinaryExpr::CreateAdd(Expr,
151 Expr = MCBinaryExpr::CreateSub(Expr, PB, Ctx);
157 Expr = PPCMCExpr::CreateLo(Expr, isDarwin, Ctx);
160 Expr = PPCMCExpr::CreateHa(Expr, isDarwin, Ctx);
164 return MCOperand::CreateExpr(Expr);
[all...]
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DSIMCCodeEmitter.cpp180 const MCExpr *Expr = MO.getExpr(); local
182 Fixups.push_back(MCFixup::Create(0, Expr, Kind, MI.getLoc()));
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCCodeEmitter.cpp125 const MCExpr *Expr = MO.getExpr(); local
126 if (const SparcMCExpr *SExpr = dyn_cast<SparcMCExpr>(Expr)) {
128 Fixups.push_back(MCFixup::Create(0, Expr, Kind));
133 if (Expr->EvaluateAsAbsolute(Res))
H A DSparcMCExpr.h63 const MCExpr *Expr; member in class:llvm::SparcMCExpr
66 : Kind(_Kind), Expr(_Expr) {}
72 static const SparcMCExpr *Create(VariantKind Kind, const MCExpr *Expr,
82 const MCExpr *getSubExpr() const { return Expr; }
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCCodeEmitter.cpp186 const MCExpr *Expr; local
188 Expr = MCConstantExpr::Create(MO.getImm() + Offset, Ctx);
190 Expr = MO.getExpr();
197 Expr = MCBinaryExpr::CreateAdd(Expr, OffsetExpr, Ctx);
200 Fixups.push_back(MCFixup::Create(Offset, Expr, (MCFixupKind)Kind));
/external/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp184 const MCExpr *Expr = local
190 OutStreamer.EmitValue(Expr, Size);
/external/chromium_org/tools/gn/
H A Dcommand_format.cc79 ExprStyle Expr(const ParseNode* root);
159 Expr(stmt);
163 // Expr(), as are suffix() which are queued to the next Newline().
185 Printer::ExprStyle Printer::Expr(const ParseNode* root) { function in class:commands::__anon16438::Printer
207 Expr(binop->left());
211 Expr(binop->right());
216 Expr(condition->condition());
231 Expr(condition->if_false());
263 Expr(unaryop->operand());
268 CHECK(false) << "Unhandled case in Expr
[all...]
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTest.cpp476 bool VisitCXXConstructExpr(CXXConstructExpr* Expr) { argument
477 if (const CXXConstructorDecl* Ctor = Expr->getConstructor()) {
479 Match(Class->getName(), Expr->getLocation());
/external/javassist/src/main/javassist/expr/
H A DExpr.java44 public abstract class Expr implements Opcode { class in inherits:Opcode
57 protected Expr(int pos, CodeIterator i, CtClass declaring, MethodInfo m) { method in class:Expr
/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectSymbolizer.cpp137 const MCExpr *Expr = MCSymbolRefExpr::Create(Sym, Ctx); local
138 MI.addOperand(MCOperand::CreateExpr(Expr));
173 const MCExpr *Expr = MCSymbolRefExpr::Create(Sym, Ctx); local
176 Expr = MCBinaryExpr::CreateAdd(Expr, Off, Ctx);
178 MI.addOperand(MCOperand::CreateExpr(Expr));
/external/llvm/lib/MC/
H A DMCExpr.cpp142 const MCUnaryExpr *MCUnaryExpr::Create(Opcode Opc, const MCExpr *Expr, argument
144 return new (Ctx) MCUnaryExpr(Opc, Expr);
/external/llvm/lib/TableGen/
H A DSetTheory.cpp30 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
32 ST.evaluate(Expr->arg_begin(), Expr->arg_end(), Elts, Loc);
38 void apply(SetTheory &ST, DagInit *Expr, RecSet &Elts,
40 if (Expr->arg_size() < 2)
42 Expr->getAsString());
44 ST.evaluate(*Expr->arg_begin(), Add, Loc);
45 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
54 void apply(SetTheory &ST, DagInit *Expr, RecSe
272 evaluate(Init *Expr, RecSet &Elts, ArrayRef<SMLoc> Loc) argument
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMTargetStreamer.cpp30 const MCExpr *ARMTargetStreamer::addConstantPoolEntry(const MCExpr *Expr) { argument
31 return ConstantPools->addEntry(Streamer, Expr);
/external/llvm/lib/IR/
H A DValue.cpp305 static bool contains(SmallPtrSet<ConstantExpr *, 4> &Cache, ConstantExpr *Expr, argument
307 if (!Cache.insert(Expr))
310 for (auto &O : Expr->operands()) {
322 static bool contains(Value *Expr, Value *V) { argument
323 if (Expr == V)
330 auto *CE = dyn_cast<ConstantExpr>(Expr);
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp219 const MCExpr *Expr; local
220 if (getParser().parseExpression(Expr))
226 getStreamer().EmitELFSize(Sym, Expr);
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCCodeEmitter.cpp257 const MCExpr *Expr = MO.getExpr(); local
262 Fixups.push_back(MCFixup::Create(0, Expr, Kind, MI.getLoc()));
288 const MCExpr *Expr = MO.getExpr(); local
292 Fixups.push_back(MCFixup::Create(0, Expr, Kind, MI.getLoc()));
H A DAArch64MCExpr.h105 const MCExpr *Expr; member in class:llvm::AArch64MCExpr
108 explicit AArch64MCExpr(const MCExpr *Expr, VariantKind Kind) argument
109 : Expr(Expr), Kind(Kind) {}
115 static const AArch64MCExpr *Create(const MCExpr *Expr, VariantKind Kind,
126 const MCExpr *getSubExpr() const { return Expr; }
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java129 Expr();
783 * Expr ::= OrExpr
788 protected void Expr() throws javax.xml.transform.TransformerException method in class:XPathParser
1151 * StringExpr ::= Expr
1162 Expr();
1171 * StringExpr ::= Expr
1182 Expr();
1197 * NumberExpr ::= Expr
1208 Expr();
1384 * | '(' Expr ')'
[all...]
/external/chromium_org/third_party/jinja2/
H A Dnodes.py112 - :class:`Expr`: expressions
350 class Expr(Node): class in inherits:Node
372 class BinExpr(Expr):
391 class UnaryExpr(Expr):
410 class Name(Expr):
425 class Literal(Expr):
522 class CondExpr(Expr):
540 class Filter(Expr):
584 class Test(Expr):
591 class Call(Expr)
[all...]
/external/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp67 const Expr *Arg = Msg->getArg(0)->IgnoreParenImpCasts();
110 const Expr *Receiver,
160 const Expr *Rec = Msg->getInstanceReceiver();
172 static bool subscriptOperatorNeedsParens(const Expr *FullExpr);
174 static void maybePutParensOnReceiver(const Expr *Receiver, Commit &commit) {
185 const Expr *Rec = Msg->getInstanceReceiver();
233 const Expr *Rec = Msg->getInstanceReceiver();
267 const Expr *Rec = Msg->getInstanceReceiver();
376 static void objectifyExpr(const Expr *E, Commit &commit);
412 const Expr *SentinelExp
890 const Expr* Expr = FullExpr->IgnoreImpCasts(); local
912 const Expr* Expr = FullExpr->IgnoreImpCasts(); local
[all...]

Completed in 574 milliseconds

1234