OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LLabel
(Results
1 - 25
of
31
) sorted by null
1
2
/external/v8/src/crankshaft/
lithium.cc
268
LLabel
* LChunk::GetLabel(int block_id) const {
271
return
LLabel
::cast(instructions_[first_instruction]);
276
LLabel
* cur = GetLabel(block_id);
284
LLabel
* label = GetLabel(block_id);
299
LLabel
* label =
LLabel
::cast(first_instr);
lithium-codegen.cc
84
emit_instructions = !
LLabel
::cast(instr)->HasReplacement() &&
128
if (instr->IsLabel()) dead_block =
LLabel
::cast(instr)->HasReplacement();
lithium.h
627
class
LLabel
;
659
LLabel
* GetLabel(int block_id) const;
lithium-allocator.cc
[
all
...]
/external/v8/src/crankshaft/arm/
lithium-arm.h
425
class
LLabel
final : public LGap {
427
explicit
LLabel
(HBasicBlock* block)
439
LLabel
* replacement() const { return replacement_; }
440
void set_replacement(
LLabel
* label) { replacement_ = label; }
445
LLabel
* replacement_;
[
all
...]
lithium-arm.cc
82
void
LLabel
::PrintDataTo(StringStream* stream) {
84
LLabel
* rep = replacement();
602
return new(zone())
LLabel
(instr->block());
[
all
...]
lithium-codegen-arm.cc
915
static const char* LabelType(
LLabel
* label) {
922
void LCodeGen::DoLabel(
LLabel
* label) {
[
all
...]
/external/v8/src/crankshaft/arm64/
lithium-arm64.h
485
class
LLabel
final : public LGap {
487
explicit
LLabel
(HBasicBlock* block)
499
LLabel
* replacement() const { return replacement_; }
500
void set_replacement(
LLabel
* label) { replacement_ = label; }
505
LLabel
* replacement_;
[
all
...]
lithium-arm64.cc
45
void
LLabel
::PrintDataTo(StringStream* stream) {
47
LLabel
* rep = replacement();
898
return new(zone())
LLabel
(instr->block());
[
all
...]
lithium-codegen-arm64.cc
[
all
...]
/external/v8/src/crankshaft/ia32/
lithium-ia32.h
422
class
LLabel
final : public LGap {
424
explicit
LLabel
(HBasicBlock* block)
436
LLabel
* replacement() const { return replacement_; }
437
void set_replacement(
LLabel
* label) { replacement_ = label; }
442
LLabel
* replacement_;
[
all
...]
lithium-ia32.cc
101
void
LLabel
::PrintDataTo(StringStream* stream) {
103
LLabel
* rep = replacement();
634
return new(zone())
LLabel
(instr->block());
[
all
...]
lithium-codegen-ia32.cc
816
static const char* LabelType(
LLabel
* label) {
823
void LCodeGen::DoLabel(
LLabel
* label) {
[
all
...]
/external/v8/src/crankshaft/mips/
lithium-mips.h
423
class
LLabel
final : public LGap {
425
explicit
LLabel
(HBasicBlock* block)
437
LLabel
* replacement() const { return replacement_; }
438
void set_replacement(
LLabel
* label) { replacement_ = label; }
443
LLabel
* replacement_;
[
all
...]
lithium-mips.cc
84
void
LLabel
::PrintDataTo(StringStream* stream) {
86
LLabel
* rep = replacement();
609
return new(zone())
LLabel
(instr->block());
[
all
...]
/external/v8/src/crankshaft/mips64/
lithium-mips64.h
426
class
LLabel
final : public LGap {
428
explicit
LLabel
(HBasicBlock* block)
440
LLabel
* replacement() const { return replacement_; }
441
void set_replacement(
LLabel
* label) { replacement_ = label; }
446
LLabel
* replacement_;
[
all
...]
lithium-mips64.cc
84
void
LLabel
::PrintDataTo(StringStream* stream) {
86
LLabel
* rep = replacement();
609
return new(zone())
LLabel
(instr->block());
[
all
...]
/external/v8/src/crankshaft/ppc/
lithium-ppc.h
420
class
LLabel
final : public LGap {
422
explicit
LLabel
(HBasicBlock* block) : LGap(block), replacement_(NULL) {}
433
LLabel
* replacement() const { return replacement_; }
434
void set_replacement(
LLabel
* label) { replacement_ = label; }
439
LLabel
* replacement_;
[
all
...]
lithium-ppc.cc
80
void
LLabel
::PrintDataTo(StringStream* stream) {
82
LLabel
* rep = replacement();
614
return new (zone())
LLabel
(instr->block());
[
all
...]
/external/v8/src/crankshaft/s390/
lithium-s390.h
404
class
LLabel
final : public LGap {
406
explicit
LLabel
(HBasicBlock* block) : LGap(block), replacement_(NULL) {}
417
LLabel
* replacement() const { return replacement_; }
418
void set_replacement(
LLabel
* label) { replacement_ = label; }
423
LLabel
* replacement_;
[
all
...]
lithium-s390.cc
76
void
LLabel
::PrintDataTo(StringStream* stream) {
78
LLabel
* rep = replacement();
551
return new (zone())
LLabel
(instr->block());
[
all
...]
/external/v8/src/crankshaft/x64/
lithium-x64.h
431
class
LLabel
final : public LGap {
433
explicit
LLabel
(HBasicBlock* block)
445
LLabel
* replacement() const { return replacement_; }
446
void set_replacement(
LLabel
* label) { replacement_ = label; }
451
LLabel
* replacement_;
[
all
...]
lithium-x64.cc
86
void
LLabel
::PrintDataTo(StringStream* stream) {
88
LLabel
* rep = replacement();
627
return new(zone())
LLabel
(instr->block());
[
all
...]
/external/v8/src/crankshaft/x87/
lithium-x87.h
436
class
LLabel
final : public LGap {
438
explicit
LLabel
(HBasicBlock* block)
450
LLabel
* replacement() const { return replacement_; }
451
void set_replacement(
LLabel
* label) { replacement_ = label; }
456
LLabel
* replacement_;
[
all
...]
lithium-x87.cc
112
void
LLabel
::PrintDataTo(StringStream* stream) {
114
LLabel
* rep = replacement();
632
return new(zone())
LLabel
(instr->block());
[
all
...]
Completed in 327 milliseconds
1
2