@@ -555,50 +555,55 @@ struct RISCVOperand final : public MCParsedAsmOperand {
555
555
556
556
bool isBareSymbol () const {
557
557
int64_t Imm;
558
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
559
558
// Must be of 'immediate' type but not a constant.
560
559
if (!isImm () || evaluateConstantImm (getImm (), Imm))
561
560
return false ;
561
+
562
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
562
563
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
563
564
VK == RISCVMCExpr::VK_None;
564
565
}
565
566
566
567
bool isCallSymbol () const {
567
568
int64_t Imm;
568
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
569
569
// Must be of 'immediate' type but not a constant.
570
570
if (!isImm () || evaluateConstantImm (getImm (), Imm))
571
571
return false ;
572
+
573
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
572
574
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
573
575
(VK == RISCVMCExpr::VK_CALL || VK == RISCVMCExpr::VK_CALL_PLT);
574
576
}
575
577
576
578
bool isPseudoJumpSymbol () const {
577
579
int64_t Imm;
578
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
579
580
// Must be of 'immediate' type but not a constant.
580
581
if (!isImm () || evaluateConstantImm (getImm (), Imm))
581
582
return false ;
583
+
584
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
582
585
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
583
586
VK == RISCVMCExpr::VK_CALL;
584
587
}
585
588
586
589
bool isTPRelAddSymbol () const {
587
590
int64_t Imm;
588
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
589
591
// Must be of 'immediate' type but not a constant.
590
592
if (!isImm () || evaluateConstantImm (getImm (), Imm))
591
593
return false ;
594
+
595
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
592
596
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
593
597
VK == RISCVMCExpr::VK_TPREL_ADD;
594
598
}
595
599
596
600
bool isTLSDESCCallSymbol () const {
597
601
int64_t Imm;
598
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
599
602
// Must be of 'immediate' type but not a constant.
600
603
if (!isImm () || evaluateConstantImm (getImm (), Imm))
601
604
return false ;
605
+
606
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
602
607
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
603
608
VK == RISCVMCExpr::VK_TLSDESC_CALL;
604
609
}
@@ -838,19 +843,17 @@ struct RISCVOperand final : public MCParsedAsmOperand {
838
843
}
839
844
840
845
bool isSImm12 () const {
841
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
842
- int64_t Imm;
843
- bool IsValid;
844
846
if (!isImm ())
845
847
return false ;
846
- bool IsConstantImm = evaluateConstantImm (getImm (), Imm);
847
- if (!IsConstantImm)
848
- IsValid = RISCVAsmParser::classifySymbolRef (getImm (), VK);
849
- else
850
- IsValid = isInt<12 >(fixImmediateForRV32 (Imm, isRV64Imm ()));
851
- return IsValid &&
852
- (IsConstantImm || VK == RISCVMCExpr::VK_LO ||
853
- VK == RISCVMCExpr::VK_PCREL_LO || VK == RISCVMCExpr::VK_TPREL_LO ||
848
+
849
+ int64_t Imm;
850
+ if (evaluateConstantImm (getImm (), Imm))
851
+ return isInt<12 >(fixImmediateForRV32 (Imm, isRV64Imm ()));
852
+
853
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
854
+ return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
855
+ (VK == RISCVMCExpr::VK_LO || VK == RISCVMCExpr::VK_PCREL_LO ||
856
+ VK == RISCVMCExpr::VK_TPREL_LO ||
854
857
VK == RISCVMCExpr::VK_TLSDESC_LOAD_LO ||
855
858
VK == RISCVMCExpr::VK_TLSDESC_ADD_LO);
856
859
}
@@ -873,26 +876,27 @@ struct RISCVOperand final : public MCParsedAsmOperand {
873
876
}
874
877
875
878
bool isUImm20LUI () const {
876
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
877
- int64_t Imm;
878
879
if (!isImm ())
879
880
return false ;
880
- bool IsConstantImm = evaluateConstantImm (getImm (), Imm);
881
- if (IsConstantImm)
881
+
882
+ int64_t Imm;
883
+ if (evaluateConstantImm (getImm (), Imm))
882
884
return isUInt<20 >(Imm);
885
+
886
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
883
887
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
884
888
(VK == RISCVMCExpr::VK_HI || VK == RISCVMCExpr::VK_TPREL_HI);
885
889
}
886
890
887
891
bool isUImm20AUIPC () const {
888
- RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
889
- int64_t Imm;
890
892
if (!isImm ())
891
893
return false ;
892
- bool IsConstantImm = evaluateConstantImm (getImm (), Imm);
893
- if (IsConstantImm)
894
+
895
+ int64_t Imm;
896
+ if (evaluateConstantImm (getImm (), Imm))
894
897
return isUInt<20 >(Imm);
895
898
899
+ RISCVMCExpr::Specifier VK = RISCVMCExpr::VK_None;
896
900
return RISCVAsmParser::classifySymbolRef (getImm (), VK) &&
897
901
(VK == RISCVMCExpr::VK_PCREL_HI || VK == RISCVMCExpr::VK_GOT_HI ||
898
902
VK == RISCVMCExpr::VK_TLS_GOT_HI ||
0 commit comments