Searched refs:ChangeBoolToBit (Results 1 – 11 of 11) sorted by relevance
/external/v8/test/unittests/compiler/ |
D | simplified-operator-reducer-unittest.cc | 160 graph()->NewNode(simplified()->ChangeBoolToBit(), param0))); in TEST_F() 188 graph()->NewNode(simplified()->ChangeBoolToBit(), FalseConstant())); in TEST_F() 196 Reduce(graph()->NewNode(simplified()->ChangeBoolToBit(), TrueConstant())); in TEST_F() 205 simplified()->ChangeBoolToBit(), in TEST_F()
|
D | change-lowering-unittest.cc | 119 TARGET_TEST_P(ChangeLoweringCommonTest, ChangeBoolToBit) { in TARGET_TEST_P() argument 122 Reduce(graph()->NewNode(simplified()->ChangeBoolToBit(), value)); in TARGET_TEST_P()
|
D | simplified-operator-unittest.cc | 66 PURE(ChangeBoolToBit, Operator::kNoProperties, 1),
|
/external/v8/src/compiler/ |
D | change-lowering.h | 45 Reduction ChangeBoolToBit(Node* value);
|
D | simplified-operator.h | 167 const Operator* ChangeBoolToBit();
|
D | change-lowering.cc | 29 return ChangeBoolToBit(node->InputAt(0)); in Reduce() 160 Reduction ChangeLowering::ChangeBoolToBit(Node* value) { in ChangeBoolToBit() function in v8::internal::compiler::ChangeLowering
|
D | simplified-operator.cc | 187 V(ChangeBoolToBit, Operator::kNoProperties, 1) \
|
D | opcodes.h | 195 V(ChangeBoolToBit) \
|
D | representation-change.cc | 397 op = simplified()->ChangeBoolToBit(); in GetBitRepresentationFor()
|
/external/v8/test/cctest/compiler/ |
D | graph-builder-tester.h | 171 Node* ChangeBoolToBit(Node* a) { in ChangeBoolToBit() function 172 return NewNode(simplified()->ChangeBoolToBit(), a); in ChangeBoolToBit()
|
D | test-changes-lowering.cc | 255 t.BuildAndLower(t.simplified()->ChangeBoolToBit()); in TEST()
|