/external/v8/src/compiler/ |
D | machine-operator.cc | 64 V(Word32Shl, Operator::kNoProperties, 2, 1) \ 65 V(Word32Shr, Operator::kNoProperties, 2, 1) \ 66 V(Word32Sar, Operator::kNoProperties, 2, 1) \ 67 V(Word32Ror, Operator::kNoProperties, 2, 1) \ 72 V(Word64Shl, Operator::kNoProperties, 2, 1) \ 73 V(Word64Shr, Operator::kNoProperties, 2, 1) \ 74 V(Word64Sar, Operator::kNoProperties, 2, 1) \ 75 V(Word64Ror, Operator::kNoProperties, 2, 1) \ 80 V(Int32Sub, Operator::kNoProperties, 2, 1) \ 81 V(Int32SubWithOverflow, Operator::kNoProperties, 2, 2) \ [all …]
|
D | simplified-operator.cc | 99 V(BooleanNot, Operator::kNoProperties, 1) \ 100 V(BooleanToNumber, Operator::kNoProperties, 1) \ 102 V(NumberLessThan, Operator::kNoProperties, 2) \ 103 V(NumberLessThanOrEqual, Operator::kNoProperties, 2) \ 105 V(NumberSubtract, Operator::kNoProperties, 2) \ 107 V(NumberDivide, Operator::kNoProperties, 2) \ 108 V(NumberModulus, Operator::kNoProperties, 2) \ 109 V(NumberToInt32, Operator::kNoProperties, 1) \ 110 V(NumberToUint32, Operator::kNoProperties, 1) \ 112 V(StringLessThan, Operator::kNoProperties, 2) \ [all …]
|
D | simplified-operator-unittest.cc | 47 PURE(BooleanNot, Operator::kNoProperties, 1), 49 PURE(NumberLessThan, Operator::kNoProperties, 2), 50 PURE(NumberLessThanOrEqual, Operator::kNoProperties, 2), 52 PURE(NumberSubtract, Operator::kNoProperties, 2), 54 PURE(NumberDivide, Operator::kNoProperties, 2), 55 PURE(NumberModulus, Operator::kNoProperties, 2), 56 PURE(NumberToInt32, Operator::kNoProperties, 1), 57 PURE(NumberToUint32, Operator::kNoProperties, 1), 59 PURE(StringLessThan, Operator::kNoProperties, 2), 60 PURE(StringLessThanOrEqual, Operator::kNoProperties, 2), [all …]
|
D | value-numbering-reducer-unittest.cc | 17 const SimpleOperator kOp0(0, Operator::kNoProperties, 0, 1, "op0"); 18 const SimpleOperator kOp1(1, Operator::kNoProperties, 1, 1, "op1"); 64 opcode, Operator::kNoProperties, 0, 1, "Operator")); in TEST_F() 68 Operator::kNoProperties, in TEST_F() 75 Operator::kNoProperties, in TEST_F() 92 opcode, Operator::kNoProperties, 0, 1, "Operator")); in TEST_F() 95 const SimpleOperator op1(1, Operator::kNoProperties, in TEST_F()
|
D | js-operator.h | 73 SIMPLE(name, Operator::kNoProperties, inputs, outputs) 116 OP1(JSCallFunction, CallParameters, parameters, Operator::kNoProperties, in Call() 122 Operator1<int>(IrOpcode::kJSCallConstruct, Operator::kNoProperties, in CallNew() 130 OP1(JSLoadNamed, LoadNamedParameters, parameters, Operator::kNoProperties, 135 OP1(JSStoreProperty, StrictMode, strict_mode, Operator::kNoProperties, 3, in StoreProperty() 141 OP1(JSStoreNamed, StoreNamedParameters, parameters, Operator::kNoProperties, in StoreNamed() 146 OP1(JSDeleteProperty, StrictMode, strict_mode, Operator::kNoProperties, 2, in DeleteProperty() 159 OP1(JSStoreContext, ContextAccess, access, Operator::kNoProperties, 2, 0); in StoreContext() 171 OP1(JSCreateCatchContext, Unique<String>, name, Operator::kNoProperties, 1, in CreateCatchContext() 186 OP1(JSCallRuntime, Runtime::FunctionId, function, Operator::kNoProperties, in Runtime()
|
D | linkage-impl.h | 63 Operator::kNoProperties, // properties in GetJSCallDescriptor() 176 Operator::kNoProperties, // properties in GetStubCallDescriptor() 208 Operator::kNoProperties, // properties in GetSimplifiedCDescriptor()
|
D | graph-reducer-unittest.cc | 24 SimpleOperator OP1(1, Operator::kNoProperties, 1, 1, "op1");
|
D | common-operator-unittest.cc | 54 SHARED(Return, Operator::kNoProperties, 1, 1, 1, 1, 1),
|
D | raw-machine-assembler.cc | 112 function, 1, Operator::kNoProperties, zone()); in CallRuntime1()
|
D | operator.h | 35 kNoProperties = 0, enumerator
|
D | common-operator.cc | 63 V(Return, Operator::kNoProperties, 1, 1)
|
D | change-lowering.cc | 76 function->function_id, 0, Operator::kNoProperties); in AllocateHeapNumberWithValue()
|
D | js-inlining.cc | 170 sentinel_op_(IrOpcode::kDead, Operator::kNoProperties, 0, 0, in CopyVisitor()
|
/external/v8/test/cctest/compiler/ |
D | test-operator.cc | 17 SimpleOperator op1(10, Operator::kNoProperties, 0, 0, "ThisOne"); in TEST() 20 SimpleOperator op2(11, Operator::kNoProperties, 0, 0, "ThatOne"); in TEST() 23 Operator1<int> op3(12, Operator::kNoProperties, 0, 1, "Mnemonic1", 12333); in TEST() 26 Operator1<double> op4(13, Operator::kNoProperties, 0, 1, "TheOther", 99.9); in TEST() 32 SimpleOperator op1(17, Operator::kNoProperties, 0, 0, "Another"); in TEST() 35 SimpleOperator op2(18, Operator::kNoProperties, 0, 0, "Falsch"); in TEST() 41 SimpleOperator op1a(19, Operator::kNoProperties, 0, 0, "Another1"); in TEST() 49 SimpleOperator op2a(20, Operator::kNoProperties, 0, 0, "Falsch1"); in TEST() 77 SimpleOperator op1a(19, Operator::kNoProperties, 0, 0, "Another1"); in TEST() 83 SimpleOperator op2a(20, Operator::kNoProperties, 0, 0, "Flog1"); in TEST() [all …]
|
D | test-linkage.cc | 70 CHECK_EQ(Operator::kNoProperties, descriptor->properties()); in TEST() 97 CHECK_EQ(Operator::kNoProperties, descriptor->properties()); in TEST()
|