Home
last modified time | relevance | path

Searched refs:RawMachineLabel (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Draw-machine-assembler.cc535 void RawMachineAssembler::Goto(RawMachineLabel* label) { in Goto()
542 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val, in Branch()
543 RawMachineLabel* false_val) { in Branch()
559 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations()
560 RawMachineLabel* if_exception) { in Continuations()
567 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label, in Switch()
569 RawMachineLabel** case_labels, in Switch()
789 BasicBlock* RawMachineAssembler::Use(RawMachineLabel* label) { in Use()
794 BasicBlock* RawMachineAssembler::EnsureBlock(RawMachineLabel* label) { in EnsureBlock()
801 void RawMachineAssembler::Bind(RawMachineLabel* label) { in Bind()
[all …]
Draw-machine-assembler.h31 class RawMachineLabel; variable
1019 void Goto(RawMachineLabel* label);
1020 void Branch(Node* condition, RawMachineLabel* true_val,
1021 RawMachineLabel* false_val);
1022 void Switch(Node* index, RawMachineLabel* default_label,
1023 const int32_t* case_values, RawMachineLabel** case_labels,
1034 void Bind(RawMachineLabel* label);
1043 void Bind(RawMachineLabel* label, AssemblerDebugInfo info);
1051 void Continuations(Node* call, RawMachineLabel* if_success,
1052 RawMachineLabel* if_exception);
[all …]
Dcode-assembler.cc1333 RawMachineLabel** labels = zone()->NewArray<RawMachineLabel*>(case_count); in Switch()
1493 label_ = assembler->zone()->New<RawMachineLabel>( in CodeAssemblerLabel()
1494 type == kDeferred ? RawMachineLabel::kDeferred in CodeAssemblerLabel()
1495 : RawMachineLabel::kNonDeferred); in CodeAssemblerLabel()
1501 CodeAssemblerLabel::~CodeAssemblerLabel() { label_->~RawMachineLabel(); } in ~CodeAssemblerLabel()
Dcode-assembler.h195 class RawMachineLabel; variable
1525 RawMachineLabel* label_;