Searched refs:Idx1 (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Analysis/ |
D | StratifiedSets.h | 539 void merge(StratifiedIndex Idx1, StratifiedIndex Idx2) { in merge() argument 540 assert(inbounds(Idx1) && inbounds(Idx2)); in merge() 541 assert(&linksAt(Idx1) != &linksAt(Idx2) && in merge() 547 if (tryMergeUpwards(Idx1, Idx2)) in merge() 550 if (tryMergeUpwards(Idx2, Idx1)) in merge() 555 mergeDirect(Idx1, Idx2); in merge() 560 void mergeDirect(StratifiedIndex Idx1, StratifiedIndex Idx2) { in mergeDirect() argument 561 assert(inbounds(Idx1) && inbounds(Idx2)); in mergeDirect() 563 auto *LinksInto = &linksAt(Idx1); in mergeDirect()
|
/external/llvm/lib/CodeGen/ |
D | TargetInstrInfo.cpp | 123 unsigned Idx1, in commuteInstructionImpl() argument 131 unsigned CommutableOpIdx1 = Idx1; (void)CommutableOpIdx1; in commuteInstructionImpl() 134 CommutableOpIdx1 == Idx1 && CommutableOpIdx2 == Idx2 && in commuteInstructionImpl() 136 assert(MI->getOperand(Idx1).isReg() && MI->getOperand(Idx2).isReg() && in commuteInstructionImpl() 140 unsigned Reg1 = MI->getOperand(Idx1).getReg(); in commuteInstructionImpl() 143 unsigned SubReg1 = MI->getOperand(Idx1).getSubReg(); in commuteInstructionImpl() 145 bool Reg1IsKill = MI->getOperand(Idx1).isKill(); in commuteInstructionImpl() 147 bool Reg1IsUndef = MI->getOperand(Idx1).isUndef(); in commuteInstructionImpl() 149 bool Reg1IsInternal = MI->getOperand(Idx1).isInternalRead(); in commuteInstructionImpl() 154 MI->getDesc().getOperandConstraint(Idx1, MCOI::TIED_TO) == 0) { in commuteInstructionImpl() [all …]
|
D | ShadowStackGCLowering.cpp | 56 Type *Ty, Value *BasePtr, int Idx1, 59 Type *Ty, Value *BasePtr, int Idx1, int Idx2,
|
/external/llvm/include/llvm/IR/ |
D | IRBuilder.h | 1163 Value *CreateConstGEP2_32(Type *Ty, Value *Ptr, unsigned Idx0, unsigned Idx1, 1167 ConstantInt::get(Type::getInt32Ty(Context), Idx1) 1176 unsigned Idx1, const Twine &Name = "") { 1179 ConstantInt::get(Type::getInt32Ty(Context), Idx1) 1204 Value *CreateConstGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1, 1208 ConstantInt::get(Type::getInt64Ty(Context), Idx1) 1216 Value *CreateConstInBoundsGEP2_64(Value *Ptr, uint64_t Idx0, uint64_t Idx1, 1220 ConstantInt::get(Type::getInt64Ty(Context), Idx1)
|
/external/llvm/utils/TableGen/ |
D | CodeGenRegisters.cpp | 1131 CodeGenSubRegIndex *Idx1 = i1->first; in computeComposites() local 1150 if (CodeGenSubRegIndex *Prev = Idx1->addComposite(Idx2, Idx3)) in computeComposites() 1151 PrintWarning(Twine("SubRegIndex ") + Idx1->getQualifiedName() + in computeComposites()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 4640 llvm::Value *Idx1 = llvm::ConstantInt::get(SizeTy, 1); in EmitAArch64BuiltinExpr() local 4642 Value *Op1 = Builder.CreateExtractElement(Vec, Idx1, "lane1"); in EmitAArch64BuiltinExpr() 4653 llvm::Value *Idx1 = llvm::ConstantInt::get(SizeTy, 1); in EmitAArch64BuiltinExpr() local 4655 Value *Op1 = Builder.CreateExtractElement(Vec, Idx1, "lane1"); in EmitAArch64BuiltinExpr() 4666 llvm::Value *Idx1 = llvm::ConstantInt::get(SizeTy, 1); in EmitAArch64BuiltinExpr() local 4668 Value *Op1 = Builder.CreateExtractElement(Vec, Idx1, "lane1"); in EmitAArch64BuiltinExpr()
|