Searched refs:ChangeBitToBool (Results 1 – 11 of 11) sorted by relevance
/external/v8/test/unittests/compiler/ |
D | simplified-operator-reducer-unittest.cc | 159 simplified()->ChangeBitToBool(), in TEST_F() 168 graph()->NewNode(simplified()->ChangeBitToBool(), Int32Constant(0))); in TEST_F() 176 graph()->NewNode(simplified()->ChangeBitToBool(), Int32Constant(1))); in TEST_F() 206 graph()->NewNode(simplified()->ChangeBitToBool(), param0))); in TEST_F()
|
D | change-lowering-unittest.cc | 109 TARGET_TEST_P(ChangeLoweringCommonTest, ChangeBitToBool) { in TARGET_TEST_P() argument 112 Reduce(graph()->NewNode(simplified()->ChangeBitToBool(), value)); in TARGET_TEST_P()
|
D | simplified-operator-unittest.cc | 67 PURE(ChangeBitToBool, Operator::kNoProperties, 1),
|
/external/v8/src/compiler/ |
D | change-lowering.h | 44 Reduction ChangeBitToBool(Node* value, Node* control);
|
D | simplified-operator.h | 168 const Operator* ChangeBitToBool();
|
D | change-lowering.cc | 27 return ChangeBitToBool(node->InputAt(0), control); in Reduce() 153 Reduction ChangeLowering::ChangeBitToBool(Node* value, Node* control) { in ChangeBitToBool() function in v8::internal::compiler::ChangeLowering
|
D | simplified-operator.cc | 188 V(ChangeBitToBool, Operator::kNoProperties, 1) \
|
D | opcodes.h | 196 V(ChangeBitToBool) \
|
D | representation-change.cc | 188 op = simplified()->ChangeBitToBool(); in GetTaggedRepresentationFor()
|
/external/v8/test/cctest/compiler/ |
D | graph-builder-tester.h | 174 Node* ChangeBitToBool(Node* a) { in ChangeBitToBool() function 175 return NewNode(simplified()->ChangeBitToBool(), a); in ChangeBitToBool()
|
D | test-changes-lowering.cc | 273 t.BuildAndLower(t.simplified()->ChangeBitToBool()); in TEST()
|