Searched refs:Operand (Results 201 - 225 of 277) sorted by relevance

1234567891011>>

/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy.cpp139 ExprAST *Operand; member in class:UnaryExprAST
142 : Opcode(opcode), Operand(operand) {}
466 if (ExprAST *Operand = ParseUnary())
467 return new UnaryExprAST(Opc, Operand);
927 Value *OperandV = Operand->Codegen();
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp87 bool isFlagSet(const MCInst &MI, unsigned Operand, unsigned Flag) const;
674 bool R600MCCodeEmitter::isFlagSet(const MCInst &MI, unsigned Operand, argument
683 (NUM_MO_FLAGS * Operand)) & Flag);
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp87 bool isFlagSet(const MCInst &MI, unsigned Operand, unsigned Flag) const;
674 bool R600MCCodeEmitter::isFlagSet(const MCInst &MI, unsigned Operand, argument
683 (NUM_MO_FLAGS * Operand)) & Flag);
/external/chromium_org/v8/src/ia32/
H A Dcode-stubs-ia32.h285 masm->movsd(Operand(esp, (i - 1) * kDoubleSize), reg);
296 masm->movsd(reg, Operand(esp, (i - 1) * kDoubleSize));
H A Dregexp-macro-assembler-ia32.h139 Operand register_location(int register_index);
/external/chromium_org/v8/src/x87/
H A Dcode-stubs-x87.h279 masm->fnsave(Operand(esp, 0));
287 masm->frstor(Operand(esp, 0));
H A Dregexp-macro-assembler-x87.h139 Operand register_location(int register_index);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv04_state_frag.c74 (rc)->operand = c->Operand##chan; \
H A Dnv10_state_frag.c89 (rc)->operand = c->Operand##chan; \
/external/chromium_org/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc68 __ movp(scratch, Operand(rsi, offset));
70 __ Cmp(Operand(scratch, Context::SlotOffset(index)), function);
237 __ movp(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
273 __ movp(rsi, Operand(rbp, StandardFrameConstants::kContextOffset));
/external/chromium_org/v8/src/x64/
H A Dregexp-macro-assembler-x64.h196 Operand register_location(int register_index);
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv04_state_frag.c74 (rc)->operand = c->Operand##chan; \
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp160 ExprAST *Operand; member in class:UnaryExprAST
163 : Opcode(opcode), Operand(operand) {}
487 if (ExprAST *Operand = ParseUnary())
488 return new UnaryExprAST(Opc, Operand);
1029 Value *OperandV = Operand->Codegen();
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp184 ExprAST *Operand; member in class:UnaryExprAST
187 : Opcode(opcode), Operand(operand) {}
511 if (ExprAST *Operand = ParseUnary())
512 return new UnaryExprAST(Opc, Operand);
1194 Value *OperandV = Operand->Codegen();
/external/chromium_org/third_party/jinja2/
H A Dnodes.py699 list of :class:`Operand`\s.
716 class Operand(Helper): class in inherits:Helper
721 Operand.__doc__ += '\nThe following operators are available: ' + \
H A Dparser.py434 ops.append(nodes.Operand(token_type, self.parse_add()))
436 ops.append(nodes.Operand('in', self.parse_add()))
440 ops.append(nodes.Operand('notin', self.parse_add()))
/external/chromium_org/v8/src/compiler/
H A Dinstruction.cc84 name##Operand::SetUpCache();
92 name##Operand::TearDownCache();
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1679 Value *Operand = BCI->getOperand(0); local
1680 PointerType *OpType = cast<PointerType>(Operand->getType());
1683 if (!isa<BitCastInst>(Operand) &&
1692 if (isa<AllocaInst>(Operand) || isAllocationFn(Operand, TLI)) {
1703 return new BitCastInst(Operand, GEP.getType());
1712 Builder->CreateInBoundsGEP(Operand, NewIndices) :
1713 Builder->CreateGEP(Operand, NewIndices);
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp167 static void AddOperand(MDNode *Node, Value *Operand) { argument
172 Operands.push_back(Operand);
/external/llvm/lib/Analysis/IPA/
H A DInlineCost.cpp479 Value *Operand = I.getOperand(0); local
480 Constant *COp = dyn_cast<Constant>(Operand);
482 COp = SimplifiedValues.lookup(Operand);
491 disableSROA(Operand);
/external/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp914 Q->second.Operand->setReg(NewReg);
918 const SUnit *SU = MISUnitMap[Q->second.Operand->getParent()];
922 if (DVI->second == Q->second.Operand->getParent())
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4506 MCParsedAsmOperand &Operand = *Info.ParsedOperands[i]; local
4509 if (Operand.isImm())
4513 if (Operand.isReg() && !Operand.needAddressOf()) {
4516 if (NumDefs && Operand.getMCOperandNum() < NumDefs)
4517 ClobberRegs.push_back(Operand.getReg());
4522 StringRef SymName = Operand.getSymName();
4526 void *OpDecl = Operand.getOpDecl();
4535 OutputDeclsAddressOf.push_back(Operand.needAddressOf());
4536 OutputConstraints.push_back('=' + Operand
[all...]
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp1803 MipsOperand &Operand = static_cast<MipsOperand &>(*Operands.front()); local
1804 StartLoc = Operand.getStartLoc();
1805 EndLoc = Operand.getEndLoc();
1811 if (Operand.isGPRAsmReg()) {
1813 RegNo = isGP64bit() ? Operand.getGPR64Reg() : Operand.getGPR32Reg();
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2611 const Expr * const Operand = Node.getSubExpr(); local
2612 return (Operand != nullptr &&
2613 InnerMatcher.matches(*Operand, Finder, Builder));
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp368 TypeSourceInfo *Operand,
377 = Context.getUnqualifiedArrayType(Operand->getType().getNonReferenceType(),
383 return new (Context) CXXTypeidExpr(TypeInfoType.withConst(), Operand,
491 TypeSourceInfo *Operand,
493 if (!Operand->getType()->isDependentType()) {
495 if (!CXXUuidofExpr::GetUuidAttrOfType(Operand->getType(),
504 return new (Context) CXXUuidofExpr(TypeInfoType.withConst(), Operand,
5662 ExprResult Sema::BuildCXXNoexceptExpr(SourceLocation KeyLoc, Expr *Operand, argument
5664 CanThrowResult CanThrow = canThrow(Operand);
5666 CXXNoexceptExpr(Context.BoolTy, Operand, CanThro
366 BuildCXXTypeId(QualType TypeInfoType, SourceLocation TypeidLoc, TypeSourceInfo *Operand, SourceLocation RParenLoc) argument
489 BuildCXXUuidof(QualType TypeInfoType, SourceLocation TypeidLoc, TypeSourceInfo *Operand, SourceLocation RParenLoc) argument
5669 ActOnNoexceptExpr(SourceLocation KeyLoc, SourceLocation, Expr *Operand, SourceLocation RParen) argument
[all...]

Completed in 1106 milliseconds

1234567891011>>