HomeSort by relevance Sort by last modified time
    Searched refs:ConstantValue (Results 1 - 25 of 26) sorted by null

1 2

  /art/runtime/verifier/
reg_type.h 126 return IsConstant() && (ConstantValue() >= 0) && (ConstantValue() <= 1);
172 virtual int32_t ConstantValue() const;
580 int32_t ConstantValue() const {
588 return IsPreciseConstant() && ConstantValue() == 0;
591 return IsPreciseConstant() && ConstantValue() == 1;
595 return IsConstant() && ConstantValue() >= 0 &&
596 ConstantValue() <= std::numeric_limits<jchar>::max();
600 ConstantValue() >= std::numeric_limits<jbyte>::min() &&
601 ConstantValue() <= std::numeric_limits<jbyte>::max()
    [all...]
reg_type.cc 49 int32_t RegType::ConstantValue() const {
51 LOG(FATAL) << "Unexpected call to ConstantValue: " << *this;
86 uint32_t val = ConstantValue();
464 uint32_t val = ConstantValue();
551 return cache->FromCat2ConstHi(ConstantValue(), false);
792 int32_t val1 = ConstantValue();
793 int32_t val2 = incoming_type.ConstantValue();
reg_type_cache.cc 510 (down_cast<ConstantType*>(cur_entry))->ConstantValue() == value) {
method_verifier.cc     [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 622 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg),
623 mir_graph_->ConstantValue(rl_src[1].orig_sreg));
651 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg), 0);
929 InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src[0]), opcode)) {
931 mir_graph_->ConstantValue(rl_src[0].orig_sreg));
933 InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src[1]), opcode)) {
935 mir_graph_->ConstantValue(rl_src[1].orig_sreg));
954 InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src[1]), opcode))
    [all...]
gen_loadstore.cc 89 DCHECK(!rl_src.ref || (mir_graph_->ConstantValue(rl_src) == 0));
90 LoadConstantNoClobber(r_dest, mir_graph_->ConstantValue(rl_src));
gen_invoke.cc     [all...]
codegen_util.cc 73 res = InexpensiveConstantFloat(mir_graph_->ConstantValue(rl_src));
75 res = InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src));
    [all...]
gen_common.cc 257 int32_t constant_value = mir_graph_->ConstantValue(rl_src2);
261 OpCmpImmBranch(cond, rl_src1.reg, mir_graph_->ConstantValue(rl_src2), taken);
    [all...]
  /art/compiler/dex/quick/arm/
int_arm.cc     [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc 800 if ((rl_src_pos.is_const && (mir_graph_->ConstantValue(rl_src_pos) < 0)) ||
801 (rl_dst_pos.is_const && (mir_graph_->ConstantValue(rl_dst_pos) < 0)) ||
802 (rl_length.is_const && (mir_graph_->ConstantValue(rl_length) < 0))) {
    [all...]
  /art/compiler/dex/
mir_graph.h 717 int32_t ConstantValue(RegLocation loc) const {
722 int32_t ConstantValue(int32_t s_reg) const {
736 return loc.ref && loc.is_const && (ConstantValue(loc) == 0);
    [all...]
mir_optimization.cc 488 if_true->dalvikInsn.vB = ConstantValue(if_true->ssa_rep->uses[0]);
489 if_false->dalvikInsn.vB = ConstantValue(if_false->ssa_rep->uses[0]);
    [all...]
mir_graph.cc     [all...]
  /external/clang/include/clang/Sema/
Overload.h 241 APValue &ConstantValue,
Initialization.h     [all...]
  /art/compiler/dex/quick/x86/
target_x86.cc     [all...]
int_x86.cc     [all...]
  /external/llvm/lib/IR/
Instructions.cpp 163 Value *ConstantValue = getIncomingValue(0);
165 if (getIncomingValue(i) != ConstantValue && getIncomingValue(i) != this) {
166 if (ConstantValue != this)
169 ConstantValue = getIncomingValue(i);
171 if (ConstantValue == this)
173 return ConstantValue;
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 307 /// \param ConstantValue If this is an NK_Constant_Narrowing conversion, the
314 APValue &ConstantValue,
348 ConstantValue = APValue(IntConstantValue);
368 if (Initializer->isCXX11ConstantExpr(Ctx, &ConstantValue)) {
370 assert(ConstantValue.isFloat());
371 llvm::APFloat FloatVal = ConstantValue.getFloat();
441 ConstantValue = APValue(InitializerValue);
    [all...]
SemaInit.cpp     [all...]
SemaChecking.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 

Completed in 464 milliseconds

1 2