Searched refs:RawMachineLabel (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/compiler/ |
D | raw-machine-assembler.h | 30 class RawMachineLabel; variable 961 void Goto(RawMachineLabel* label); 962 void Branch(Node* condition, RawMachineLabel* true_val, 963 RawMachineLabel* false_val); 964 void Switch(Node* index, RawMachineLabel* default_label, 965 const int32_t* case_values, RawMachineLabel** case_labels, 976 void Bind(RawMachineLabel* label); 985 void Bind(RawMachineLabel* label, AssemblerDebugInfo info); 993 void Continuations(Node* call, RawMachineLabel* if_success, 994 RawMachineLabel* if_exception); [all …]
|
D | raw-machine-assembler.cc | 535 void RawMachineAssembler::Goto(RawMachineLabel* label) { in Goto() 542 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val, in Branch() 543 RawMachineLabel* false_val) { in Branch() 561 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations() 562 RawMachineLabel* if_exception) { in Continuations() 569 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label, in Switch() 571 RawMachineLabel** case_labels, in Switch() 786 BasicBlock* RawMachineAssembler::Use(RawMachineLabel* label) { in Use() 791 BasicBlock* RawMachineAssembler::EnsureBlock(RawMachineLabel* label) { in EnsureBlock() 798 void RawMachineAssembler::Bind(RawMachineLabel* label) { in Bind() [all …]
|
D | code-assembler.cc | 1215 RawMachineLabel** labels = zone()->NewArray<RawMachineLabel*>(case_count); in Switch() 1375 label_ = assembler->zone()->New<RawMachineLabel>( in CodeAssemblerLabel() 1376 type == kDeferred ? RawMachineLabel::kDeferred in CodeAssemblerLabel() 1377 : RawMachineLabel::kNonDeferred); in CodeAssemblerLabel() 1383 CodeAssemblerLabel::~CodeAssemblerLabel() { label_->~RawMachineLabel(); } in ~CodeAssemblerLabel()
|
D | code-assembler.h | 199 class RawMachineLabel; variable 1376 RawMachineLabel* label_;
|