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

  /external/v8/src/crankshaft/
lithium.cc 47 LUnallocated* unalloc = NULL;
53 unalloc = LUnallocated::cast(this);
55 if (unalloc->basic_policy() == LUnallocated::FIXED_SLOT) {
60 case LUnallocated::NONE:
62 case LUnallocated::FIXED_REGISTER: {
73 case LUnallocated::FIXED_DOUBLE_REGISTER: {
84 case LUnallocated::MUST_HAVE_REGISTER:
87 case LUnallocated::MUST_HAVE_DOUBLE_REGISTER:
90 case LUnallocated::WRITABLE_REGISTER:
93 case LUnallocated::SAME_AS_FIRST_INPUT
    [all...]
lithium.h 73 class LUnallocated : public LOperand {
105 explicit LUnallocated(ExtendedPolicy policy) : LOperand(UNALLOCATED, 0) {
111 LUnallocated(BasicPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
118 LUnallocated(ExtendedPolicy policy, int index) : LOperand(UNALLOCATED, 0) {
126 LUnallocated(ExtendedPolicy policy, Lifetime lifetime)
133 LUnallocated* CopyUnconstrained(Zone* zone) {
134 LUnallocated* result = new(zone) LUnallocated(ANY);
139 static LUnallocated* cast(LOperand* op) {
141 return reinterpret_cast<LUnallocated*>(op)
    [all...]
lithium-allocator.cc 38 LUnallocated* unalloc = LUnallocated::cast(operand_);
219 LUnallocated* unalloc = new(zone) LUnallocated(LUnallocated::NONE);
594 LOperand* LAllocator::AllocateFixed(LUnallocated* operand,
672 int index = LUnallocated::cast(operand)->virtual_register();
683 return LiveRangeFor(LUnallocated::cast(operand)->virtual_register());
709 LUnallocated* unalloc_operand = LUnallocated::cast(operand)
    [all...]
lithium-allocator.h 28 class LUnallocated;
355 if (next_virtual_register_ >= LUnallocated::kMaxVirtualRegisters) {
408 LOperand* AllocateFixed(LUnallocated* operand, int pos, bool is_tagged);
hydrogen.cc 153 if (LUnallocated::TooManyParameters(scope->num_parameters())) {
159 LUnallocated::TooManyParametersOrStackSlots(scope->num_parameters(),
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 30 LUnallocated::cast(Output())->HasFixedPolicy() ||
31 !LUnallocated::cast(Output())->HasRegisterPolicy());
33 LUnallocated* operand = LUnallocated::cast(it.Current());
38 LUnallocated* operand = LUnallocated::cast(it.Current());
381 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
382 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
386 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-arm.h     [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 32 LUnallocated::cast(Output())->HasFixedPolicy() ||
33 !LUnallocated::cast(Output())->HasRegisterPolicy());
35 LUnallocated* operand = LUnallocated::cast(it.Current());
40 LUnallocated* operand = LUnallocated::cast(it.Current());
388 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
389 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
393 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-mips.h     [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 32 LUnallocated::cast(Output())->HasFixedPolicy() ||
33 !LUnallocated::cast(Output())->HasRegisterPolicy());
35 LUnallocated* operand = LUnallocated::cast(it.Current());
40 LUnallocated* operand = LUnallocated::cast(it.Current());
388 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
389 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
393 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-mips64.h     [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 29 DCHECK(Output() == NULL || LUnallocated::cast(Output())->HasFixedPolicy() ||
30 !LUnallocated::cast(Output())->HasRegisterPolicy());
32 LUnallocated* operand = LUnallocated::cast(it.Current());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
394 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
395 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
399 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-ppc.h     [all...]
  /external/v8/src/crankshaft/s390/
lithium-s390.cc 29 DCHECK(Output() == NULL || LUnallocated::cast(Output())->HasFixedPolicy() ||
30 !LUnallocated::cast(Output())->HasRegisterPolicy());
32 LUnallocated* operand = LUnallocated::cast(it.Current());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
360 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
361 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
364 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-s390.h     [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 33 LUnallocated::cast(Output())->HasFixedPolicy() ||
34 !LUnallocated::cast(Output())->HasRegisterPolicy());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
41 LUnallocated* operand = LUnallocated::cast(it.Current());
410 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
411 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
415 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-ia32.h     [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 33 LUnallocated::cast(Output())->HasFixedPolicy() ||
34 !LUnallocated::cast(Output())->HasRegisterPolicy());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
41 LUnallocated* operand = LUnallocated::cast(it.Current());
408 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
409 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
413 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg)
    [all...]
lithium-x64.h     [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 33 LUnallocated::cast(Output())->HasFixedPolicy() ||
34 !LUnallocated::cast(Output())->HasRegisterPolicy());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
41 LUnallocated* operand = LUnallocated::cast(it.Current());
421 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
422 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
426 LUnallocated* LChunkBuilder::ToUnallocated(X87Register reg)
    [all...]
lithium-x87.h     [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 30 LUnallocated::cast(Output())->HasFixedPolicy() ||
31 !LUnallocated::cast(Output())->HasRegisterPolicy());
33 LUnallocated* operand = LUnallocated::cast(it.Current());
38 LUnallocated* operand = LUnallocated::cast(it.Current());
312 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
313 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
317 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg)
    [all...]
lithium-arm64.h     [all...]

Completed in 378 milliseconds