Lines Matching refs:RawLiteral
465 void RegisterLiteralReference(RawLiteral* literal) { in Assembler()
508 void Place(RawLiteral* literal) { in Assembler()
632 void Adr(Condition cond, Register rd, RawLiteral* literal) { in Assembler()
655 void Adr(Register rd, RawLiteral* literal) { Adr(al, rd, literal); } in Assembler()
659 void Ldr(Condition cond, Register rt, RawLiteral* literal) { in Assembler()
682 void Ldr(Register rt, RawLiteral* literal) { Ldr(al, rt, literal); } in Assembler()
684 void Ldrb(Condition cond, Register rt, RawLiteral* literal) { in Assembler()
707 void Ldrb(Register rt, RawLiteral* literal) { Ldrb(al, rt, literal); } in Assembler()
709 void Ldrd(Condition cond, Register rt, Register rt2, RawLiteral* literal) { in Assembler()
733 void Ldrd(Register rt, Register rt2, RawLiteral* literal) { in Assembler()
737 void Ldrh(Condition cond, Register rt, RawLiteral* literal) { in Assembler()
760 void Ldrh(Register rt, RawLiteral* literal) { Ldrh(al, rt, literal); } in Assembler()
762 void Ldrsb(Condition cond, Register rt, RawLiteral* literal) { in Assembler()
785 void Ldrsb(Register rt, RawLiteral* literal) { Ldrsb(al, rt, literal); } in Assembler()
787 void Ldrsh(Condition cond, Register rt, RawLiteral* literal) { in Assembler()
810 void Ldrsh(Register rt, RawLiteral* literal) { Ldrsh(al, rt, literal); } in Assembler()
812 void Vldr(Condition cond, DataType dt, DRegister rd, RawLiteral* literal) { in Assembler()
835 void Vldr(DataType dt, DRegister rd, RawLiteral* literal) { in Assembler()
838 void Vldr(Condition cond, DRegister rd, RawLiteral* literal) { in Assembler()
841 void Vldr(DRegister rd, RawLiteral* literal) { in Assembler()
845 void Vldr(Condition cond, DataType dt, SRegister rd, RawLiteral* literal) { in Assembler()
868 void Vldr(DataType dt, SRegister rd, RawLiteral* literal) { in Assembler()
871 void Vldr(Condition cond, SRegister rd, RawLiteral* literal) { in Assembler()
874 void Vldr(SRegister rd, RawLiteral* literal) { in Assembler()
884 RawLiteral* literal = in Assembler()
885 new Literal<uint32_t>(v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
887 RawLiteral* literal = allocator_.New<Literal<uint32_t>>( in Assembler()
888 allocator_, v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
904 RawLiteral* literal = in Assembler()
905 new Literal<uint64_t>(v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
907 RawLiteral* literal = allocator_.New<Literal<uint64_t>>( in Assembler()
908 allocator_, v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
922 RawLiteral* literal = in Assembler()
923 new Literal<float>(v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
925 RawLiteral* literal = allocator_.New<Literal<float>>( in Assembler()
926 allocator_, v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
937 RawLiteral* literal = in Assembler()
938 new Literal<double>(v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()
940 RawLiteral* literal = allocator_.New<Literal<double>>( in Assembler()
941 allocator_, v, RawLiteral::kDeletedOnPlacementByPool); in Assembler()