Lines Matching defs:value
32 Node* Int32Constant(int32_t value);
33 Node* Uint32Constant(uint32_t value) {
34 return Int32Constant(bit_cast<int32_t>(value));
38 Node* Int64Constant(int64_t value);
39 Node* Uint64Constant(uint64_t value) {
40 return Int64Constant(bit_cast<int64_t>(value));
47 Node* IntPtrConstant(intptr_t value);
48 Node* UintPtrConstant(uintptr_t value);
50 Node* TaggedIndexConstant(intptr_t value);
52 Node* RelocatableInt32Constant(int32_t value, RelocInfo::Mode rmode);
53 Node* RelocatableInt64Constant(int64_t value, RelocInfo::Mode rmode);
54 Node* RelocatableIntPtrConstant(intptr_t value, RelocInfo::Mode rmode);
57 Node* Float32Constant(float value);
60 Node* Float64Constant(double value);
63 Node* PointerConstant(intptr_t value);
65 Node* PointerConstant(T* value) {
66 return PointerConstant(bit_cast<intptr_t>(value));