Home
last modified time | relevance | path

Searched refs:adj (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dmusttail-thiscall.ll7 %adj = getelementptr i8, ptr %this, i32 4
8 musttail call x86_thiscallcc void @t1_callee(ptr %adj)
16 %adj = getelementptr i8, ptr %this, i32 4
17 %rv = musttail call x86_thiscallcc i32 @t2_callee(ptr %adj, i32 %a)
25 %adj = getelementptr i8, ptr %this, i32 4
28 %rv = musttail call x86_thiscallcc ptr @t3_callee(ptr %adj, ptr inalloca(<{ ptr, i32 }>) %args)
36 %adj = getelementptr i8, ptr %this, i32 4
39 …%rv = musttail call x86_thiscallcc ptr @t4_callee(ptr %adj, ptr preallocated(<{ ptr, i32 }>) %args)
/llvm-project-15.0.7/llvm/lib/Target/M68k/
H A DM68kInstrCompiler.td100 def : Pat<(MxTCRet (load MxCP_ARII:$dst), imm:$adj),
101 (TCRETURNj (MOV32af_TC MxARII32:$dst), imm:$adj)>,
104 def : Pat<(MxTCRet AR32_TC:$dst, imm:$adj),
105 (TCRETURNj MxARI32_TC:$dst, imm:$adj)>;
107 def : Pat<(MxTCRet (i32 tglobaladdr:$dst), imm:$adj),
108 (TCRETURNq MxPCD32:$dst, imm:$adj)>;
110 def : Pat<(MxTCRet (i32 texternalsym:$dst), imm:$adj),
111 (TCRETURNq MxPCD32:$dst, imm:$adj)>;
H A DM68kInstrControl.td280 def TCRETURNq : MxPseudo<(outs), (ins MxPCD32:$dst, i32imm:$adj)>;
286 def TCRETURNj : MxPseudo<(outs), (ins MxARI32_TC:$dst, i32imm:$adj)>;
305 def RET : MxPseudo<(outs), (ins i32imm:$adj, variable_ops),
306 [(MxRet timm:$adj)]>;
/llvm-project-15.0.7/llvm/test/CodeGen/Generic/
H A D2003-07-08-BadCastToBool.ll5 ;; Function: int %adj(uint %d.1, uint %ct.1)
18 define i32 @adj(i32 %d.1, i32 %ct.1) {
30 %result = call i32 @adj( i32 3, i32 2 ) ; <i32> [#uses=1]
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A D2007-03-21-JoinIntervalsCrash.ll40 %spec.1961.adj = shl i64 %spec.1961, 32 ; <i64> [#uses=1]
41 %spec.1961.adj.ins = or i64 %spec.1961.adj, 0 ; <i64> [#uses=2]
42 %tmp10959 = lshr i64 %spec.1961.adj.ins, 32 ; <i64> [#uses=2]
90 %tmp920957 = trunc i64 %spec.1961.adj.ins to i32 ; <i32> [#uses=0]
/llvm-project-15.0.7/polly/lib/External/ppcg/
H A Dhybrid.c1107 isl_union_map *local, *non_local, *order, *adj; in collect_deps() local
1121 adj = isl_union_map_copy(order); in collect_deps()
1124 adj = isl_union_map_intersect_range(adj, domain); in collect_deps()
1125 other = isl_union_map_union(other, adj); in collect_deps()
1127 adj = order; in collect_deps()
1130 adj = isl_union_map_intersect_domain(adj, range); in collect_deps()
1131 other = isl_union_map_union(other, adj); in collect_deps()
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dppc64-gep-opt.ll15 define void @test_GEP_CSE([240 x %struct]* %string, i32* %adj, i32 %lib, i64 %idxprom) {
24 store i32 %2, i32* %adj, align 4
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp883 llvm::Constant *adj = getMemberPointerAdjustment(E); in EmitMemberPointerConversion() local
884 if (!adj) return src; in EmitMemberPointerConversion()
897 dst = Builder.CreateNSWSub(src, adj, "adj"); in EmitMemberPointerConversion()
899 dst = Builder.CreateNSWAdd(src, adj, "adj"); in EmitMemberPointerConversion()
911 adj = llvm::ConstantInt::get(adj->getType(), offset); in EmitMemberPointerConversion()
917 dstAdj = Builder.CreateNSWSub(srcAdj, adj, "adj"); in EmitMemberPointerConversion()
919 dstAdj = Builder.CreateNSWAdd(srcAdj, adj, "adj"); in EmitMemberPointerConversion()
936 if (!adj) return src; in EmitMemberPointerConversion()
950 return llvm::ConstantExpr::getNSWSub(src, adj); in EmitMemberPointerConversion()
952 return llvm::ConstantExpr::getNSWAdd(src, adj); in EmitMemberPointerConversion()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86InstrControl.td56 def IRET : PseudoI<(outs), (ins i32imm:$adj), [(X86iret timm:$adj)]>;
57 def RET : PseudoI<(outs), (ins i32imm:$adj, variable_ops), [(X86retflag timm:$adj)]>;
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Daarch64-gep-opt.ll19 define void @test_GEP_CSE([240 x %struct]* %string, i32* %adj, i32 %lib, i64 %idxprom) {
28 store i32 %2, i32* %adj, align 4
/llvm-project-15.0.7/llvm/test/Transforms/Inline/
H A D2009-01-13-RecursiveInlineCrash.ll15 define internal fastcc i32 @adj(i32 %d, i32 %ct) nounwind readnone {
111 %5 = call fastcc i32 @adj(i32 %d, i32 %3) nounwind ; <i32> [#uses=1]
/llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/
H A DCodeGen.cpp1621 mlir::Value adj = one; in matchAndRewrite() local
1623 adj = operands[shiftOffset]; in matchAndRewrite()
1624 auto ao = rewriter.create<mlir::LLVM::SubOp>(loc, i64Ty, off, adj); in matchAndRewrite()
2185 auto adj = rewriter.create<mlir::LLVM::SubOp>(loc, idxTy, sliceLb, lb); in doRewrite() local
2186 diff = rewriter.create<mlir::LLVM::AddOp>(loc, idxTy, diff, adj); in doRewrite()