HomeSort by relevance Sort by last modified time
    Searched refs:Int32Constant (Results 1 - 25 of 48) sorted by null

1 2

  /external/v8/src/compiler/
int64-lowering.cc 115 graph()->NewNode(common()->Int32Constant(4)));
118 graph()->NewNode(common()->Int32Constant(4)));
136 common()->Int32Constant(static_cast<int32_t>(value & 0xFFFFFFFF)));
138 common()->Int32Constant(static_cast<int32_t>(value >> 32)));
504 graph()->NewNode(common()->Int32Constant(0)));
539 graph()->NewNode(common()->Int32Constant(31))));
549 ReplaceNode(node, input, graph()->NewNode(common()->Int32Constant(0)));
564 graph()->NewNode(common()->Int32Constant(kHigherWordOffset)),
572 graph()->NewNode(common()->Int32Constant(kLowerWordOffset)),
577 graph()->NewNode(common()->Int32Constant(0))
    [all...]
basic-block-instrumentor.cc 46 : common->Int32Constant(
72 Node* zero = graph->NewNode(common.Int32Constant(0));
73 Node* one = graph->NewNode(common.Int32Constant(1));
js-graph.h 85 // Creates a Int32Constant node, usually canonicalized.
86 Node* Int32Constant(int32_t value);
88 return Int32Constant(bit_cast<int32_t>(value));
102 // Creates a Int32Constant/Int64Constant node, depending on the word size of
104 // TODO(turbofan): Code using Int32Constant/Int64Constant to store pointer
107 return machine()->Is32() ? Int32Constant(static_cast<int32_t>(value))
machine-operator-reducer.h 36 Node* Int32Constant(int32_t value);
39 return Int32Constant(bit_cast<int32_t>(value));
67 return Replace(Int32Constant(value));
wasm-compiler.cc 93 inputs[count++] = jsgraph->Int32Constant(fun->nargs); // arity
152 jsgraph()->Int32Constant(val)),
263 return jsgraph()->Int32Constant(0xdeadbeef);
270 return jsgraph()->Int32Constant(0xdeadbeef);
302 Node* reason_node = builder_->Int32Constant(
304 Node* position_node = builder_->Int32Constant(position);
471 Node* WasmGraphBuilder::Int32Constant(int32_t value) {
472 return jsgraph()->Int32Constant(value);
798 return graph()->NewNode(op, input, jsgraph()->Int32Constant(0));
    [all...]
effect-control-linearizer.cc     [all...]
graph-assembler.cc 26 Node* GraphAssembler::Int32Constant(int32_t value) {
27 return jsgraph()->Int32Constant(value);
31 return graph()->NewNode(common()->Int32Constant(value));
js-graph.cc 189 Node* JSGraph::Int32Constant(int32_t value) {
192 *loc = graph()->NewNode(common()->Int32Constant(value));
raw-machine-assembler.h 81 : Int32Constant(static_cast<int>(value));
84 Node* Int32Constant(int32_t value) {
85 return AddNode(common()->Int32Constant(value));
240 Node* Word32Not(Node* a) { return Word32Xor(a, Int32Constant(-1)); }
241 Node* Word32BinaryNot(Node* a) { return Word32Equal(a, Int32Constant(0)); }
329 Node* Int32Neg(Node* a) { return Int32Sub(Int32Constant(0), a); }
700 return Load(rep, PointerConstant(address), Int32Constant(offset));
707 return UnalignedLoad(rep, PointerConstant(address), Int32Constant(offset));
representation-change.cc 563 return jsgraph()->Int32Constant(DoubleToInt32(value));
595 return jsgraph()->Int32Constant(0);
708 return jsgraph()->Int32Constant(0);
710 return jsgraph()->Int32Constant(1);
721 return jsgraph()->Int32Constant(0);
734 jsgraph()->Int32Constant(0));
737 jsgraph()->Int32Constant(0));
739 jsgraph()->Int32Constant(0));
    [all...]
simplified-operator-reducer.cc 135 Node* value = jsgraph()->Int32Constant(static_cast<int32_t>(m.Value()));
242 return Replace(jsgraph()->Int32Constant(value));
machine-operator-reducer.cc 38 Node* MachineOperatorReducer::Int32Constant(int32_t value) {
39 return jsgraph()->Int32Constant(value);
223 node->ReplaceInput(0, Int32Constant(0));
229 node->ReplaceInput(1, Int32Constant(WhichPowerOf2(m.right().Value())));
244 node->ReplaceInput(0, Int32Constant(0));
753 node->ReplaceInput(1, Int32Constant(-m.right().Value()));
789 Node* const zero = Int32Constant(0);
793 node->ReplaceInput(0, Int32Constant(0));
815 node->ReplaceInput(0, Int32Constant(0));
837 Node* const zero = Int32Constant(0)
    [all...]
  /external/v8/src/
code-stub-assembler.cc 114 return SelectConstant(condition, Int32Constant(true_value),
115 Int32Constant(false_value),
471 GotoIf(Word32Equal(b, Int32Constant(0)), &return_nan);
475 Branch(Int32LessThanOrEqual(Int32Constant(0), a), &if_aisnotnegative,
492 GotoIfNot(Word32Equal(a, Int32Constant(kMinInt)), &join);
493 GotoIf(Word32Equal(b, Int32Constant(-1)), &return_minuszero);
503 GotoIf(Word32Equal(r, Int32Constant(0)), &return_minuszero);
545 Node* zero = Int32Constant(0);
632 Int32Constant(LAST_CUSTOM_ELEMENTS_RECEIVER)),
646 Int32Constant(FIRST_JS_RECEIVER_TYPE))
    [all...]
fast-accessor-assembler.cc 213 instance_type, assembler_->Int32Constant(Internals::kJSObjectType)),
218 assembler_->Word32Equal(instance_type, assembler_->Int32Constant(
  /external/v8/src/ic/
keyed-store-generic.cc 109 Int32Constant(LAST_CUSTOM_ELEMENTS_RECEIVER)),
114 GotoIf(Word32Equal(elements_kind, Int32Constant(NO_ELEMENTS)), &loop_body);
187 GotoIf(Word32Equal(current_elements_kind, Int32Constant(holey_kind)),
203 GotoIf(Word32Equal(current_elements_kind, Int32Constant(holey_kind)),
205 GotoIf(Word32Equal(current_elements_kind, Int32Constant(holey_kind_2)),
235 Int32Constant(JS_ARRAY_TYPE)));
296 Int32Constant(FAST_HOLEY_SMI_ELEMENTS)),
434 GotoIf(Word32Equal(instance_type, Int32Constant(JS_ARRAY_TYPE)), &if_array);
487 Int32Constant(FIRST_FIXED_TYPED_ARRAY_ELEMENTS_KIND)),
489 GotoIf(Word32Equal(elements_kind, Int32Constant(DICTIONARY_ELEMENTS))
    [all...]
accessor-assembler.cc     [all...]
  /external/v8/src/builtins/
builtins-string.cc 35 Int32Constant(kStringRepresentationMask)),
36 Int32Constant(kSeqStringTag)),
53 Int32Constant(kShortExternalStringMask)),
54 Int32Constant(kShortExternalStringTag)));
93 Word32And(instance_type, Int32Constant(kMask));
197 lhs_instance_type, Word32Shl(rhs_instance_type, Int32Constant(8)));
205 Int32Constant(kBothInternalizedMask)),
206 Int32Constant(kBothInternalizedTag)),
220 Int32Constant(kBothDirectOneByteStringMask)),
221 Int32Constant(kBothDirectOneByteStringTag))
    [all...]
builtins-generator.cc 39 Int32Constant(JS_GENERATOR_OBJECT_TYPE)),
builtins-constructor.cc 41 compiler_hints, Int32Constant(1 << SharedFunctionInfo::kStrictModeBit));
51 Int32Constant(SharedFunctionInfo::kAllFunctionKindBitsMask));
55 compiler_hints, Int32Constant(FunctionKind::kGeneratorFunction
60 compiler_hints, Int32Constant(FunctionKind::kAsyncFunction
65 compiler_hints, Int32Constant(FunctionKind::kClassConstructor
74 Int32Constant((FunctionKind::kAccessorFunction |
277 bit_field3, Int32Constant(1 << Map::ConstructionCounter::kShift));
builtins-sharedarraybuffer.cc 47 a->Int32Constant(JS_TYPED_ARRAY_TYPE)),
73 a->Int32Constant(FIXED_FLOAT32_ARRAY_TYPE)),
148 a->Word32Or(a->Int32LessThan(index_word, a->Int32Constant(0)),
builtins-function.cc 298 assembler.Int32Constant(JS_FUNCTION_TYPE)),
386 assembler.Uint32LessThanOrEqual(argc, assembler.Int32Constant(1)),
389 assembler.Int32Sub(argc, assembler.Int32Constant(1)));
414 assembler.GotoIf(assembler.Word32NotEqual(argc, assembler.Int32Constant(0)),
builtins-number.cc 39 Node* shift_count = Word32And(rhs, Int32Constant(0x1f));
207 input_hash, Int32Constant(String::kContainsCachedArrayIndexMask));
208 Branch(Word32Equal(input_bit, Int32Constant(0)), &if_inputcached,
321 input_hash, Int32Constant(String::kContainsCachedArrayIndexMask));
322 GotoIf(Word32NotEqual(input_bit, Int32Constant(0)), &if_generic);
710 Word32Equal(lhs_instance_type, Int32Constant(HEAP_NUMBER_TYPE)),
771 Word32Equal(lhs_instance_type, Int32Constant(HEAP_NUMBER_TYPE)),
780 Int32Constant(HEAP_NUMBER_TYPE)),
    [all...]
  /external/v8/src/interpreter/
interpreter-intrinsics.cc 112 return __ Word32Equal(instance_type, __ Int32Constant(type));
115 return __ Int32GreaterThanOrEqual(instance_type, __ Int32Constant(type));
279 Node* function_and_receiver_count = __ Int32Constant(2);
284 Node* comparison = __ Int32LessThan(target_args_count, __ Int32Constant(0));
342 Node* comparison = __ Word32Equal(actual, __ Int32Constant(expected));
interpreter-assembler.cc 115 Branch(Word32Equal(depth, Int32Constant(0)), &context_found, &context_search);
120 cur_depth.Bind(Int32Sub(cur_depth.value(), Int32Constant(1)));
124 Branch(Word32Equal(cur_depth.value(), Int32Constant(0)), &context_found,
158 cur_depth.Bind(Int32Sub(cur_depth.value(), Int32Constant(1)));
162 GotoIf(Word32NotEqual(cur_depth.value(), Int32Constant(0)),
311 Node* shift = Int32Constant(i * kBitsPerByte);
659 Word32Equal(instance_type, Int32Constant(JS_FUNCTION_TYPE));
773 Word32Equal(instance_type, Int32Constant(JS_FUNCTION_TYPE));
    [all...]
interpreter.cc     [all...]

Completed in 298 milliseconds

1 2