HomeSort by relevance Sort by last modified time
    Searched refs:ConstantValue (Results 1 - 25 of 31) 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) {
  /external/chromium_org/mojo/public/tools/bindings/generators/
mojom_python_generator.py 196 elif isinstance(named_value, mojom.ConstantValue):
209 if isinstance(constant.value, (mojom.EnumValue, mojom.ConstantValue)):
254 if isinstance(field.default, (mojom.ConstantValue, mojom.EnumValue)):
mojom_cpp_generator.py 45 def ConstantValue(constant):
276 "constant_value": ConstantValue,
mojom_java_generator.py 267 def ConstantValue(context, constant):
377 'constant_value': ConstantValue,
  /art/compiler/dex/quick/
mir_to_lir.cc 632 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg),
633 mir_graph_->ConstantValue(rl_src[1].orig_sreg));
661 bool is_taken = EvaluateBranch(opcode, mir_graph_->ConstantValue(rl_src[0].orig_sreg), 0);
939 InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src[0]), opcode)) {
941 mir_graph_->ConstantValue(rl_src[0].orig_sreg));
943 InexpensiveConstantInt(mir_graph_->ConstantValue(rl_src[1]), opcode)) {
945 mir_graph_->ConstantValue(rl_src[1].orig_sreg));
    [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 261 int32_t constant_value = mir_graph_->ConstantValue(rl_src2);
265 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...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
data.py 321 value = mojom.ConstantValue(module, parent_kind, constant)
module.py 152 class ConstantValue(NamedValue):
  /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...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 369 milliseconds

1 2