Home
last modified time | relevance | path

Searched defs:cond (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/runtime_core/libpandabase/
Dmacros.h172 #define ASSERT(cond) \ argument
178 #define ASSERT_DO(cond, func) \ argument
186 #define ASSERT_PRINT(cond, message) \ argument
194 #define ASSERT_RETURN(cond) assert(cond) argument
202 #define ASSERT(cond) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
203 #define ASSERT_DO(cond, func) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
204 #define ASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
205 #define ASSERT_RETURN(cond) static_cast<void>(cond) // NOLINT(cppcoreguidelines-macro-usage) argument
/arkcompiler/runtime_core/irtoc/lang/
Dcpp_function.rb26 def condition(cond) argument
/arkcompiler/ets_runtime/ecmascript/
Decma_macros.h154 #define DASSERT(cond) assert(cond) argument
156 #define DASSERT_PRINT(cond, message) \ argument
162 #define DASSERT(cond) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
163 #define DASSERT_PRINT(cond, message) static_cast<void>(0) // NOLINT(cppcoreguidelines-macro-usage) argument
167 #define RASSERT(cond) assert(cond) argument
169 #define RASSERT_PRINT(cond, message) \ argument
Dlog_wrapper.h30 #define LOG_ECMA_IF(cond, level) (cond) && ARK_LOG(level, Component::ALL) argument
/arkcompiler/runtime_core/libpandafile/
Dhelpers.h51 #define THROW_IF(cond, msg) \ argument
56 #define THROW_IF(cond, msg) \ argument
/arkcompiler/toolchain/tooling/test/utils/
Dtest_util.h226 #define ASSERT_TRUE(cond) \ argument
234 #define ASSERT_FALSE(cond) \ argument
/arkcompiler/runtime_core/runtime/tests/tooling/
Dtest_util.h237 #define ASSERT_TRUE(cond) \ argument
245 #define ASSERT_FALSE(cond) \ argument
/arkcompiler/runtime_core/libpandabase/utils/
Dlogger.h468 #define LOG_IF(cond, level, component) (cond) && LOG(level, component) argument
471 #define PLOG_IF(cond, level, component) (cond) && PLOG(level, component) argument
/arkcompiler/runtime_core/runtime/
Dintrinsics.cpp227 void Assert(uint8_t cond) in Assert()
240 void AssertPrint(uint8_t cond, coretypes::String *s) in AssertPrint()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_optimizer.cpp345 FCmpCondition cond, MachineType machineType) in RunFCompareArithmetic()
364 ICmpCondition cond, MachineType machineType) in RunICompareArithmetic()
388 uint64_t LatticeUpdateRuleSCCP::RunBoolCompare(bool valueA, bool valueB, ICmpCondition cond) in RunBoolCompare()
402 uint64_t LatticeUpdateRuleSCCP::RunFixedPointCompare(T valueA, T valueB, ICmpCondition cond) in RunFixedPointCompare()
433 uint64_t LatticeUpdateRuleSCCP::RunFloatingPointCompare(T valueA, T valueB, FCmpCondition cond) in RunFloatingPointCompare()
1107 ICmpCondition cond = acc_.GetICmpCondition(gate); in RunIcmp() local
1123 FCmpCondition cond = acc_.GetFCmpCondition(gate); in RunFcmp() local
Dllvm_ir_builder.cpp1151 LLVMValueRef cond = gate2LValue_[cmp]; in VisitBranch() local
1176 LLVMValueRef cond = gate2LValue_[input]; in VisitSwitch() local
1558 LLVMIntPredicate LLVMIRBuilder::ConvertLLVMPredicateFromICMP(ICmpCondition cond) in ConvertLLVMPredicateFromICMP()
1588 LLVMRealPredicate LLVMIRBuilder::ConvertLLVMPredicateFromFCMP(FCmpCondition cond) in ConvertLLVMPredicateFromFCMP()
1626 auto cond = acc_.GetICmpCondition(gate); in VisitCmp() local
1630 auto cond = acc_.GetFCmpCondition(gate); in VisitCmp() local
/arkcompiler/runtime_core/runtime/tests/
Dstack_walker_test.cpp37 #define HOOK_ASSERT(cond, action) \ argument
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dassembler_aarch64.cpp895 …emblerAarch64::CMov(const Register &rd, const Register &rn, const Operand &operand, Condition cond) in CMov()
944 void AssemblerAarch64::B(Condition cond, Label *label) in B()
952 void AssemblerAarch64::B(Condition cond, int32_t imm) in B()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Doperands.h886 static inline bool IsTestCc(Condition cond) in IsTestCc()
Dencode.h882 [[maybe_unused]] compiler::Condition cond) in EncodeJump()