OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RawMachineLabel
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/compiler/
raw-machine-assembler.cc
73
void RawMachineAssembler::Goto(
RawMachineLabel
* label) {
80
void RawMachineAssembler::Branch(Node* condition,
RawMachineLabel
* true_val,
81
RawMachineLabel
* false_val) {
89
void RawMachineAssembler::Switch(Node* index,
RawMachineLabel
* default_label,
91
RawMachineLabel
** case_labels,
441
void RawMachineAssembler::Bind(
RawMachineLabel
* label) {
450
BasicBlock* RawMachineAssembler::Use(
RawMachineLabel
* label) {
456
BasicBlock* RawMachineAssembler::EnsureBlock(
RawMachineLabel
* label) {
499
RawMachineLabel
::~
RawMachineLabel
() { DCHECK(bound_ || !used_);
[
all
...]
raw-machine-assembler.h
22
class
RawMachineLabel
;
705
void Goto(
RawMachineLabel
* label);
706
void Branch(Node* condition,
RawMachineLabel
* true_val,
707
RawMachineLabel
* false_val);
708
void Switch(Node* index,
RawMachineLabel
* default_label, int32_t* case_values,
709
RawMachineLabel
** case_labels, size_t case_count);
713
void Bind(
RawMachineLabel
* label);
750
BasicBlock* Use(
RawMachineLabel
* label);
751
BasicBlock* EnsureBlock(
RawMachineLabel
* label);
773
class
RawMachineLabel
final
[
all
...]
Completed in 129 milliseconds