mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Add constant extender support to GP-relative load/store instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170672 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
39498d1ff0
commit
82a36e2b59
@ -990,7 +990,7 @@ def LDrid_GP : LDInst2<(outs DoubleRegs:$dst),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def LDd_GP : LDInst2<(outs DoubleRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst = memd(#$global)",
|
||||
@ -1057,6 +1057,9 @@ let hasCtrlDep = 1, neverHasSideEffects = 1 in {
|
||||
PredNewRel;
|
||||
}
|
||||
|
||||
def : Pat< (i32 (extloadi1 ADDRriS11_0:$addr)),
|
||||
(i32 (LDrib ADDRriS11_0:$addr)) >;
|
||||
|
||||
// Load byte any-extend.
|
||||
def : Pat < (i32 (extloadi8 ADDRriS11_0:$addr)),
|
||||
(i32 (LDrib ADDRriS11_0:$addr)) >;
|
||||
@ -1073,14 +1076,14 @@ def LDrib_GP : LDInst2<(outs IntRegs:$dst),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def LDb_GP : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst = memb(#$global)",
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def LDub_GP : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst = memub(#$global)",
|
||||
@ -1101,20 +1104,21 @@ def LDrih_GP : LDInst2<(outs IntRegs:$dst),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def LDh_GP : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst = memh(#$global)",
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def LDuh_GP : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst = memuh(#$global)",
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let AddedComplexity = 10 in
|
||||
def : Pat < (i32 (zextloadi1 ADDRriS11_0:$addr)),
|
||||
(i32 (LDriub ADDRriS11_0:$addr))>;
|
||||
|
||||
@ -1138,8 +1142,9 @@ def LDriuh_GP : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
// Load predicate.
|
||||
let Defs = [R10,R11,D5], neverHasSideEffects = 1 in
|
||||
def LDriw_pred : LDInst<(outs PredRegs:$dst),
|
||||
let isExtendable = 1, opExtendable = 2, isExtentSigned = 1, opExtentBits = 13,
|
||||
isPseudo = 1, Defs = [R10,R11,D5], neverHasSideEffects = 1 in
|
||||
def LDriw_pred : LDInst2<(outs PredRegs:$dst),
|
||||
(ins MEMri:$addr),
|
||||
"Error; should not emit",
|
||||
[]>;
|
||||
@ -1152,7 +1157,7 @@ def LDriw_GP : LDInst2<(outs IntRegs:$dst),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def LDw_GP : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst = memw(#$global)",
|
||||
@ -1161,7 +1166,7 @@ def LDw_GP : LDInst2<(outs IntRegs:$dst),
|
||||
|
||||
// Deallocate stack frame.
|
||||
let Defs = [R29, R30, R31], Uses = [R29], neverHasSideEffects = 1 in {
|
||||
def DEALLOCFRAME : LDInst2<(outs), (ins i32imm:$amt1),
|
||||
def DEALLOCFRAME : LDInst2<(outs), (ins),
|
||||
"deallocframe",
|
||||
[]>;
|
||||
}
|
||||
@ -1393,7 +1398,7 @@ def STrid_GP : STInst2<(outs),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def STd_GP : STInst2<(outs),
|
||||
(ins globaladdress:$global, DoubleRegs:$src),
|
||||
"memd(#$global) = $src",
|
||||
@ -1583,7 +1588,7 @@ def STrib_GP : STInst2<(outs),
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
// memb(#global)=Rt
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def STb_GP : STInst2<(outs),
|
||||
(ins globaladdress:$global, IntRegs:$src),
|
||||
"memb(#$global) = $src",
|
||||
@ -1623,7 +1628,7 @@ def STrih_GP : STInst2<(outs),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def STh_GP : STInst2<(outs),
|
||||
(ins globaladdress:$global, IntRegs:$src),
|
||||
"memh(#$global) = $src",
|
||||
@ -1672,7 +1677,7 @@ def STriw_GP : STInst2<(outs),
|
||||
[]>,
|
||||
Requires<[NoV4T]>;
|
||||
|
||||
let neverHasSideEffects = 1 in
|
||||
let neverHasSideEffects = 1, validSubTargets = NoV4SubT in
|
||||
def STw_GP : STInst2<(outs),
|
||||
(ins globaladdress:$global, IntRegs:$src),
|
||||
"memw(#$global) = $src",
|
||||
|
@ -1041,7 +1041,7 @@ def LDriw_GP_cdnNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
|
||||
let isPredicable = 1, neverHasSideEffects = 1 in
|
||||
let isPredicable = 1, neverHasSideEffects = 1, validSubTargets = HasV4SubT in
|
||||
def LDd_GP_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst=memd(#$global)",
|
||||
@ -1049,7 +1049,8 @@ def LDd_GP_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rtt=memd(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
let neverHasSideEffects = 1, isPredicated = 1, isExtended = 1, opExtendable = 2,
|
||||
validSubTargets = HasV4SubT in {
|
||||
def LDd_GP_cPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1) $dst=memd(##$global)",
|
||||
@ -1058,7 +1059,6 @@ def LDd_GP_cPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
|
||||
|
||||
// if (!Pv) Rtt=memd(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDd_GP_cNotPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1) $dst=memd(##$global)",
|
||||
@ -1066,7 +1066,6 @@ def LDd_GP_cNotPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rtt=memd(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDd_GP_cdnPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1.new) $dst=memd(##$global)",
|
||||
@ -1075,14 +1074,14 @@ def LDd_GP_cdnPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
|
||||
|
||||
// if (!Pv) Rtt=memd(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDd_GP_cdnNotPt_V4 : LDInst2<(outs DoubleRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1.new) $dst=memd(##$global)",
|
||||
[]>,
|
||||
Requires<[HasV4T]>;
|
||||
}
|
||||
|
||||
let isPredicable = 1, neverHasSideEffects = 1 in
|
||||
let isPredicable = 1, neverHasSideEffects = 1, validSubTargets = HasV4SubT in
|
||||
def LDb_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst=memb(#$global)",
|
||||
@ -1090,7 +1089,8 @@ def LDb_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memb(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
let neverHasSideEffects = 1, isPredicated = 1, isExtended = 1, opExtendable = 2,
|
||||
validSubTargets = HasV4SubT in {
|
||||
def LDb_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1) $dst=memb(##$global)",
|
||||
@ -1098,7 +1098,6 @@ def LDb_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (!Pv) Rt=memb(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDb_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1) $dst=memb(##$global)",
|
||||
@ -1106,7 +1105,6 @@ def LDb_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memb(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDb_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1.new) $dst=memb(##$global)",
|
||||
@ -1114,14 +1112,14 @@ def LDb_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (!Pv) Rt=memb(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDb_GP_cdnNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1.new) $dst=memb(##$global)",
|
||||
[]>,
|
||||
Requires<[HasV4T]>;
|
||||
}
|
||||
|
||||
let isPredicable = 1, neverHasSideEffects = 1 in
|
||||
let isPredicable = 1, neverHasSideEffects = 1, validSubTargets = HasV4SubT in
|
||||
def LDub_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst=memub(#$global)",
|
||||
@ -1129,7 +1127,8 @@ def LDub_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memub(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
let neverHasSideEffects = 1, isPredicated = 1, isExtended = 1, opExtendable = 2,
|
||||
validSubTargets = HasV4SubT in {
|
||||
def LDub_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1) $dst=memub(##$global)",
|
||||
@ -1138,7 +1137,6 @@ def LDub_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
|
||||
|
||||
// if (!Pv) Rt=memub(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDub_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1) $dst=memub(##$global)",
|
||||
@ -1146,7 +1144,6 @@ def LDub_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memub(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDub_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1.new) $dst=memub(##$global)",
|
||||
@ -1155,14 +1152,14 @@ def LDub_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
|
||||
|
||||
// if (!Pv) Rt=memub(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDub_GP_cdnNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1.new) $dst=memub(##$global)",
|
||||
[]>,
|
||||
Requires<[HasV4T]>;
|
||||
}
|
||||
|
||||
let isPredicable = 1, neverHasSideEffects = 1 in
|
||||
let isPredicable = 1, neverHasSideEffects = 1, validSubTargets = HasV4SubT in
|
||||
def LDh_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst=memh(#$global)",
|
||||
@ -1170,7 +1167,8 @@ def LDh_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
let neverHasSideEffects = 1, isPredicated = 1, isExtended = 1, opExtendable = 2,
|
||||
validSubTargets = HasV4SubT in {
|
||||
def LDh_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1) $dst=memh(##$global)",
|
||||
@ -1178,7 +1176,6 @@ def LDh_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (!Pv) Rt=memh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDh_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1) $dst=memh(##$global)",
|
||||
@ -1186,7 +1183,6 @@ def LDh_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDh_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1.new) $dst=memh(##$global)",
|
||||
@ -1194,14 +1190,14 @@ def LDh_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (!Pv) Rt=memh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDh_GP_cdnNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1.new) $dst=memh(##$global)",
|
||||
[]>,
|
||||
Requires<[HasV4T]>;
|
||||
}
|
||||
|
||||
let isPredicable = 1, neverHasSideEffects = 1 in
|
||||
let isPredicable = 1, neverHasSideEffects = 1, validSubTargets = HasV4SubT in
|
||||
def LDuh_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst=memuh(#$global)",
|
||||
@ -1209,7 +1205,8 @@ def LDuh_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memuh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
let neverHasSideEffects = 1, isPredicated = 1, isExtended = 1, opExtendable = 2,
|
||||
validSubTargets = HasV4SubT in {
|
||||
def LDuh_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1) $dst=memuh(##$global)",
|
||||
@ -1217,7 +1214,6 @@ def LDuh_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (!Pv) Rt=memuh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDuh_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1) $dst=memuh(##$global)",
|
||||
@ -1225,7 +1221,6 @@ def LDuh_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memuh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDuh_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1.new) $dst=memuh(##$global)",
|
||||
@ -1233,14 +1228,14 @@ def LDuh_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (!Pv) Rt=memuh(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDuh_GP_cdnNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1.new) $dst=memuh(##$global)",
|
||||
[]>,
|
||||
Requires<[HasV4T]>;
|
||||
}
|
||||
|
||||
let isPredicable = 1, neverHasSideEffects = 1 in
|
||||
let isPredicable = 1, neverHasSideEffects = 1, validSubTargets = HasV4SubT in
|
||||
def LDw_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins globaladdress:$global),
|
||||
"$dst=memw(#$global)",
|
||||
@ -1248,7 +1243,8 @@ def LDw_GP_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memw(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
let neverHasSideEffects = 1, isPredicated = 1, isExtended = 1, opExtendable = 2,
|
||||
validSubTargets = HasV4SubT in {
|
||||
def LDw_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1) $dst=memw(##$global)",
|
||||
@ -1257,7 +1253,6 @@ def LDw_GP_cPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
|
||||
|
||||
// if (!Pv) Rt=memw(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDw_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1) $dst=memw(##$global)",
|
||||
@ -1265,7 +1260,6 @@ def LDw_GP_cNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
// if (Pv) Rt=memw(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDw_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if ($src1.new) $dst=memw(##$global)",
|
||||
@ -1274,13 +1268,12 @@ def LDw_GP_cdnPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
|
||||
|
||||
// if (!Pv) Rt=memw(##global)
|
||||
let neverHasSideEffects = 1, isPredicated = 1 in
|
||||
def LDw_GP_cdnNotPt_V4 : LDInst2<(outs IntRegs:$dst),
|
||||
(ins PredRegs:$src1, globaladdress:$global),
|
||||
"if (!$src1.new) $dst=memw(##$global)",
|
||||
[]>,
|
||||
Requires<[HasV4T]>;
|
||||
|
||||
}
|
||||
|
||||
|
||||
def : Pat <(atomic_load_64 (HexagonCONST32_GP tglobaladdr:$global)),
|
||||
|
Loading…
Reference in New Issue
Block a user