Searched refs:LHSI (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp310 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
313 return LHSI == RHSI;
315 if (LHSI->getOpcode() != RHSI->getOpcode())
317 if (LHSI->isIdenticalToWhenDefined(RHSI))
321 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
333 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
348 if (matchSelectWithOptionalNotCond(LHSI, CondL, LHSA, LHSB, LSPF) &&
475 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
477 return LHSI == RHSI;
480 if (const GCRelocateInst *GCR1 = dyn_cast<GCRelocateInst>(LHSI))
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp215 Init *LHSI = LHS->getValueInit(Field.Name); local
219 int64_t LHSi = getAsInt(LHSI);
226 CodeGenIntrinsic &LHSi = getIntrinsic(LHSI);
236 Record *LHSr = cast<DefInit>(LHSI)->getDef();
252 auto LHSr = cast<DefInit>(LHSI)->getDef();
261 std::string LHSs = primaryRepresentation(Field, LHSI);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3210 Instruction *LHSI = dyn_cast<Instruction>(Op0); local
3211 if (!RHSC || !LHSI)
3214 switch (LHSI->getOpcode()) {
3218 cast<GetElementPtrInst>(LHSI)->hasAllZeroIndices())
3220 I.getPredicate(), LHSI->getOperand(0),
3221 Constant::getNullValue(LHSI->getOperand(0)->getType()));
3227 if (LHSI->getParent() == I.getParent())
3228 if (Instruction *NV = foldOpIntoPhi(I, cast<PHINode>(LHSI)))
3237 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
3241 if (Constant *C = dyn_cast<Constant>(LHSI
5751 foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI, Constant *RHSC) argument
5990 foldFCmpReciprocalAndZero(FCmpInst &I, Instruction *LHSI, Constant *RHSC) argument
[all...]
H A DInstCombineInternal.h932 Instruction *foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DSortJavaScriptImports.cpp144 llvm::stable_sort(Indices, [&](unsigned LHSI, unsigned RHSI) {
145 return References[LHSI] < References[RHSI];
H A DFormat.cpp2119 llvm::stable_sort(Indices, [&](unsigned LHSI, unsigned RHSI) {
2120 return std::tie(Includes[LHSI].Priority, Includes[LHSI].Filename) <
2134 [&](unsigned LHSI, unsigned RHSI) {
2135 return Includes[LHSI].Text == Includes[RHSI].Text;
2300 llvm::sort(Indices, [&](unsigned LHSI, unsigned RHSI) {
2302 return std::make_tuple(!Imports[LHSI].IsStatic, JavaImportGroups[LHSI],
2303 Imports[LHSI].Identifier) <
2310 [&](unsigned LHSI, unsigne
[all...]

Completed in 184 milliseconds