@@ -2045,7 +2045,7 @@ enum Nf {
20452045 void set_in_compressible_region (bool b) { _in_compressible_region = b; }
20462046public:
20472047
2048- // RVC: a compressible region
2048+ // a compressible region
20492049 class CompressibleRegion : public StackObj {
20502050 protected:
20512051 Assembler *_masm;
@@ -2061,7 +2061,7 @@ enum Nf {
20612061 }
20622062 };
20632063
2064- // RVC: patch a 16-bit instruction.
2064+ // patch a 16-bit instruction.
20652065 static void c_patch (address a, unsigned msb, unsigned lsb, uint16_t val) {
20662066 assert_cond (a != NULL );
20672067 assert_cond (msb >= lsb && msb <= 15 );
@@ -2080,22 +2080,22 @@ enum Nf {
20802080 c_patch (a, bit, bit, val);
20812081 }
20822082
2083- // RVC: patch a 16-bit instruction with a general purpose register ranging [0, 31] (5 bits)
2083+ // patch a 16-bit instruction with a general purpose register ranging [0, 31] (5 bits)
20842084 static void c_patch_reg (address a, unsigned lsb, Register reg) {
20852085 c_patch (a, lsb + 4 , lsb, reg->encoding_nocheck ());
20862086 }
20872087
2088- // RVC: patch a 16-bit instruction with a general purpose register ranging [8, 15] (3 bits)
2088+ // patch a 16-bit instruction with a general purpose register ranging [8, 15] (3 bits)
20892089 static void c_patch_compressed_reg (address a, unsigned lsb, Register reg) {
20902090 c_patch (a, lsb + 2 , lsb, reg->compressed_encoding_nocheck ());
20912091 }
20922092
2093- // RVC: patch a 16-bit instruction with a float register ranging [0, 31] (5 bits)
2093+ // patch a 16-bit instruction with a float register ranging [0, 31] (5 bits)
20942094 static void c_patch_reg (address a, unsigned lsb, FloatRegister reg) {
20952095 c_patch (a, lsb + 4 , lsb, reg->encoding_nocheck ());
20962096 }
20972097
2098- // RVC: patch a 16-bit instruction with a float register ranging [8, 15] (3 bits)
2098+ // patch a 16-bit instruction with a float register ranging [8, 15] (3 bits)
20992099 static void c_patch_compressed_reg (address a, unsigned lsb, FloatRegister reg) {
21002100 c_patch (a, lsb + 2 , lsb, reg->compressed_encoding_nocheck ());
21012101 }
0 commit comments