/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
D | bitops_bitwise_and_test.cpp | 97 INST(10, Opcode::And).s64().Inputs(9, 4); in TEST_F()
|
/arkcompiler/runtime_core/docs/ |
D | PBC2IR.md | 62 | and2 | i32 And | 63 | and2.64 | i64 And | 95 | andi | i64 Constant, i32 And | 106 | and | i32 And |
|
/arkcompiler/runtime_core/compiler/docs/ |
D | reg_alloc_graph_coloring_doc.md | 18 …O) - order in which graph deconstruction always keeps chordality-property. And using PEO for color… 26 If interval is pre-colored, this value is set as pre-color for node. And input parameters is marked… 38 - Biasing, is a way when in front of coloring nodes are “hinted” with preferred colors. And on stag… 42 …ne edges are visited. Marker of visited node here is assigned bias-number. And each bias additiona… 52 And at the end, color chosen from previous bias color or chosen by 2-phase scheme is set for node.
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | common_stubs.h | 40 V(And) \
|
D | operations_stub_builder.h | 53 …GateRef And(GateRef glue, GateRef left, GateRef right, ProfileOperation callback = ProfileOperatio…
|
D | call_signature.h | 339 V(And) \
|
D | circuit_builder.h | 67 V(BoolAnd, And, MachineType::I1) \ 68 V(Int8And, And, MachineType::I8) \ 69 V(Int32And, And, MachineType::I32) \ 70 V(Int64And, And, MachineType::I64) \
|
D | call_signature.cpp | 132 DEF_CALL_SIGNATURE(And) in DEF_CALL_SIGNATURE() argument 134 BINARY_CALL_SIGNATURE(And) in DEF_CALL_SIGNATURE()
|
D | common_stubs.cpp | 190 Return(operationBuilder.And(glue, x, y)); in GenerateCircuit()
|
D | gate_meta_data.h | 207 … V(And, AND, GateFlags::NONE_FLAG, 0, 0, 2) \
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_atomics.h | 31 static JSTaggedValue And(EcmaRuntimeCallInfo *argv);
|
D | builtins_atomics.cpp | 54 JSTaggedValue BuiltinsAtomics::And(EcmaRuntimeCallInfo *argv) in And() function in panda::ecmascript::builtins::BuiltinsAtomics 58 BUILTINS_API_TRACE(thread, Atomics, And); in And()
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/ |
D | assembler_aarch64.h | 317 void And(const Register &rd, const Register &rn, const Operand &operand); 319 void And(const Register &rd, const Register &rn, const LogicalImmediate &imm);
|
D | assembler_aarch64.cpp | 686 void AssemblerAarch64::And(const Register &rd, const Register &rn, const LogicalImmediate &imm) in And() function in panda::ecmascript::aarch64::AssemblerAarch64 702 void AssemblerAarch64::And(const Register &rd, const Register &rn, const Operand &operand) in And() function in panda::ecmascript::aarch64::AssemblerAarch64
|
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/ |
D | asm_interpreter_call.cpp | 86 __ And(functionTypeRegister, bitFieldRegister.W(), LogicalImmediate::Create(0xFF, RegWSize)); in AsmInterpEntryDispatch() local 705 __ And(temp, temp, ret); in ResumeRspAndDispatch() local 711 __ And(temp.W(), temp.W(), LogicalImmediate::Create(0xFF, RegWSize)); in ResumeRspAndDispatch() local 731 __ And(temp.W(), temp.W(), in ResumeRspAndDispatch() local 1122 __ And(numVregs.W(), numVregs.W(), LogicalImmediate::Create( in GetNumVregsFromCallField() local 1131 __ And(declaredNumArgs.W(), declaredNumArgs.W(), LogicalImmediate::Create( in GetDeclaredNumArgsFromCallField() local
|
D | optimized_call.cpp | 215 __ And(expectedNumArgs, expectedNumArgs, in OptimizedCallAndPushUndefined() local 445 __ And(Register(X5).W(), Register(X5).W(), LogicalImmediate::Create(0xff, RegWSize)); in JSCallInternal() local 493 __ And(jstype2, bitfield.W(), LogicalImmediate::Create(0xff, RegWSize)); in JSCallInternal() local 543 __ And(taggedValue, jsfunc, taggedValue); in JSCallCheck() local 553 __ And(jstype, bitfield, LogicalImmediate::Create(0xFF, RegWSize)); in JSCallCheck() local
|
D | optimized_fast_call.cpp | 126 __ And(expectedNumArgs, expectedNumArgs, in OptimizedFastCallAndPushUndefined() local
|
/arkcompiler/runtime_core/docs/bc_verification/ |
D | types_n_values.md | 56 should be the same as of `T(...)`, i.e. `i16() <: i8()`. And that is obviously wrong, because of th…
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/x64/ |
D | assembler_x64.h | 123 void And(Register src, Register dst);
|
D | assembler_x64.cpp | 1063 void AssemblerX64::And(Register src, Register dst) in And() function in panda::ecmascript::x64::AssemblerX64
|
/arkcompiler/runtime_core/compiler/tests/ |
D | inst_generator.h | 167 {Opcode::And, integer_types_},
|
D | vn_test.cpp | 700 INST(6, Opcode::And).u64().Inputs(0, 1); in TEST_F() 707 INST(13, Opcode::And).u64().Inputs(1, 0); in TEST_F() 727 INST(6, Opcode::And).u64().Inputs(0, 1); in TEST_F()
|
D | ir_builder_test.cpp | 1729 INST(2, Opcode::And).s32().Inputs(0, 1); in TEST_F() 1755 INST(2, Opcode::And).s64().Inputs(0, 1); in TEST_F() 2322 TEST_F(IrBuilderTest, And) in TEST_F() argument 2339 INST(2, Opcode::And).s32().Inputs(0, 1); in TEST_F() 2622 INST(1, Opcode::And).s32().Inputs(0, 2); in TEST_F()
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/ |
D | assembler_x64_test.cpp | 396 __ And(rax, rdx); in HWTEST_F_L0() local
|
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/x64/ |
D | optimized_call.cpp | 522 __ And(jsFuncReg, rdx); in JSCallCheck() local 528 __ And(jsFuncReg, rdx); // IsSpecial in JSCallCheck() local
|