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

1 2 3

  /external/v8/src/crankshaft/
hydrogen-dehoist.cc 18 HConstant* constant;
23 constant = HConstant::cast(binary_operation->left());
26 constant = HConstant::cast(binary_operation->right());
hydrogen-instructions.cc 495 return IsConstant() && HConstant::cast(this)->HasInteger32Value();
500 return HConstant::cast(this)->Integer32Value();
1102 *block = HConstant::cast(value)->BooleanValue()
    [all...]
hydrogen-bce.cc 36 HConstant* constant = NULL;
42 constant = HConstant::cast(index->left());
45 constant = HConstant::cast(index->right());
52 constant = HConstant::cast(index->right());
57 constant = HConstant::cast(check->index());
228 // HConstant(offset) or index_base directly.
258 HConstant::cast(left_input)->Unlink();
259 HConstant::cast(left_input)->InsertBefore(index);
262 HConstant::cast(right_input)->Unlink();
263 HConstant::cast(right_input)->InsertBefore(index)
    [all...]
hydrogen.cc 824 HConstant* HGraph::GetConstant(SetOncePointer<HConstant>* pointer,
827 // Can't pass GetInvalidContext() to HConstant::New, because that will
829 HConstant* constant = HConstant::New(isolate(), zone(), NULL, value);
838 HConstant* HGraph::ReinsertConstantIfNecessary(HConstant* constant) {
848 HConstant* HGraph::GetConstant0() {
853 HConstant* HGraph::GetConstant1() {
858 HConstant* HGraph::GetConstantMinus1()
    [all...]
hydrogen.h 351 HConstant* GetConstantUndefined();
352 HConstant* GetConstant0();
353 HConstant* GetConstant1();
354 HConstant* GetConstantMinus1();
355 HConstant* GetConstantTrue();
356 HConstant* GetConstantFalse();
357 HConstant* GetConstantBool(bool value);
358 HConstant* GetConstantHole();
359 HConstant* GetConstantNull();
360 HConstant* GetConstantOptimizedOut()
    [all...]
hydrogen-representation-changes.cc 31 HConstant* constant = HConstant::cast(value);
34 Maybe<HConstant*> res = constant->CopyToTruncatedInt32(graph()->zone());
hydrogen-check-elimination.cc 512 HConstant* constant = HConstant::CreateAndInsertBefore(
532 HConstant* c_transition = HConstant::cast(instr->transition());
541 HConstant* c_value = HConstant::cast(instr->value());
hydrogen-instructions.h     [all...]
lithium.cc 344 LConstantOperand* LChunk::DefineConstantOperand(HConstant* constant) {
391 HConstant* LChunk::LookupConstant(LConstantOperand* operand) const {
392 return HConstant::cast(graph_->LookupValue(operand->index()));
hydrogen-gvn.cc 353 HConstant* target = HConstant::cast(store->object());
385 HConstant* target = HConstant::cast(load->object());
  /art/compiler/optimizing/
constant_folding.cc 93 HConstant* constant = inst->TryStaticEvaluation();
103 HConstant* constant = inst->TryStaticEvaluation();
116 HConstant* constant = inst->TryStaticEvaluation();
219 HConstant* input_cst = instruction->GetConstantRight();
231 HConstant* input_cst = instruction->GetConstantRight();
251 HConstant* input_cst = instruction->GetConstantRight();
268 HConstant* input_cst = instruction->GetConstantRight();
303 HConstant* cst_right = instruction->GetRight()->AsConstant();
nodes_x86.h 45 HConstant* constant)
58 HConstant* GetConstant() const {
nodes.h 530 HConstant* GetConstant(DataType::Type type, int64_t value, uint32_t dex_pc = kNoDexPc);
639 void InsertConstant(HConstant* instruction);
    [all...]
locations.cc 65 HConstant* constant = instruction->AsConstant();
76 HConstant* constant = instruction->AsConstant();
nodes_shared.h 100 HConstant* Evaluate(HIntConstant* x, HIntConstant* y) const OVERRIDE {
104 HConstant* Evaluate(HLongConstant* x, HLongConstant* y) const OVERRIDE {
108 HConstant* Evaluate(HFloatConstant* x ATTRIBUTE_UNUSED,
113 HConstant* Evaluate(HDoubleConstant* x ATTRIBUTE_UNUSED,
pc_relative_fixups_x86.cc 65 HConstant* value = ret->InputAt(0)->AsConstant();
104 HConstant* rhs = bin->InputAt(1)->AsConstant();
190 void ReplaceInput(HInstruction* insn, HConstant* value, int input_index, bool materialize) {
227 HConstant* input = inputs[i]->AsConstant();
graph_checker.h 60 void VisitConstant(HConstant* instruction) OVERRIDE;
locations.h 29 class HConstant;
105 static Location ConstantLocation(HConstant* constant) {
110 HConstant* GetConstant() const {
112 return reinterpret_cast<HConstant*>(value_ & ~kLocationConstantMask);
instruction_simplifier.cc 164 bool AreAllBitsSet(HConstant* constant) {
391 HConstant* mask = bin_op->GetConstantRight();
    [all...]
common_arm64.h 155 HConstant* instr = location.GetConstant();
237 inline bool Arm64CanEncodeConstantAsImmediate(HConstant* constant, HInstruction* instr) {
code_generator.h 487 static int8_t GetInt8ValueOf(HConstant* constant) {
492 static int16_t GetInt16ValueOf(HConstant* constant) {
497 static int32_t GetInt32ValueOf(HConstant* constant) {
508 static int64_t GetInt64ValueOf(HConstant* constant) {
    [all...]
  /external/v8/src/
code-stubs-hydrogen.cc 134 Add<HConstant>(param_count - register_param_count - 1);
162 stack_pop_count = Add<HConstant>(count);
347 elements, Add<HConstant>(isolate()->factory()->empty_fixed_array()));
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 460 return value->IsConstant() && HConstant::cast(value)->NotInNewSpace();
466 ? chunk_->DefineConstantOperand(HConstant::cast(value))
473 ? chunk_->DefineConstantOperand(HConstant::cast(value))
481 ? chunk_->DefineConstantOperand(HConstant::cast(value))
488 ? chunk_->DefineConstantOperand(HConstant::cast(value))
495 ? chunk_->DefineConstantOperand(HConstant::cast(value))
501 return chunk_->DefineConstantOperand(HConstant::cast(value));
507 ? chunk_->DefineConstantOperand(HConstant::cast(value))
666 HConstant* constant = HConstant::cast(right_value)
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 466 return value->IsConstant() && HConstant::cast(value)->NotInNewSpace();
472 ? chunk_->DefineConstantOperand(HConstant::cast(value))
479 ? chunk_->DefineConstantOperand(HConstant::cast(value))
487 ? chunk_->DefineConstantOperand(HConstant::cast(value))
494 ? chunk_->DefineConstantOperand(HConstant::cast(value))
501 ? chunk_->DefineConstantOperand(HConstant::cast(value))
507 return chunk_->DefineConstantOperand(HConstant::cast(value));
513 ? chunk_->DefineConstantOperand(HConstant::cast(value))
664 HConstant* constant = HConstant::cast(right_value)
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 449 ? chunk_->DefineConstantOperand(HConstant::cast(value))
467 ? chunk_->DefineConstantOperand(HConstant::cast(value))
474 ? chunk_->DefineConstantOperand(HConstant::cast(value))
481 ? chunk_->DefineConstantOperand(HConstant::cast(value))
488 ? chunk_->DefineConstantOperand(HConstant::cast(value))
494 return chunk_->DefineConstantOperand(HConstant::cast(value));
500 ? chunk_->DefineConstantOperand(HConstant::cast(value))
659 HConstant* constant = HConstant::cast(right_value);
    [all...]

Completed in 122 milliseconds

1 2 3