Home
last modified time | relevance | path

Searched refs:Simplified (Results 1 – 22 of 22) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCMIPeephole.cpp386 bool Simplified = false; in simplifyCode() local
1005 Simplified = true; in simplifyCode()
1019 if (Simplified) in simplifyCode()
1065 Simplified = true; in simplifyCode()
1091 return Simplified; in simplifyCode()
1298 bool Simplified = false; in eliminateRedundantTOCSaves() local
1304 Simplified = true; in eliminateRedundantTOCSaves()
1313 return Simplified; in eliminateRedundantTOCSaves()
1339 bool Simplified = false; in eliminateRedundantCompare() local
1585 Simplified = true; in eliminateRedundantCompare()
[all …]
H A DPPCInstrInfo.cpp3822 bool Simplified = false; in combineRLWINM() local
3828 Simplified = true; in combineRLWINM()
3863 Simplified = true; in combineRLWINM()
3885 if (Simplified & MRI->use_nodbg_empty(FoldingReg) && in combineRLWINM()
3894 return Simplified; in combineRLWINM()
/llvm-project-15.0.7/llvm/test/Transforms/Inline/AArch64/
H A Dselect.ll17 %select = select i1 %cond, i32 1, i32 %val ; Simplified to 1
105 %select = select i1 %cond, i32* %G2, i32* %G3 ; Simplified to %A[2]
108 ret i32 %load ; Simplified
125 ret i32 %load ; Simplified
142 ret i32 %load ; Simplified
198 %select = select i1 %cond, i32* %ptr1, i32* %ptr2 ; Simplified to @glbl
199 %cmp = icmp eq i32* %select, @glbl ; Simplified to true
214 %select = select <2 x i1> %cond, <2 x i32> %val1, < 2 x i32> %val2 ; Cannot be Simplified
218 ret <2 x i32> %select ; Simplified
230 %select = select i1 %cond, i32 %val1, i32 %val2 ; Simplified to %val1
[all …]
H A Dphi.ll21 %phi = phi i1 [0, %entry], [%phi, %if_true] ; Simplified to 0
70 %phi = phi i32 [0, %entry], [0, %if_true] ; Simplified to 0
96 %phi = phi i32 [0, %entry], [%val, %if_true] ; Simplified to 0
149 %phi = phi i32 [%val1, %entry], [%val2, %if_true] ; Simplified to 0
173 %phi = phi i32 [%val1, %entry], [%val2, %if_true] ; Simplified to 0
253 …%phi = phi i32 [0, %zero], [1, %one], [2, %two_true], [2, %two_false], [-1, %entry] ; Simplified t…
274 %phi = phi i32* [%A, %entry], [%phi, %if_true] ; Simplified to %A
322 %phi = phi i32* [%ptr, %entry], [%ptr, %if_true] ; Simplified to %A
396 %phi = phi i32* [%ptr1, %entry], [%ptr2, %if_true] ; Simplified to %A
421 %phi = phi i32* [%ptr1, %entry], [%ptr2, %if_true] ; Simplified to %A
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-reduce/deltas/
H A DSimplifyInstructions.cpp35 if (Value *Simplified = simplifyInstruction(&Inst, Q)) { in extractInstrFromModule() local
36 Inst.replaceAllUsesWith(Simplified); in extractInstrFromModule()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DLoopUnrollAnalyzer.cpp153 if (Value *Simplified = SimplifiedValues.lookup(Op)) in visitCastInst() local
154 Op = Simplified; in visitCastInst()
H A DInstructionSimplify.cpp443 if (Simplified && Simplified->getOpcode() == unsigned(Opcode)) { in threadBinOpOverSelect()
450 if (Simplified->getOperand(0) == UnsimplifiedLHS && in threadBinOpOverSelect()
451 Simplified->getOperand(1) == UnsimplifiedRHS) in threadBinOpOverSelect()
452 return Simplified; in threadBinOpOverSelect()
453 if (Simplified->isCommutative() && in threadBinOpOverSelect()
455 Simplified->getOperand(0) == UnsimplifiedRHS) in threadBinOpOverSelect()
456 return Simplified; in threadBinOpOverSelect()
4157 return Simplified != V ? Simplified : nullptr; in simplifyWithOpReplaced()
6479 bool Simplified = false; in replaceAndRecursivelySimplifyImpl() local
6514 Simplified = true; in replaceAndRecursivelySimplifyImpl()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dfp128-extract.ll21 ; Simplified instruction pattern from the output of llvm before r289042,
H A Dwineh-coreclr.ll8 ; Simplified IR for pseudo-C# like the following:
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp816 SmallPtrSet<Instruction*,16> &Simplified, in pushIVUsers() argument
835 if (!Simplified.insert(UI).second) in pushIVUsers()
880 SmallPtrSet<Instruction*,16> Simplified; in simplifyUsers() local
888 pushIVUsers(CurrIV, L, Simplified, SimpleIVUsers); in simplifyUsers()
914 assert(N <= Simplified.size() && "runaway iteration"); in simplifyUsers()
926 pushIVUsers(IVOperand, L, Simplified, SimpleIVUsers); in simplifyUsers()
936 pushIVUsers(IVOperand, L, Simplified, SimpleIVUsers); in simplifyUsers()
943 pushIVUsers(IVOperand, L, Simplified, SimpleIVUsers); in simplifyUsers()
953 pushIVUsers(UseInst, L, Simplified, SimpleIVUsers); in simplifyUsers()
/llvm-project-15.0.7/lld/test/wasm/
H A Dtls-non-shared-memory-basic.s1 # Simplified version of tls-non-shared-memory.s that does not reference
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/
H A Dgep_with_bitcast.ll6 ; Simplified source code:
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp1096 if (auto Simplified = checkExprResults(E, I, V)) { in createBinaryExpression() local
1097 addAdditionalUsers(Simplified, I); in createBinaryExpression()
1098 return Simplified.Expr; in createBinaryExpression()
1183 if (auto Simplified = checkExprResults(E, I, V)) in createExpression() local
1184 return Simplified; in createExpression()
1193 return Simplified; in createExpression()
1198 if (auto Simplified = checkExprResults(E, I, V)) in createExpression() local
1199 return Simplified; in createExpression()
1204 return Simplified; in createExpression()
1211 return Simplified; in createExpression()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetOptions.h47 Simplified, // Use one table per function type, with types projected enumerator
/llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/
H A Dsimplified-template-names-fail.s4 # CHECK: error: Simplified template DW_AT_name could not be reconstituted:
/llvm-project-15.0.7/polly/lib/Transform/
H A DDeLICM.cpp146 isl::union_map Simplified = Relevant.gist_domain(RelevantDomain); in expandMapping() local
147 Simplified = Simplified.coalesce(); in expandMapping()
148 return Simplified.intersect_domain(Universe); in expandMapping()
/llvm-project-15.0.7/clang/docs/
H A DOpenMPSupport.rst46 - Simplified SPMD code generation for `distribute parallel for` when
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp604 bool Simplified = SimplifyDemandedBits(Op, DemandedBits, Known, TLO); in SimplifyDemandedBits() local
605 if (Simplified) { in SimplifyDemandedBits()
609 return Simplified; in SimplifyDemandedBits()
620 bool Simplified = in SimplifyDemandedBits() local
622 if (Simplified) { in SimplifyDemandedBits()
626 return Simplified; in SimplifyDemandedBits()
2729 bool Simplified = in SimplifyDemandedVectorElts() local
2731 if (Simplified) { in SimplifyDemandedVectorElts()
2736 return Simplified; in SimplifyDemandedVectorElts()
/llvm-project-15.0.7/mlir/docs/Rationale/
H A DRationaleSimplifiedPolyhedralForm.md174 ## Proposal: Simplified Polyhedral Form
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx20Papers.csv54 "`P0356R5 <https://wg21.link/P0356R5>`__","LWG","Simplified partial function application","San Dieg…
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DChangeLog1140 * PThreadEvent.cpp (PThreadEvent::WaitForSetEvents): Simplified
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp40877 bool Simplified = false; in SimplifyDemandedVectorEltsForTargetShuffle() local
40883 Simplified = true; in SimplifyDemandedVectorEltsForTargetShuffle()
40888 if (!Simplified) in SimplifyDemandedVectorEltsForTargetShuffle()