Searched refs:HUnaryOperation (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | nodes_x86.h | 169 class HX86MaskOrResetLeastSetBit final : public HUnaryOperation { 173 : HUnaryOperation(kX86MaskOrResetLeastSetBit, result_type, input, dex_pc), in HUnaryOperation() function
|
D | constant_folding.cc | 37 void VisitUnaryOperation(HUnaryOperation* inst) override; 109 void HConstantFoldingVisitor::VisitUnaryOperation(HUnaryOperation* inst) { in VisitUnaryOperation()
|
D | nodes.h | 3813 class HUnaryOperation : public HExpression<1> { 3815 HUnaryOperation(InstructionKind kind, 5301 class HNeg final : public HUnaryOperation { 5304 : HUnaryOperation(kNeg, result_type, input, dex_pc) { 5648 class HAbs final : public HUnaryOperation { 5651 : HUnaryOperation(kAbs, result_type, input, dex_pc) {} 6063 class HNot final : public HUnaryOperation { 6066 : HUnaryOperation(kNot, result_type, input, dex_pc) { 6097 class HBooleanNot final : public HUnaryOperation { 6100 : HUnaryOperation(kBooleanNot, DataType::Type::kBool, input, dex_pc) {
|
D | nodes.cc | 1912 HConstant* HUnaryOperation::TryStaticEvaluation() const { in TryStaticEvaluation()
|