Lines Matching refs:RawMachineAssembler

16 RawMachineAssembler::RawMachineAssembler(  in RawMachineAssembler()  function in v8::internal::compiler::RawMachineAssembler
45 Node* RawMachineAssembler::NullConstant() { in NullConstant()
49 Node* RawMachineAssembler::UndefinedConstant() { in UndefinedConstant()
53 Node* RawMachineAssembler::RelocatableIntPtrConstant(intptr_t value, in RelocatableIntPtrConstant()
60 Schedule* RawMachineAssembler::Export() { in Export()
80 Node* RawMachineAssembler::TargetParameter() { in TargetParameter()
85 Node* RawMachineAssembler::Parameter(size_t index) { in Parameter()
91 void RawMachineAssembler::Goto(RawMachineLabel* label) { in Goto()
98 void RawMachineAssembler::Branch(Node* condition, RawMachineLabel* true_val, in Branch()
108 void RawMachineAssembler::Continuations(Node* call, RawMachineLabel* if_success, in Continuations()
116 void RawMachineAssembler::Switch(Node* index, RawMachineLabel* default_label, in Switch()
142 void RawMachineAssembler::Return(Node* value) { in Return()
149 void RawMachineAssembler::Return(Node* v1, Node* v2) { in Return()
156 void RawMachineAssembler::Return(Node* v1, Node* v2, Node* v3) { in Return()
163 void RawMachineAssembler::Return(Node* v1, Node* v2, Node* v3, Node* v4) { in Return()
170 void RawMachineAssembler::Return(int count, Node* vs[]) { in Return()
181 void RawMachineAssembler::PopAndReturn(Node* pop, Node* value) { in PopAndReturn()
188 void RawMachineAssembler::PopAndReturn(Node* pop, Node* v1, Node* v2) { in PopAndReturn()
195 void RawMachineAssembler::PopAndReturn(Node* pop, Node* v1, Node* v2, in PopAndReturn()
203 void RawMachineAssembler::PopAndReturn(Node* pop, Node* v1, Node* v2, Node* v3, in PopAndReturn()
211 void RawMachineAssembler::DebugAbort(Node* message) { in DebugAbort()
215 void RawMachineAssembler::DebugBreak() { AddNode(machine()->DebugBreak()); } in DebugBreak()
217 void RawMachineAssembler::Unreachable() { in Unreachable()
223 void RawMachineAssembler::Comment(const char* msg) { in Comment()
227 Node* RawMachineAssembler::CallN(CallDescriptor* call_descriptor, in CallN()
235 Node* RawMachineAssembler::CallNWithFrameState(CallDescriptor* call_descriptor, in CallNWithFrameState()
244 Node* RawMachineAssembler::TailCallN(CallDescriptor* call_descriptor, in TailCallN()
255 Node* RawMachineAssembler::CallCFunction0(MachineType return_type, in CallCFunction0()
266 Node* RawMachineAssembler::CallCFunction1(MachineType return_type, in CallCFunction1()
278 Node* RawMachineAssembler::CallCFunction1WithCallerSavedRegisters( in CallCFunction1WithCallerSavedRegisters()
293 Node* RawMachineAssembler::CallCFunction2(MachineType return_type, in CallCFunction2()
307 Node* RawMachineAssembler::CallCFunction3(MachineType return_type, in CallCFunction3()
323 Node* RawMachineAssembler::CallCFunction3WithCallerSavedRegisters( in CallCFunction3WithCallerSavedRegisters()
341 Node* RawMachineAssembler::CallCFunction4( in CallCFunction4()
358 Node* RawMachineAssembler::CallCFunction5( in CallCFunction5()
377 Node* RawMachineAssembler::CallCFunction6( in CallCFunction6()
397 Node* RawMachineAssembler::CallCFunction8( in CallCFunction8()
419 Node* RawMachineAssembler::CallCFunction9( in CallCFunction9()
443 BasicBlock* RawMachineAssembler::Use(RawMachineLabel* label) { in Use()
448 BasicBlock* RawMachineAssembler::EnsureBlock(RawMachineLabel* label) { in EnsureBlock()
455 void RawMachineAssembler::Bind(RawMachineLabel* label) { in Bind()
464 void RawMachineAssembler::Bind(RawMachineLabel* label, in Bind()
477 void RawMachineAssembler::PrintCurrentBlock(std::ostream& os) { in PrintCurrentBlock()
481 bool RawMachineAssembler::InsideBlock() { return current_block_ != nullptr; } in InsideBlock()
483 void RawMachineAssembler::SetInitialDebugInformation( in SetInitialDebugInformation()
489 BasicBlock* RawMachineAssembler::CurrentBlock() { in CurrentBlock()
494 Node* RawMachineAssembler::Phi(MachineRepresentation rep, int input_count, in Phi()
503 void RawMachineAssembler::AppendPhiInput(Node* phi, Node* new_input) { in AppendPhiInput()
510 Node* RawMachineAssembler::AddNode(const Operator* op, int input_count, in AddNode()
519 Node* RawMachineAssembler::MakeNode(const Operator* op, int input_count, in MakeNode()