/third_party/node/deps/v8/src/builtins/ |
H A D | growable-fixed-array-gen.cc | 77 IntPtrAdd(IntPtrAdd(current_capacity, WordShr(current_capacity, 1)), in NewCapacity()
|
H A D | builtins-internal-gen.cc | 159 r0 = WordShr(object, IntPtrConstant(shift)); in GetMarkBit() 167 r1 = WordShr(object, IntPtrConstant(kTaggedSizeLog2)); in GetMarkBit() 217 WordShr(slot_offset, SlotSet::kBitsPerBucketLog2 + kTaggedSizeLog2); in LoadBucket() 228 WordShr(slot_offset, SlotSet::kBitsPerCellLog2 + kTaggedSizeLog2 - in SetBitInCell() 238 TNode<WordT> bit_index = WordAnd(WordShr(slot_offset, kTaggedSizeLog2), in SetBitInCell()
|
H A D | builtins-collections-gen.cc | 2495 TNode<IntPtrT> half_available = WordShr(available, 1); 2496 TNode<IntPtrT> needed_available = WordShr(number_of_elements, 1); 2532 TNode<IntPtrT> quarter_capacity = WordShr(capacity, 2);
|
H A D | builtins-regexp-gen.cc | 229 TNode<Smi> num_results = SmiTag(WordShr(num_indices, 1)); in ConstructNewResultFromMatchInfo()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.h | 280 V(WordShr, WordT, WordT, IntegralT) \ 885 TNode<UintPtrT> WordShr(TNode<UintPtrT> left, TNode<IntegralT> right) { in WordShr() function in v8::internal::compiler::CodeAssembler 886 return Unsigned(WordShr(static_cast<TNode<WordT>>(left), right)); in WordShr() 1078 TNode<WordT> WordShr(TNode<WordT> value, int shift); 1080 TNode<IntPtrT> WordShr(TNode<IntPtrT> value, int shift) { in WordShr() function in v8::internal::compiler::CodeAssembler 1081 return UncheckedCast<IntPtrT>(WordShr(TNode<WordT>(value), shift)); in WordShr()
|
H A D | code-assembler.cc | 580 TNode<WordT> CodeAssembler::WordShr(TNode<WordT> value, int shift) { in WordShr() function in v8::internal::compiler::CodeAssembler 581 return (shift != 0) ? WordShr(value, IntPtrConstant(shift)) : value; in WordShr()
|
H A D | raw-machine-assembler.h | 350 Node* WordShr(Node* a, Node* b) { in WordShr() function in v8::internal::compiler::RawMachineAssembler 351 return AddNode(machine()->WordShr(), a, b); in WordShr()
|
H A D | graph-assembler.h | 104 V(WordShr) \
|
H A D | wasm-compiler.cc | 3642 gasm_->WordShr(mem_size, Int32Constant(wasm::kWasmPageSizeLog2)); in CurrentMemoryPages() 6168 gasm_->WordShr(input, gasm_->IntPtrConstant(kI31To32BitSmiShift)));
|
/third_party/node/deps/v8/src/codegen/ |
H A D | code-stub-assembler.cc | 323 value = Signed(WordOr(value, WordShr(value, IntPtrConstant(i)))); in IntPtrRoundUpToPowerOfTwo32() 571 lhs = WordAnd(WordShr(value, UintPtrConstant(1)), UintPtrConstant(mask[0])); in PopulationCountFallback() 577 lhs = WordAnd(WordShr(value, UintPtrConstant(2)), UintPtrConstant(mask[1])); in PopulationCountFallback() 583 lhs = WordAnd(WordShr(value, UintPtrConstant(4)), UintPtrConstant(mask[2])); in PopulationCountFallback() 593 lhs = WordShr(value, UintPtrConstant(8)); in PopulationCountFallback() 598 lhs = WordShr(value, UintPtrConstant(16)); in PopulationCountFallback() 604 lhs = WordShr(value, UintPtrConstant(32)); in PopulationCountFallback() 3718 TNode<IntPtrT> bucket_count = Signed(WordShr(capacity, IntPtrConstant(1))); 7939 return Unsigned(WordShr(word, static_cast<int>(shift))); 7941 return Unsigned(WordAnd(WordShr(wor [all...] |
H A D | code-stub-assembler.h | 648 WordAnd(WordShr(BitcastTaggedToWordForTagAndSmiBits(a), shift), in SmiShr() 691 return WordShr(a, shift); in WordOrSmiShr()
|
/third_party/node/deps/v8/src/ic/ |
H A D | accessor-assembler.cc | 2890 WordXor(map_word, WordShr(map_word, StubCache::kMapKeyShift)))); in StubCachePrimaryOffset()
|