Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching defs:Kind

39 // Return the relocation type for an absolute value of MCFixupKind Kind.
40 static unsigned getAbsoluteReloc(unsigned Kind) {
41 switch (Kind) {
50 // Return the relocation type for a PC-relative value of MCFixupKind Kind.
51 static unsigned getPCRelReloc(unsigned Kind) {
52 switch (Kind) {
64 // Return the R_390_TLS_LE* relocation type for MCFixupKind Kind.
65 static unsigned getTLSLEReloc(unsigned Kind) {
66 switch (Kind) {
73 // Return the PLT relocation counterpart of MCFixupKind Kind.
74 static unsigned getPLTReloc(unsigned Kind) {
75 switch (Kind) {
86 unsigned Kind = Fixup.getKind();
90 return getPCRelReloc(Kind);
91 return getAbsoluteReloc(Kind);
95 return getTLSLEReloc(Kind);
98 if (IsPCRel && Kind == SystemZ::FK_390_PC32DBL)
104 return getPLTReloc(Kind);