Searched refs:IntegralT (Results 1 – 3 of 3) sorted by relevance
/third_party/node/deps/v8/src/codegen/ |
D | tnode.h | 27 struct IntegralT : UntaggedT {}; struct 29 struct WordT : IntegralT { 46 struct Word32T : IntegralT { 69 struct Word64T : IntegralT {
|
/third_party/node/deps/v8/src/compiler/ |
D | code-assembler.h | 278 V(WordRor, WordT, WordT, IntegralT) \ 279 V(WordShl, WordT, WordT, IntegralT) \ 280 V(WordShr, WordT, WordT, IntegralT) \ 281 V(WordSar, WordT, WordT, IntegralT) \ 282 V(WordSarShiftOutZeros, WordT, WordT, IntegralT) \ 570 bool TryToInt32Constant(TNode<IntegralT> node, int32_t* out_value); 571 bool TryToInt64Constant(TNode<IntegralT> node, int64_t* out_value); 572 bool TryToIntPtrConstant(TNode<IntegralT> node, intptr_t* out_value); 574 bool TryToSmiConstant(TNode<IntegralT> node, Smi* out_value); 676 void GotoIf(TNode<IntegralT> condition, Label* true_label); [all …]
|
D | code-assembler.cc | 331 bool CodeAssembler::TryToInt32Constant(TNode<IntegralT> node, in TryToInt32Constant() 354 bool CodeAssembler::TryToInt64Constant(TNode<IntegralT> node, in TryToInt64Constant() 369 bool CodeAssembler::TryToSmiConstant(TNode<IntegralT> node, Smi* out_value) { in TryToSmiConstant() 390 bool CodeAssembler::TryToIntPtrConstant(TNode<IntegralT> node, in TryToIntPtrConstant() 1258 void CodeAssembler::GotoIf(TNode<IntegralT> condition, Label* true_label) { in GotoIf() 1264 void CodeAssembler::GotoIfNot(TNode<IntegralT> condition, Label* false_label) { in GotoIfNot() 1270 void CodeAssembler::Branch(TNode<IntegralT> condition, Label* true_label, in Branch()
|