Searched refs:Operand (Results 51 - 75 of 239) sorted by relevance

12345678910

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.h324 PredicateInfo() : Register(0), Operand(0), PredicatedTrue(false) {}
325 PredicateInfo(unsigned Register, unsigned Operand, bool PredicatedTrue) argument
326 : Register(Register), Operand(Operand), PredicatedTrue(PredicatedTrue) {}
329 unsigned Operand; member in class:llvm::HexagonMCInstrInfo::PredicateInfo
H A DHexagonMCInstrInfo.cpp991 MCOperand &Operand = MCI.getOperand(0); local
992 Operand.setImm(Operand.getImm() | innerLoopMask);
997 MCOperand &Operand = MCI.getOperand(0); local
998 Operand.setImm(Operand.getImm() | memReorderDisabledMask);
1004 MCOperand &Operand = MCI.getOperand(0); local
1005 Operand.setImm(Operand.getImm() | outerLoopMask);
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/msp430/
H A Dlib2hw_mul.S96 ;* - Operand 1 is in R12
97 ;* - Operand 2 is in R13
117 ;* - Operand 1 is in R12
118 ;* - Operand 2 is in R13
138 ;* - Operand 1 is in R12, R13
139 ;* - Operand 2 is in R14, R15
165 ;* - Operand 1 is in R12, R13
166 ;* - Operand 2 is in R14, R15
189 ;* - Operand 1 is in R12, R13
190 ;* - Operand
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h265 const SymExpr *Operand; member in class:clang::ento::SymbolCast
275 : SymExpr(SymbolCastKind), Operand(In), FromTy(From), ToTy(To) {
284 Complexity = 1 + Operand->computeComplexity();
290 const SymExpr *getOperand() const { return Operand; }
303 Profile(ID, Operand, FromTy, ToTy);
471 const SymbolCast* getCastSymbol(const SymExpr *Operand,
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/msp430/
H A Dlib2hw_mul.S96 ;* - Operand 1 is in R12
97 ;* - Operand 2 is in R13
117 ;* - Operand 1 is in R12
118 ;* - Operand 2 is in R13
138 ;* - Operand 1 is in R12, R13
139 ;* - Operand 2 is in R14, R15
165 ;* - Operand 1 is in R12, R13
166 ;* - Operand 2 is in R14, R15
189 ;* - Operand 1 is in R12, R13
190 ;* - Operand
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DExprObjC.h1570 Stmt *Operand; member in class:clang::ObjCIndirectCopyRestoreExpr
1584 Operand(operand) {
1589 Expr *getSubExpr() { return cast<Expr>(Operand); }
1590 const Expr *getSubExpr() const { return cast<Expr>(Operand); }
1596 child_range children() { return child_range(&Operand, &Operand+1); }
1599 return const_child_range(&Operand, &Operand + 1);
1604 return Operand->getBeginLoc();
1607 return Operand
1638 ObjCBridgedCastExpr(SourceLocation LParenLoc, ObjCBridgeCastKind Kind, CastKind CK, SourceLocation BridgeKeywordLoc, TypeSourceInfo *TSInfo, Expr *Operand) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.h45 MachineOperand *Operand; member in struct:llvm::AggressiveAntiDepState::RegisterReference
H A DAggressiveAntiDepBreaker.cpp697 MachineInstr *UseMI = Q.second.Operand->getParent();
712 if (!Q.second.Operand->isDef() || !Q.second.Operand->isEarlyClobber())
715 MachineInstr *DefMI = Q.second.Operand->getParent();
966 Q.second.Operand->setReg(NewReg);
970 const SUnit *SU = MISUnitMap[Q.second.Operand->getParent()];
972 UpdateDbgValues(DbgValues, Q.second.Operand->getParent(),
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mips/
H A Dmips16-relax-unextended-1.s5 # Operand code:
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp509 Value *Operand = OperandUse.get(); local
512 Operand->getType()->getPointerElementType()->getPointerTo(NewAddrSpace);
514 if (Constant *C = dyn_cast<Constant>(Operand))
517 if (Value *NewOperand = ValueWithNewAddrSpace.lookup(Operand))
678 Constant *Operand = CE->getOperand(Index); local
679 // If the address space of `Operand` needs to be modified, the new operand
684 if (Value *NewOperand = ValueWithNewAddrSpace.lookup(Operand)) {
689 if (auto CExpr = dyn_cast<ConstantExpr>(Operand))
697 NewOperands.push_back(Operand);
H A DCorrelatedValuePropagation.cpp738 for (Value *Operand : Instr->operands()) {
739 ConstantRange CR = LVI->getConstantRange(Operand, Instr);
773 struct Operand { struct
777 std::array<Operand, 2> Ops;
780 Operand &Op = std::get<0>(I);
791 for (Operand &Op : Ops) {
829 struct Operand { struct
833 std::array<Operand, 2> Ops;
836 Operand &Op = std::get<0>(I);
847 for (Operand
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DConstantMerge.cpp52 Value *Operand = Inits->getOperand(i)->stripPointerCasts(); local
53 GlobalValue *GV = cast<GlobalValue>(Operand);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DRelLookupTableConverter.cpp108 for (Use &Operand : LookupTableArr->operands()) {
109 Constant *Element = cast<Constant>(Operand);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorizationPlanner.h136 VPValue *createNot(VPValue *Operand) { argument
137 return createInstruction(VPInstruction::Not, {Operand});
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600InstrInfo.cpp304 MachineOperand &Operand = local
306 if (Operand.isImm()) {
307 Result.push_back(std::make_pair(&MO, Operand.getImm()));
310 assert(Operand.isGlobal());
1288 llvm_unreachable("Wrong Operand");
1369 assert(Idx != -1 && "Operand not supported for this instruction.");
1443 void R600InstrInfo::addFlag(MachineInstr &MI, unsigned Operand,
1450 MachineOperand &FlagOp = getFlagOp(MI, Operand, Flag);
1452 clearFlag(MI, Operand, MO_FLAG_LAST);
1454 clearFlag(MI, Operand, Fla
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp171 std::unique_ptr<ExprAST> Operand; member in class:__anon1290::UnaryExprAST
174 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
175 : Opcode(Opcode), Operand(std::move(Operand)) {}
547 if (auto Operand = ParseUnary())
548 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
751 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp171 std::unique_ptr<ExprAST> Operand; member in class:__anon1289::UnaryExprAST
174 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
175 : Opcode(Opcode), Operand(std::move(Operand)) {}
547 if (auto Operand = ParseUnary())
548 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
751 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp171 std::unique_ptr<ExprAST> Operand; member in class:__anon1288::UnaryExprAST
174 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
175 : Opcode(Opcode), Operand(std::move(Operand)) {}
547 if (auto Operand = ParseUnary())
548 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
751 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp176 std::unique_ptr<ExprAST> Operand; member in class:__anon1296::UnaryExprAST
179 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
180 : Opcode(Opcode), Operand(std::move(Operand)) {}
552 if (auto Operand = ParseUnary())
553 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
757 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp177 std::unique_ptr<ExprAST> Operand; member in class:__anon1297::UnaryExprAST
180 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
181 : Opcode(Opcode), Operand(std::move(Operand)) {}
553 if (auto Operand = ParseUnary())
554 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
756 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp169 std::unique_ptr<ExprAST> Operand; member in class:UnaryExprAST
172 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
173 : Opcode(Opcode), Operand(std::move(Operand)) {}
530 if (auto Operand = ParseUnary())
531 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
734 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp168 std::unique_ptr<ExprAST> Operand; member in class:__anon1295::UnaryExprAST
171 UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) argument
172 : Opcode(Opcode), Operand(std::move(Operand)) {}
479 if (auto Operand = ParseUnary())
480 return std::make_unique<UnaryExprAST>(Opc, std::move(Operand));
673 Value *OperandV = Operand->codegen();
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCPreEmitPeephole.cpp393 for (MachineOperand &Operand : BBI.operands()) {
394 if (!Operand.isReg())
396 Register Reg = Operand.getReg();
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DIVUsers.h131 IVStrideUse &AddUser(Instruction *User, Value *Operand);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp843 SDNode *Operand = Use.getNode();
847 if (Operand->use_empty())
848 DeadNodes.push_back(Operand);
4587 SDValue Operand) {
4591 return getNode(Opcode, DL, VT, Operand, Flags);
4595 SDValue Operand, const SDNodeFlags Flags) {
4596 assert(Operand.getOpcode() != ISD::DELETED_NODE &&
4597 "Operand is DELETED_NODE!");
4603 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand)) {
4669 if (SDValue V = FoldSTEP_VECTOR(DL, VT, Operand, *thi
[all...]

Completed in 472 milliseconds

12345678910