Searched refs:Word64T (Results 1 - 5 of 5) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | code-assembler.h | 269 V(Int64Add, Word64T, Word64T, Word64T) \ 270 V(Int64Sub, Word64T, Word64T, Word64T) \ 272 V(Int64Mul, Word64T, Word64T, Word64T) \ 291 V(Word64And, Word64T, Word64 [all...] |
H A D | code-assembler.cc | 610 CODE_ASSEMBLER_COMPARE(Word64Equal, Word64T, int64_t, TryToInt64Constant, ==) 611 CODE_ASSEMBLER_COMPARE(Word64NotEqual, Word64T, int64_t, TryToInt64Constant, !=)
|
/third_party/node/deps/v8/src/codegen/ |
H A D | tnode.h | 69 struct Word64T : IntegralT { struct 73 struct Int64T : Word64T { 76 struct Uint64T : Word64T { 312 static const bool value = types_have_common_values<Word64T, U>::value; 316 static const bool value = types_have_common_values<Word64T, U>::value;
|
H A D | code-stub-assembler.h | 560 TNode<Int64T> PopulationCount64(TNode<Word64T> value); 562 TNode<Int64T> CountTrailingZeros64(TNode<Word64T> value); 564 TNode<Int64T> CountLeadingZeros64(TNode<Word64T> value);
|
H A D | code-stub-assembler.cc | 613 TNode<Int64T> CodeStubAssembler::PopulationCount64(TNode<Word64T> value) { in PopulationCount64() 643 TNode<Int64T> CodeStubAssembler::CountTrailingZeros64(TNode<Word64T> value) { in CountTrailingZeros64() 657 TNode<Word64T> lhs = Word64Not(value); in CountTrailingZeros64() 658 TNode<Word64T> rhs = Uint64Sub(Unsigned(value), Uint64Constant(1)); in CountTrailingZeros64() 678 TNode<Int64T> CodeStubAssembler::CountLeadingZeros64(TNode<Word64T> value) { in CountLeadingZeros64()
|
Completed in 28 milliseconds