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

  /external/v8/src/
lithium.cc 278 LLabel* LChunk::GetLabel(int block_id) const {
281 return LLabel::cast(instructions_[first_instruction]);
286 LLabel* cur = GetLabel(block_id);
294 LLabel* label = GetLabel(block_id);
309 LLabel* label = LLabel::cast(first_instr);
lithium-codegen.cc 69 emit_instructions = !LLabel::cast(instr)->HasReplacement() &&
114 if (instr->IsLabel()) dead_block = LLabel::cast(instr)->HasReplacement();
lithium.h 615 class LLabel;
641 LLabel* GetLabel(int block_id) const;
lithium-allocator.cc     [all...]
  /external/v8/src/arm/
lithium-arm.h 440 class LLabel FINAL : public LGap {
442 explicit LLabel(HBasicBlock* block)
456 LLabel* replacement() const { return replacement_; }
457 void set_replacement(LLabel* label) { replacement_ = label; }
462 LLabel* replacement_;
    [all...]
lithium-arm.cc 80 void LLabel::PrintDataTo(StringStream* stream) {
82 LLabel* rep = replacement();
653 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-arm.cc     [all...]
  /external/v8/src/arm64/
lithium-arm64.h 523 class LLabel FINAL : public LGap {
525 explicit LLabel(HBasicBlock* block)
539 LLabel* replacement() const { return replacement_; }
540 void set_replacement(LLabel* label) { replacement_ = label; }
545 LLabel* replacement_;
    [all...]
lithium-arm64.cc 43 void LLabel::PrintDataTo(StringStream* stream) {
45 LLabel* rep = replacement();
964 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-arm64.cc     [all...]
  /external/v8/src/ia32/
lithium-ia32.h 435 class LLabel FINAL : public LGap {
437 explicit LLabel(HBasicBlock* block)
451 LLabel* replacement() const { return replacement_; }
452 void set_replacement(LLabel* label) { replacement_ = label; }
457 LLabel* replacement_;
    [all...]
lithium-ia32.cc 99 void LLabel::PrintDataTo(StringStream* stream) {
101 LLabel* rep = replacement();
693 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-ia32.cc     [all...]
  /external/v8/src/mips/
lithium-mips.h 437 class LLabel FINAL : public LGap {
439 explicit LLabel(HBasicBlock* block)
453 LLabel* replacement() const { return replacement_; }
454 void set_replacement(LLabel* label) { replacement_ = label; }
459 LLabel* replacement_;
    [all...]
lithium-mips.cc 82 void LLabel::PrintDataTo(StringStream* stream) {
84 LLabel* rep = replacement();
660 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-mips.cc     [all...]
  /external/v8/src/mips64/
lithium-mips64.h 436 class LLabel FINAL : public LGap {
438 explicit LLabel(HBasicBlock* block)
452 LLabel* replacement() const { return replacement_; }
453 void set_replacement(LLabel* label) { replacement_ = label; }
458 LLabel* replacement_;
    [all...]
lithium-mips64.cc 82 void LLabel::PrintDataTo(StringStream* stream) {
84 LLabel* rep = replacement();
660 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-mips64.cc 974 static const char* LabelType(LLabel* label) {
981 void LCodeGen::DoLabel(LLabel* label)
    [all...]
  /external/v8/src/x64/
lithium-x64.h 445 class LLabel FINAL : public LGap {
447 explicit LLabel(HBasicBlock* block)
461 LLabel* replacement() const { return replacement_; }
462 void set_replacement(LLabel* label) { replacement_ = label; }
467 LLabel* replacement_;
    [all...]
lithium-x64.cc 83 void LLabel::PrintDataTo(StringStream* stream) {
85 LLabel* rep = replacement();
675 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-x64.cc 939 static const char* LabelType(LLabel* label) {
946 void LCodeGen::DoLabel(LLabel* label) {
    [all...]
  /external/v8/src/x87/
lithium-x87.h 453 class LLabel FINAL : public LGap {
455 explicit LLabel(HBasicBlock* block)
469 LLabel* replacement() const { return replacement_; }
470 void set_replacement(LLabel* label) { replacement_ = label; }
475 LLabel* replacement_;
    [all...]
lithium-x87.cc 110 void LLabel::PrintDataTo(StringStream* stream) {
112 LLabel* rep = replacement();
692 return new(zone()) LLabel(instr->block());
    [all...]
lithium-codegen-x87.cc     [all...]

Completed in 401 milliseconds