| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cg_irbuilder.cpp | 29 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0) in BuildInsn() argument 32 return BuildInsn(opCode, tMd).AddOpndChain(o0); in BuildInsn() 34 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1) in BuildInsn() argument 37 return BuildInsn(opCode, tMd).AddOpndChain(o0).AddOpndChain(o1); in BuildInsn() 39 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2) in BuildInsn() argument 42 return BuildInsn(opCode, tMd).AddOpndChain(o0).AddOpndChain(o1).AddOpndChain(o2); in BuildInsn() 45 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3) in BuildInsn() argument 48 … return BuildInsn(opCode, tMd).AddOpndChain(o0).AddOpndChain(o1).AddOpndChain(o2).AddOpndChain(o3); in BuildInsn() 51 Insn &InsnBuilder::BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3, … in BuildInsn() argument 55 return nI.AddOpndChain(o0).AddOpndChain(o1).AddOpndChain(o2).AddOpndChain(o3).AddOpndChain(o4); in BuildInsn() [all …]
|
| D | cfi.cpp | 31 #define CFI_DEFINE(k, sub, n, o0, o1, o2) {".cfi_" #k, n, {Operand::kOpd##o0, Operand::kOpd##o1, Op… argument 32 #define ARM_DIRECTIVES_DEFINE(k, sub, n, o0, o1, o2) \ argument 33 {"." #k, n, {Operand::kOpd##o0, Operand::kOpd##o1, Operand::kOpd##o2}},
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
| D | cg_irbuilder.h | 38 Insn &BuildInsn(MOperator opCode, Operand &o0); 39 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1); 40 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2); 41 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3); 42 …Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3, Operand &o4); 43 …Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2, Operand &o3, Operand &o4,… 44 Insn &BuildInsn(MOperator opCode, Operand &o0, Operand &o1, Operand &o2,
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/ |
| D | aarch64_cgfunc.h | 132 void SelectAdd(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override; 133 Operand *SelectAdd(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override; 134 … Operand *SelectShift(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override; 135 Operand *SelectSub(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override; 136 void SelectSub(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override; 137 … Operand *SelectBand(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override; 138 void SelectBand(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override; 139 … Operand *SelectBior(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override; 140 void SelectBior(Operand &resOpnd, Operand &o0, Operand &o1, PrimType primType) override; 141 … Operand *SelectBxor(BinaryNode &node, Operand &o0, Operand &o1, const BaseNode &parent) override; [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_proepilog.cpp | 89 Operand &o0 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg0, GetPointerBitSize(), rty); in AppendInstructionPushPair() local 98 Insn &pushInsn = cgFunc.GetInsnBuilder()->BuildInsn(mOp, o0, o1, *o2); in AppendInstructionPushPair() 112 Operand &o0 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg, GetPointerBitSize(), rty); in AppendInstructionPushSingle() local 124 Insn &pushInsn = cgFunc.GetInsnBuilder()->BuildInsn(mOp, o0, *o1); in AppendInstructionPushSingle() 150 … RegOperand &o0 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg0, size * kBitsPerByte, rty); in AppendInstructionForAllocateOrDeallocateCallFrame() local 151 Insn &insn1 = cgFunc.GetInsnBuilder()->BuildInsn(mOp, o0, *o2); in AppendInstructionForAllocateOrDeallocateCallFrame() 166 … RegOperand &o0 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg0, size * kBitsPerByte, rty); in AppendInstructionForAllocateOrDeallocateCallFrame() local 167 … Insn &insn1 = cgFunc.GetInsnBuilder()->BuildInsn(isAllocate ? MOP_xstr : MOP_xldr, o0, *mo); in AppendInstructionForAllocateOrDeallocateCallFrame() 191 … Operand &o0 = aarchCGFunc.GetOrCreatePhysicalRegisterOperand(reg0, GetPointerBitSize(), rty); in CreateAndAppendInstructionForAllocateCallFrame() local 195 ? &cgFunc.GetInsnBuilder()->BuildInsn(mOp, o0, o1, *o2) in CreateAndAppendInstructionForAllocateCallFrame() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
| D | BUILD.gn | 36 "-O0", 43 "-O0",
|
| /arkcompiler/ets_runtime/common_components/ |
| D | BUILD.gn | 252 "-O0", 352 ldflags += [ "-Wl,--lto-O0" ] 431 ldflags += [ "-Wl,--lto-O0" ] 506 ldflags += [ "-Wl,--lto-O0" ]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/litecg/ |
| D | litecg.h | 50 // O0/O1/Ofastcompile
|
| /arkcompiler/ets_runtime/common_components/common/ |
| D | scoped_object_access.h | 58 // fail on O3 and pass on O0 if load mutator again, not figureout why yet in ~ScopedObjectAccess()
|
| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | Typeof.ets | 117 let o0 = new String("1") 126 assertEQ(typeof o0, "string")
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/openpandafile_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/literaldataaccessor_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/methoddataaccessor_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/checkheader_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/openfrommemory2arg_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/openfrommemory1arg_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/openuncompressedarchive_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/open_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/openpandafileorzip_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/tests/fuzztest/openpandafilefrommemory_fuzzer/ |
| D | BUILD.gn | 27 "-O0",
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/fuzztest/aniclasssetstaticfieldbynamechar_fuzzer/ |
| D | BUILD.gn | 28 cflags = ["-g","-O0","-Wno-unused-variable","-fno-omit-frame-pointer"]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/fuzztest/aniclassgetstaticfieldbynameint_fuzzer/ |
| D | BUILD.gn | 28 cflags = ["-g","-O0","-Wno-unused-variable","-fno-omit-frame-pointer"]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/fuzztest/aniobjsetfieldbynameboolean_fuzzer/ |
| D | BUILD.gn | 33 cflags = ["-g","-O0","-Wno-unused-variable","-fno-omit-frame-pointer"]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/fuzztest/aniclassfindindexablesetter_fuzzer/ |
| D | BUILD.gn | 33 cflags = ["-g","-O0","-Wno-unused-variable","-fno-omit-frame-pointer"]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/fuzztest/aniobjgetfieldbynameboolean_fuzzer/ |
| D | BUILD.gn | 33 cflags = ["-g","-O0","-Wno-unused-variable","-fno-omit-frame-pointer"]
|