HomeSort by relevance Sort by last modified time
    Searched refs:HLongConstant (Results 1 - 6 of 6) sorted by null

  /art/compiler/optimizing/
builder.h 68 HLongConstant* GetLongConstant(int64_t constant);
builder.cc 503 HLongConstant* constant = GetLongConstant(value);
514 HLongConstant* constant = GetLongConstant(value);
521 HLongConstant* constant = GetLongConstant(instruction.VRegB_51l());
529 HLongConstant* constant = GetLongConstant(value);
789 HLongConstant* HGraphBuilder::GetLongConstant(int64_t constant) {
790 HLongConstant* instruction = new (arena_) HLongConstant(constant);
nodes.h 1114 class HLongConstant : public HConstant {
1116 explicit HLongConstant(int64_t value) : HConstant(Primitive::kPrimLong), value_(value) {}
1125 DISALLOW_COPY_AND_ASSIGN(HLongConstant);
    [all...]
code_generator_x86_64.cc 588 void LocationsBuilderX86_64::VisitLongConstant(HLongConstant* constant) {
594 void InstructionCodeGeneratorX86_64::VisitLongConstant(HLongConstant* constant) {
    [all...]
code_generator_arm.cc 731 void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
737 void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) {
    [all...]
code_generator_x86.cc 676 void LocationsBuilderX86::VisitLongConstant(HLongConstant* constant) {
682 void InstructionCodeGeneratorX86::VisitLongConstant(HLongConstant* constant) {
    [all...]

Completed in 934 milliseconds