Lines Matching refs:Int32Constant

27                                Int32Constant(kStringRepresentationMask)),  in DirectStringData()
28 Int32Constant(kSeqStringTag)), in DirectStringData()
45 Int32Constant(kShortExternalStringMask)), in DirectStringData()
46 Int32Constant(kShortExternalStringTag))); in DirectStringData()
66 Node* const encoding_mask = Int32Constant(kStringEncodingMask); in DispatchOnStringEncodings()
180 lhs_instance_type, Word32Shl(rhs_instance_type, Int32Constant(8))); in StringEqual_Core()
188 Int32Constant(kBothInternalizedMask)), in StringEqual_Core()
189 Int32Constant(kBothInternalizedTag)), in StringEqual_Core()
200 Int32Constant(kBothDirectStringMask)), in StringEqual_Core()
201 Int32Constant(0)), in StringEqual_Core()
213 Word32And(both_instance_types, Int32Constant(kBothStringEncodingMask)); in StringEqual_Core()
215 Word32Equal(masked_instance_types, Int32Constant(kOneOneByteStringTag)), in StringEqual_Core()
218 Word32Equal(masked_instance_types, Int32Constant(kTwoTwoByteStringTag)), in StringEqual_Core()
221 Word32Equal(masked_instance_types, Int32Constant(kOneTwoByteStringTag)), in StringEqual_Core()
407 lhs_instance_type, Word32Shl(rhs_instance_type, Int32Constant(8))); in GenerateStringRelationalComparison()
418 Int32Constant(kBothSeqOneByteStringMask)), in GenerateStringRelationalComparison()
419 Int32Constant(kBothSeqOneByteStringTag)), in GenerateStringRelationalComparison()
646 Branch(Word32Equal(argc, Int32Constant(1)), &if_oneargument, in TF_BUILTIN()
657 Signed(Word32And(code32, Int32Constant(String::kMaxUtf16CodeUnit))); in TF_BUILTIN()
679 code16 = Word32And(code32, Int32Constant(String::kMaxUtf16CodeUnit)); in TF_BUILTIN()
682 Int32GreaterThan(code16, Int32Constant(String::kMaxOneByteCharCode)), in TF_BUILTIN()
727 Word32And(code32, Int32Constant(String::kMaxUtf16CodeUnit)); in TF_BUILTIN()
2328 GotoIf(Word32Equal(char_code, Int32Constant(0x0020)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2331 GotoIf(Uint32LessThan(char_code, Int32Constant(0x0009)), if_not_whitespace); in GotoIfNotWhiteSpaceOrLineTerminator()
2336 GotoIf(Uint32LessThanOrEqual(char_code, Int32Constant(0x000D)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2339 GotoIf(Uint32LessThan(char_code, Int32Constant(0x00A0)), if_not_whitespace); in GotoIfNotWhiteSpaceOrLineTerminator()
2342 GotoIf(Word32Equal(char_code, Int32Constant(0x00A0)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2345 GotoIf(Word32Equal(char_code, Int32Constant(0x1680)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2348 GotoIf(Uint32LessThan(char_code, Int32Constant(0x2000)), if_not_whitespace); in GotoIfNotWhiteSpaceOrLineTerminator()
2359 GotoIf(Uint32LessThanOrEqual(char_code, Int32Constant(0x200A)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2362 GotoIf(Word32Equal(char_code, Int32Constant(0x2028)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2364 GotoIf(Word32Equal(char_code, Int32Constant(0x2029)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2366 GotoIf(Word32Equal(char_code, Int32Constant(0x202F)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2368 GotoIf(Word32Equal(char_code, Int32Constant(0x205F)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2370 GotoIf(Word32Equal(char_code, Int32Constant(0xFEFF)), &out); in GotoIfNotWhiteSpaceOrLineTerminator()
2372 Branch(Word32Equal(char_code, Int32Constant(0x3000)), &out, in GotoIfNotWhiteSpaceOrLineTerminator()
2431 var_trail = Int32Constant(0); in LoadSurrogatePairAt()
2433 GotoIf(Word32NotEqual(Word32And(var_result.value(), Int32Constant(0xFC00)), in LoadSurrogatePairAt()
2434 Int32Constant(0xD800)), in LoadSurrogatePairAt()
2440 Branch(Word32Equal(Word32And(var_trail.value(), Int32Constant(0xFC00)), in LoadSurrogatePairAt()
2441 Int32Constant(0xDC00)), in LoadSurrogatePairAt()
2451 Uint32GreaterThanOrEqual(lead, Int32Constant(0xD800))); in LoadSurrogatePairAt()
2452 CSA_SLOW_ASSERT(this, Uint32LessThan(lead, Int32Constant(0xDC00))); in LoadSurrogatePairAt()
2454 Uint32GreaterThanOrEqual(trail, Int32Constant(0xDC00))); in LoadSurrogatePairAt()
2455 CSA_SLOW_ASSERT(this, Uint32LessThan(trail, Int32Constant(0xE000))); in LoadSurrogatePairAt()
2462 Word32Shl(lead, Int32Constant(16)), trail)); in LoadSurrogatePairAt()
2464 Word32Shl(trail, Int32Constant(16)), lead)); in LoadSurrogatePairAt()
2472 Int32Constant(0x10000 - (0xD800 << 10) - 0xDC00); in LoadSurrogatePairAt()
2475 var_result = Signed(Int32Add(Word32Shl(lead, Int32Constant(10)), in LoadSurrogatePairAt()