Home
last modified time | relevance | path

Searched defs:cond (Results 1 - 23 of 23) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandabase/tests/
H A Dfutex_test.cpp201 bool cond = false; in TEST() local
249 bool cond = false; in TEST() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
H A Dmpl_logging.cpp71 void LogInfo::EmitErrorMessage(const std::string &cond, const std::string &file, unsigned int line, const char *fmt, in EmitErrorMessage() argument
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/
H A Dfmutex.h123 ATOMIC(int32_t) cond; member
H A Dfmutex.cpp334 void ConditionVariableInit(struct CondVar *const cond) in ConditionVariableInit() argument
341 void ConditionVariableDestroy(struct CondVar *const cond) in ConditionVariableDestroy() argument
380 void Wait(struct CondVar *const cond, struct fmutex *const m) in Wait() argument
426 TimedWait(struct CondVar *const cond, struct fmutex *const m, uint64_t ms, uint64_t ns, bool isAbsolute) TimedWait() argument
489 SignalCount(struct CondVar *const cond, int32_t toWake) SignalCount() argument
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
H A Dswitch_lowerer.cpp166 CondGotoNode *SwitchLowerer::BuildCondGotoNode(int32 idx, Opcode opCode, BaseNode &cond) in BuildCondGotoNode() argument
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
H A Dtype_info.h327 inline bool IsTestCc(Condition cond) in IsTestCc() argument
H A Dencode.cpp725 EncodeJump([[maybe_unused]] compiler::LabelHolder::LabelId id, [[maybe_unused]] compiler::Reg reg, [[maybe_unused]] compiler::Condition cond) EncodeJump() argument
/arkcompiler/runtime_core/static_core/runtime/
H A Dintrinsics.cpp221 void Assert(uint8_t cond) in Assert() argument
234 void AssertPrint(uint8_t cond, coretypes::String *s) in AssertPrint() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
H A Dinsn.h393 void MarkAsAccessRefField(bool cond) in MarkAsAccessRefField() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H A Dmir_builder.cpp423 IfStmtNode *MIRBuilder::CreateStmtIf(BaseNode *cond) in CreateStmtIf() argument
454 CondGotoNode *MIRBuilder::CreateStmtCondGoto(BaseNode *cond, Opcode op, LabelIdx labIdx) in CreateStmtCondGoto() argument
/arkcompiler/ets_frontend/ets2panda/util/
H A Darktsconfig.cpp45 static bool Check(bool cond, const Ts &...msgs) in Check() argument
/arkcompiler/runtime_core/libpandafile/
H A Dfile.cpp800 void File::ThrowIfWithCheck(bool cond, const std::string_view& msg, const std::string_view& tag) const in ThrowIfWithCheck() argument
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Darray_bounds_check_elimination.cpp641 GateRef ArrayBoundsCheckElimination::Predicate(GateRef left, TypedBinOp cond, GateRef right) in Predicate() argument
646 GateRef ArrayBoundsCheckElimination::PredicateCmpWithConst(GateRef left, TypedBinOp cond, int32_t right) in PredicateCmpWithConst() argument
652 GateRef ArrayBoundsCheckElimination::PredicateAdd(GateRef left, int32_t leftConst, TypedBinOp cond, GateRef right) in PredicateAdd() argument
763 void ArrayBoundsCheckElimination::ProcessIf(IntegerStack &pushed, GateRegion *parent, OpCode cond) in ProcessIf() argument
659 PredicateAddCmpWithConst(GateRef left, int32_t leftConst, TypedBinOp cond, int32_t right) PredicateAddCmpWithConst() argument
[all...]
H A Dtyped_bytecode_lowering.cpp1056 GateRef cond = builder_.Equal( in TryLowerTypedLdobjBynameFromGloablBuiltin() local
H A Dmcr_circuit_builder.cpp1119 GateRef CircuitBuilder::InsertRangeCheckPredicate(GateRef left, TypedBinOp cond, GateRef right) in InsertRangeCheckPredicate() argument
H A Dtyped_hcr_lowering.cpp574 TypedBinOp cond = accessor.GetTypedBinOp(); in LowerRangeCheckPredicate() local
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
H A Dassembler_aarch64.cpp897 void AssemblerAarch64::CMov(const Register &rd, const Register &rn, const Operand &operand, Condition cond) in CMov() argument
946 void AssemblerAarch64::B(Condition cond, Label *label) in B() argument
954 void AssemblerAarch64::B(Condition cond, int32_t imm) in B() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/litecg/
H A Dlmir_builder.h461 Expr cond; global() member in maple::litecg::LMIRBuilder::SwitchBuilder
466 Switch(Type *type, Expr cond, BB &defaultBB) Switch() argument
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
H A Dlmir_builder.cpp432 Stmt &LMIRBuilder::CondGoto(Expr cond, BB &target, bool inverseCond) in CondGoto() argument
439 Stmt &LMIRBuilder::CreateSwitchInternal(Type *type, Expr cond, BB &defaultBB, in CreateSwitchInternal() argument
672 Expr LMIRBuilder::ICmp(Type *type, Expr src1, Expr src2, IntCmpCondition cond) in ICmp() argument
739 Expr LMIRBuilder::FCmp(Type *type, Expr src1, Expr src2, FloatCmpCondition cond) in FCmp() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_peep.cpp1367 auto &cond = static_cast<CondOperand &>(insn1->GetOperand(kInsnSecondOpnd)); in Run() local
1558 CondOperand &cond = func->GetCondOperand(ccCode); in Run() local
2222 auto &cond = static_cast<CondOperand &>(csetInsn->GetOperand(kInsnSecondOpnd)); in Run() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_ir_builder.cpp1503 LLVMValueRef cond = GetLValue(cmp); in VisitBranch() local
1544 LLVMValueRef cond = GetLValue(input); in VisitSwitch() local
2271 LLVMIntPredicate LLVMIRBuilder::ConvertLLVMPredicateFromICMP(ICmpCondition cond) in ConvertLLVMPredicateFromICMP() argument
2301 LLVMRealPredicate LLVMIRBuilder::ConvertLLVMPredicateFromFCMP(FCmpCondition cond) in ConvertLLVMPredicateFromFCMP() argument
2337 auto cond = acc_.GetICmpCondition(gate); VisitCmp() local
2341 auto cond = acc_.GetFCmpCondition(gate); VisitCmp() local
2699 LLVMValueRef cond = GetLValue(cmp); HandleDeoptCheck() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
H A Dlitecg_ir_builder.cpp1118 auto cond = acc_.GetICmpCondition(gate); in VisitCmp() local
1123 auto cond = acc_.GetFCmpCondition(gate); in VisitCmp() local
1168 Expr cond = GetExprFromGate(cmp); VisitBranch() local
1176 Expr cond = GetExprFromGate(cmp); VisitBranch() local
2720 Expr cond = GetExprFromGate(input); VisitSwitch() local
2754 Expr cond = GetExprFromGate(cmp); HandleDeoptCheck() local
[all...]
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
H A Dllvm_ir_constructor.cpp2216 void LLVMIrConstructor::CreateIf(Inst *inst, llvm::Value *cond, bool likely, bool unlikely) in CreateIf() argument
3954 llvm::Value *cond = nullptr; in VisitIfImm() local
3984 auto cond = ctor->CreateCondition(ifi->GetCc(), x, y); in VisitIf() local

Completed in 56 milliseconds