Searched refs:RawMachineLabel (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/compiler/ |
D | raw-machine-assembler.cc | 91 void RawMachineAssembler::Goto(RawMachineLabel* label) { in Goto() 98 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val, in Branch() 99 RawMachineLabel* false_val) { in Branch() 108 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() 109 RawMachineLabel* if_exception) { in Continuations() 116 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label, in Switch() 118 RawMachineLabel** case_labels, in Switch() 443 BasicBlock* RawMachineAssembler::Use(RawMachineLabel* label) { in Use() 448 BasicBlock* RawMachineAssembler::EnsureBlock(RawMachineLabel* label) { in EnsureBlock() 455 void RawMachineAssembler::Bind(RawMachineLabel* label) { in Bind() [all …]
|
D | raw-machine-assembler.h | 23 class RawMachineLabel; variable 861 void Goto(RawMachineLabel* label); 862 void Branch(Node* condition, RawMachineLabel* true_val, 863 RawMachineLabel* false_val); 864 void Switch(Node* index, RawMachineLabel* default_label, 865 const int32_t* case_values, RawMachineLabel** case_labels, 876 void Bind(RawMachineLabel* label); 884 void Bind(RawMachineLabel* label, AssemblerDebugInfo info); 892 void Continuations(Node* call, RawMachineLabel* if_success, 893 RawMachineLabel* if_exception); [all …]
|
D | code-assembler.cc | 1442 RawMachineLabel** labels = in Switch() 1443 new (zone()->New(sizeof(RawMachineLabel*) * case_count)) in Switch() 1444 RawMachineLabel*[case_count]; in Switch() 1583 void* buffer = assembler->zone()->New(sizeof(RawMachineLabel)); in CodeAssemblerLabel() 1585 RawMachineLabel(type == kDeferred ? RawMachineLabel::kDeferred in CodeAssemblerLabel() 1586 : RawMachineLabel::kNonDeferred); in CodeAssemblerLabel() 1592 CodeAssemblerLabel::~CodeAssemblerLabel() { label_->~RawMachineLabel(); } in ~CodeAssemblerLabel()
|
D | code-assembler.h | 293 class RawMachineLabel; 1374 RawMachineLabel* label_;
|