Lines Matching defs:value
74 Node* RawMachineAssembler::RelocatableIntPtrConstant(intptr_t value,
77 ? RelocatableInt64Constant(value, rmode)
78 : RelocatableInt32Constant(static_cast<int>(value), rmode);
460 control_node, common()->IfValue(parameters.value(),
593 void RawMachineAssembler::Return(Node* value) {
594 Node* values[] = {Int32Constant(0), value};
632 void RawMachineAssembler::PopAndReturn(Node* pop, Node* value) {
648 Node* values[] = {pop, value};
696 void RawMachineAssembler::StaticAssert(Node* value, const char* source) {
697 AddNode(common()->StaticAssert(source), value);