Searched refs:RawMachineLabel (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/compiler/ |
D | raw-machine-assembler.cc | 73 void RawMachineAssembler::Goto(RawMachineLabel* label) { in Goto() 80 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val, in Branch() 81 RawMachineLabel* false_val) { in Branch() 88 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() 89 RawMachineLabel* if_exception) { in Continuations() 96 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label, in Switch() 98 RawMachineLabel** case_labels, in Switch() 529 void RawMachineAssembler::Bind(RawMachineLabel* label) { in Bind() 538 BasicBlock* RawMachineAssembler::Use(RawMachineLabel* label) { in Use() 544 BasicBlock* RawMachineAssembler::EnsureBlock(RawMachineLabel* label) { in EnsureBlock() [all …]
|
D | raw-machine-assembler.h | 23 class RawMachineLabel; variable 771 void Goto(RawMachineLabel* label); 772 void Branch(Node* condition, RawMachineLabel* true_val, 773 RawMachineLabel* false_val); 774 void Switch(Node* index, RawMachineLabel* default_label, 775 const int32_t* case_values, RawMachineLabel** case_labels, 783 void Bind(RawMachineLabel* label); 790 void Continuations(Node* call, RawMachineLabel* if_success, 791 RawMachineLabel* if_exception); 825 BasicBlock* Use(RawMachineLabel* label); [all …]
|
D | code-assembler.cc | 1012 RawMachineLabel** labels = in Switch() 1013 new (zone()->New(sizeof(RawMachineLabel*) * case_count)) in Switch() 1014 RawMachineLabel*[case_count]; in Switch() 1089 void* buffer = assembler->zone()->New(sizeof(RawMachineLabel)); in Label() 1091 RawMachineLabel(type == kDeferred ? RawMachineLabel::kDeferred in Label() 1092 : RawMachineLabel::kNonDeferred); in Label()
|
D | code-assembler.h | 35 class RawMachineLabel; variable 520 RawMachineLabel* label_;
|